EOExecution Report

EOWorkflow dependency graph

Execution status

 ... Execution successfully finished
 ... Execution failed because of an error

EOTasks

Initialization parameters

LoadTask (LoadTask_0598e8)

DB2Vector (DB2Vector_50d8a2)

VectorToRaster (VectorToRaster_045e30)

Extent2Boundary (Extent2Boundary_b930a9)

Extent2Distance (Extent2Distance_600a8a)

SaveTask (SaveTask_d53e3c)

Source code of custom tasks

DB2Vector (fd.gsaa_to_eopatch)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class DB2Vector(EOTask):
    """
    Reads vectors to EOPatch from a local postgre db.
    """

    def __init__(self, database: str, user: str, password: str, host: str,
                 port: str, crs: pyproj.crs, vector_output_feature: Tuple):
        self.database = database
        self.user = user
        self.password = password
        self.host = host
        self.port = port
        self.crs = crs
        self.out_vector = next(self._parse_features(vector_output_feature)())

    def execute(self, eopatch: EOPatch) -> EOPatch:
        utm_crs = eopatch.bbox.crs.pyproj_crs()
        project = pyproj.Transformer.from_proj(utm_crs, self.crs)

        query_bbox = transform(project.transform, eopatch.bbox.geometry)

        spatial_query = 'select * from gsaa where ST_Intersects(ST_GeomFromText((%s), (%s)), geom);'
        parameters = (query_bbox.wkt, self.crs.to_epsg())

        with psycopg2.connect(database=self.database, user=self.user, password=self.password,
                              host=self.host, port=self.port) as con:
            df = gpd.GeoDataFrame.from_postgis(spatial_query, con, geom_col='geom', params=parameters)
            df.crs = "EPSG:4326"
            df = df.to_crs(utm_crs).rename(columns={'geom': 'geometry'}).set_geometry('geometry')
                       
        eopatch[self.out_vector] = df

        return eopatch

Extent2Boundary (fd.gsaa_to_eopatch)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
class Extent2Boundary(EOTask):
    """
    Adds boundary mask from extent mask using binary dilation
    """

    def __init__(self, extent_feature: Tuple[FeatureType, str],
                 boundary_feature: Tuple[FeatureType, str], structure: np.ndarray = None):
        self.extent_feature = next(self._parse_features(extent_feature)())
        self.boundary_feature = next(self._parse_features(boundary_feature)())
        self.structure = structure

    def execute(self, eopatch):
        extent_mask = eopatch[self.extent_feature].squeeze(axis=-1)
        boundary_mask = binary_dilation(extent_mask, selem=self.structure) - extent_mask
        eopatch[self.boundary_feature] = boundary_mask[..., np.newaxis]

        return eopatch

Extent2Distance (fd.gsaa_to_eopatch)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
class Extent2Distance(EOTask):
    """
    Adds boundary mask from extent mask using binary dilation
    """

    def __init__(self, extent_feature: Tuple[FeatureType, str],
                 distance_feature: Tuple[FeatureType, str], normalize: bool = True):
        self.extent_feature = next(self._parse_features(extent_feature)())
        self.distance_feature = next(self._parse_features(distance_feature)())
        self.normalize = normalize

    def execute(self, eopatch):
        extent_mask = eopatch[self.extent_feature].squeeze(axis=-1)

        distance = distance_transform_edt(extent_mask)

        if not self.normalize:
            eopatch[self.distance_feature] = distance[..., np.newaxis]

            return eopatch

        conn_comp = label(extent_mask, background=0)
        unique_comp = np.unique(conn_comp)
        normalised = np.zeros(distance.shape, dtype=np.float32)

        for uc in unique_comp:
            if uc != 0:
                conn_comp_mask = conn_comp == uc
                normalised[conn_comp_mask] += distance[conn_comp_mask] / np.max(distance[conn_comp_mask])

        eopatch[self.distance_feature] = normalised[..., np.newaxis]

        return eopatch

Execution details

Execution 1

Statistics
2022-05-12 22:21:52,329 eolearn.core.eoworkflow DEBUG    Computing LoadTask(*[], **{'eopatch_folder': '30PTU_3_2'})
2022-05-12 22:21:52,330 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:52,332 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,332 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:52,332 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,334 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:52,336 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:52,339 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,339 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,339 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,339 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,339 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,340 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,340 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:52,340 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,340 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,341 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_2/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:52,341 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:52,341 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,341 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,341 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:52,342 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:52,342 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:52,342 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,342 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,342 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:52,342 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_2%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222152Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:52,342 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222152Z
20220512/us-east-1/s3/aws4_request
d0d32b5c8e0c5f7c3153a6a540e5aad031e6dc36523003ab0e80649358729b0d
2022-05-12 22:21:52,343 botocore.auth DEBUG    Signature:
8ab75b3ab46e07b8c86c78c1bef5d7fc2f81c295fc798e75c24820b8ff9ffa90
2022-05-12 22:21:52,343 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:52,343 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:52,344 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:52,344 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:53,701 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:21:53,702 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'W6ETM5PZCE4QZ9GP', 'x-amz-id-2': 'Fr/1UUw/P4vH3Xwb/EoOV7lxJcyN75/Rf9JHu1ZlRxQnB5CEszorohRm3iq8bHZ2oAx5WBJFicM=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:21:53 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:53,702 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1W6ETM5PZCE4QZ9GPFr/1UUw/P4vH3Xwb/EoOV7lxJcyN75/Rf9JHu1ZlRxQnB5CEszorohRm3iq8bHZ2oAx5WBJFicM='
2022-05-12 22:21:53,705 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:53,705 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:53,705 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:53,705 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:53,706 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,706 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:53,709 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:53,709 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,709 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,709 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:53,709 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:53,709 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,709 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,709 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:53,709 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_2%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222153Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:53,709 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222153Z
20220512/eu-central-1/s3/aws4_request
c67c1e7315b90fbe05cab688fe439098a6572c8433be01f252b4fc69e30206ec
2022-05-12 22:21:53,709 botocore.auth DEBUG    Signature:
c1b73b739d193493730aa10155c00a3269f50491d0d9a8841f8f86c7ee65b800
2022-05-12 22:21:53,710 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:53,710 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:53,710 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:53,710 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:54,649 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,650 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'PXL0AAsNfQhUa86HJwZ9oITBqeCxoYpppufZgeOCFGVQuftZpxxMzenxKhDacUNEdbEBvRhy2NM=', 'x-amz-request-id': 'XNTVSQ5K9QK10TFE', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,650 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_2/1000/urlfalseeopatches/30PTU_3_2/2022-05-12T11:03:30.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/bbox.pkl2022-05-12T11:03:51.000Z"715ad8db43d5a50976146518fd73f725"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/timestamp.pkl2022-05-12T11:03:51.000Z"bddd5da052edd05b16c1bacc1598871b"1858e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/data/eopatches/30PTU_3_2/mask/'
2022-05-12 22:21:54,651 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,651 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,652 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,652 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:54,652 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,652 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,652 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,652 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,652 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,652 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,653 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,653 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,653 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,653 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,653 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,653 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_2/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,653 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,653 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,653 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,653 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,653 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,653 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,653 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,653 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,653 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_2%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,654 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
ea1982370d3be2e2cd073cae47b9ba09740a621c7691f7c86561a868c16ffeda
2022-05-12 22:21:54,654 botocore.auth DEBUG    Signature:
de537335414d28bfbd29fb31fb6e0a3d9bacacb0e8218407b2fc7a34a60f50b9
2022-05-12 22:21:54,654 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,654 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,654 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,742 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,743 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'M4gqkpOASF+mZRlGk2pitpupCekx+c1r6e4zNkHcxGywGVT+PbSvl2FEi4hbj3kUNXpplXTaLH8=', 'x-amz-request-id': 'XNTM1S6X8ZQG61JX', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,743 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_2/data/1000/urlfalseeopatches/30PTU_3_2/data/2022-05-12T11:03:42.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/data/BANDS.npy2022-05-12T11:03:53.000Z"61d4eede286663625942b98e3fc67c77-26"212960128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/data/CLP.npy2022-05-12T11:03:51.000Z"009b5033e14fa2b7791285fa77795c2f-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,746 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_2/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,747 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,747 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,747 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_2%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,747 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
185922fcc3389194bdde02925e2d62a1a9e68b3cea00883f71da8d46909475ea
2022-05-12 22:21:54,747 botocore.auth DEBUG    Signature:
a25fefffb2496d37bd915b3cb45e73f2f2c96d0d8ac23a2f225057fc1ed7455f
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,747 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,748 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,832 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,833 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'G1mVC1VHlg4tNCjAeXgw8uvGySDnubz4XA2Ik3BNAy/cB8bhDvm+nBx9rl81SrGFYjnzxpu5bRw=', 'x-amz-request-id': 'XNTZ71KFDZPN820G', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,833 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_2/mask/1000/urlfalseeopatches/30PTU_3_2/mask/2022-05-12T11:03:38.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/mask/CLM.npy2022-05-12T11:03:51.000Z"4eafd69fbebe0649c9ffa54a97d159cc-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/mask/IS_DATA.npy2022-05-12T11:03:51.000Z"30cacf5f1ee7603a53f0d2a527451479-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,833 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,833 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,833 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,834 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,835 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,837 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,837 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,837 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,840 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,838 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,840 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,840 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,838 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,842 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,842 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,843 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,844 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,848 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,846 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,847 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,843 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,848 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,845 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,854 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,850 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,852 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,854 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,854 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,844 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,856 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,857 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,859 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,863 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,864 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,861 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,861 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,862 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,860 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,860 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,866 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,864 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,865 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,866 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,868 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,870 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,871 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,872 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,872 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,872 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,872 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,872 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,872 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,872 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,872 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,872 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,873 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,873 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,873 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:54,873 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:54,873 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,873 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,873 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
cb503db04460d14364bd35dc4dbcad4b85ed1cd671a6902fa65ec19d3872394a
2022-05-12 22:21:54,873 botocore.auth DEBUG    Signature:
20b8a8cda830628e062505f6b785f050265d1ff34d5c8b6ea36963e333e11dac
2022-05-12 22:21:54,873 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,873 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,873 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,874 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,874 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,866 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,865 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,865 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,875 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,875 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/timestamp.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,877 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,877 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/timestamp.pkl
2022-05-12 22:21:54,877 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/timestamp.pkl
2022-05-12 22:21:54,877 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,877 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/timestamp.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,877 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
43390cf6105b30cb5b118132d0dfcb6a820dd49f67cdb9ac76dd19e55f0f45d5
2022-05-12 22:21:54,877 botocore.auth DEBUG    Signature:
9b08cb6280382e330c4750f1b3a7ef5c4a5f6149d40b2cdad17cfa62dd9405e3
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,877 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,879 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,880 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,880 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,880 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,880 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,880 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:54,880 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:54,880 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,880 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask/IS_DATA.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,880 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
1900b15a791e779c3d4f687fb760f4a95b99cd40425d329afb020059eecd64a1
2022-05-12 22:21:54,880 botocore.auth DEBUG    Signature:
26caf5ceb43b706069c448cb417ff4c183b6c0fbd89280c9ee1d4be02a6ef169
2022-05-12 22:21:54,880 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,880 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,880 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,881 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,881 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,875 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,881 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,884 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,884 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:54,884 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:54,884 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,884 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data/CLP.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,885 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
55fc81b44c7cc7ea7db5ede38a482f6c82ded16e97a4fc98b5eef573ffb611f1
2022-05-12 22:21:54,885 botocore.auth DEBUG    Signature:
ac8fd28b81db27bcca588729192c7b00b4608b6e02d72f1954f60fb0e0229496
2022-05-12 22:21:54,885 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,885 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,885 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,878 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,885 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,887 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,887 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,888 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/bbox.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,888 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,888 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/bbox.pkl
2022-05-12 22:21:54,888 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/bbox.pkl
2022-05-12 22:21:54,889 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,889 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/bbox.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,889 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
570842c8ced6ab6ed086987731a4d8e7c96f2192ee5c0e583312869dbc470739
2022-05-12 22:21:54,897 botocore.auth DEBUG    Signature:
590b276081109b653f4915b9baae722a21c380d9970db1576af24aed36d673f8
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,886 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,897 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,898 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,898 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,900 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,900 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,899 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,902 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,902 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,903 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,903 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:54,903 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:54,903 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,903 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask/CLM.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,903 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
98f9dba76c4c18f07c9718d9137d3b502a733e1abbda0e5fd2dc0e310a0b81b7
2022-05-12 22:21:54,903 botocore.auth DEBUG    Signature:
6dc3c8c46981726fe8fdc512a8f6c1388b8a7c5cdf24c7fd054b62434cea5fc2
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,904 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,904 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:55,621 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,621 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KB0W1KRCZ434K4', 'x-amz-id-2': 'P1XiWz1l2UftASlujygbO8cgFibEs+THP2eR9puvKPW+MgsLTCVQhvrp15xMQH0d7VzcfTQJgC4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,621 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,624 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,624 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,624 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,624 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,626 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,626 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,626 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,626 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,626 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,626 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,627 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,627 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,632 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data/CLP.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,632 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KAH9JC0BG9W4W0', 'x-amz-id-2': 'XH5KFgFIN66RpDJy7S6jkIN9hlb1fSCU1zszNQbbpJO+thm6gwZfGYuMvMq0+G3Ve/A7BalAUu0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,632 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,635 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,636 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,637 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,637 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,637 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,637 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,637 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,637 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,637 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,650 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask/CLM.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,651 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KCTAAQAHDN1NWX', 'x-amz-id-2': 'raHvKOn8qw0U3ULqvB3YDmMqpJB/b6DMQUHiRpPBFuB3vv76f2iebSr7jTJs/8aR8zFpJiZB4o8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,651 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,653 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,654 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/timestamp.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,654 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/bbox.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,654 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,656 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,654 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask/IS_DATA.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,655 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KBPPCJZF7Z87RT', 'x-amz-id-2': '+gQ+bNLpc+mzkwm4f7gnmBStyxU4gZJ9yeuVyuqDJ6wjM6O6OAViBxLKenamyIvAmEtHrbyVSiw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,657 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,655 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KESE5VZ3227FPR', 'x-amz-id-2': 't862k721VNyZGF7vNjYeaY47UIHmFCF261r8UyPqOTgP1RyzKEcikqcR6v6QDKPaqrAjM8lxjlA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,657 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K10CNSMFX62CSG', 'x-amz-id-2': 'KX1WHs6+BcqIereOfFxnnBwN+WvDd46rUCgkFX/jSBqVS/H6+fkvm9apgdKE7/uDkdptyRNeZKQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,660 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,661 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,661 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,661 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,661 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,661 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,661 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,661 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,661 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,662 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,662 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,661 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,662 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,662 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,662 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,662 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,663 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,663 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,663 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,663 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,663 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,663 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,663 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,663 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,664 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,664 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,660 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,666 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,667 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,667 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,660 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,667 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,669 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,669 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,670 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,662 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,670 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,670 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,670 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,670 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,671 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,671 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,671 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,671 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,671 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,672 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,672 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,673 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,673 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,674 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,674 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,674 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,674 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,675 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,675 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,675 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,675 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,676 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,676 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,676 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,676 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,676 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,676 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,676 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,677 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,677 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,677 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,677 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,677 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,676 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,677 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,677 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,677 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,677 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,677 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,678 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,678 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,678 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,678 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,678 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:56,601 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,601 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JW2V5V78VFEV8W', 'x-amz-id-2': 'my3TNQjFkJt0Lng6yYNTO5obSY5xclSmiPvqjKZf9RKhBWyS4mQQ9PDqVYHuos/pFjQfrdMe/v4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,601 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,602 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,602 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,602 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,602 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,602 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,602 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,603 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,603 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,603 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,603 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,603 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,603 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,603 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,603 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,604 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,604 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,604 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,604 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,604 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,604 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,604 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,605 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,605 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,632 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,633 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JG8RQN2MK9PFCZ', 'x-amz-id-2': 'LA3Dlfi5jl+JfzR8/+4COjgLRFu62RN/JPfIf62XuM2w8eVWNk+BWpINxieXKSpYJ4Tn9ubHhn8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,633 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,633 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,633 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,633 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,634 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,634 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,634 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,634 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,634 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,634 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,634 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,635 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,635 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,635 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,635 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,635 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,635 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,635 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,636 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,636 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,637 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,663 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,663 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,663 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JQ59RTTAA6T29M', 'x-amz-id-2': 'o5biTCg43UfM5+4AZAJwMkxuscHHP1NIYReWaHawpbb0ppI1/wNQLkLo6K1RXo5T4Cwrhdk6Q1E=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,664 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,664 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,664 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,664 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,664 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,665 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,665 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,665 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,665 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,665 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,665 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,666 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,666 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,666 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,666 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JRSQBN4FDPK30B', 'x-amz-id-2': 'kH1nzKg4ZZwnUbAsML4NfVgo9YJjYwjwrNo/gQrRl5snqo63EaYhoAWFvGu1ALRc1K2TaFZuiDM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,666 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,667 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,664 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,667 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JV6SS99D39W331', 'x-amz-id-2': 'Hthdaa7YSZEwDyMxxjgB+jf7ifhbLY0HrRd/zVaJcggsufYyB5bV7GeiRmLl+klu6nkQ0SGu+7s=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,667 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,668 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JP61PYFVSCEVM6', 'x-amz-id-2': '/naYOQp5dUSwelQfOaUBWRomo6chKQzzwt7MLhEcu+o22f5odNzEQZUWVSHu7QulE1LtmSBoil8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,668 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,668 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,668 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,669 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,669 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,669 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,669 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,670 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,670 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,670 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,670 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,670 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,670 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,670 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,670 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,670 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,670 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,671 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,671 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,671 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,671 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,671 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,671 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,671 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,671 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,671 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,671 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,671 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,671 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,672 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,672 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,673 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,674 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,673 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,674 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,674 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,674 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,674 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,674 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,674 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,674 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,674 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,675 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,675 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,675 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,675 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,675 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,674 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,675 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,675 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,676 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,676 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,676 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,676 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,676 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,676 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,673 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,677 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,677 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,677 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,677 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,677 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,677 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,677 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,677 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,677 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,575 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,575 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'E6lv1QJJwserhVWSXc4FdpK9CY62cs4QNEP23GADGai+MjWjW/sa1F5FYjDyzP0wtNGiSGdtU4E=', 'x-amz-request-id': '4P7QZSVV2NGFJMHM', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,576 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,576 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,576 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,576 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,576 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,576 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,577 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,577 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,577 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,577 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,577 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,577 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,577 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,577 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,577 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,577 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,578 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,578 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,578 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
dca049f44e32847fd1875c6870b0452583a79ea714f2092231b6362f542dd908
2022-05-12 22:21:57,578 botocore.auth DEBUG    Signature:
4f37ea2d75f62f338c10e11e6a476336c63c4c98c7e529b493be65ddd341f203
2022-05-12 22:21:57,578 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,578 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,579 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,579 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,600 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,600 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'k2f4tjn/qNBv3CDq6HogM4l2ynV6pHf9wU8ZJ9hRnbyyFISMICFYkwN9XNJlb+UPD4oOc8r+/os=', 'x-amz-request-id': '4P7MWN1WRK8KB9D5', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,600 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,600 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,601 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,601 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,601 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,601 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,601 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,602 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,602 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,602 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,602 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,602 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b2e1a4ab7dfaafabeaa2f676d7fbefd6aa91eac554b13c91b320721cd3d511bb
2022-05-12 22:21:57,602 botocore.auth DEBUG    Signature:
ce21453327ec0449e77a7f273be98dec02d985c3870d25d2091a2c06a463dc9d
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,602 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,603 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,614 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,614 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'VMdJP+RkJrldod/QRqThaqcOMlk5g+y83b2muMVHEHDC2vag/Q06XDuDi9+Y/4RClwKFRiBc+Qs=', 'x-amz-request-id': '4P7N1ED4BTQJ3X5K', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,614 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,614 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,614 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,614 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,614 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,615 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,615 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,615 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'OlIczvZfp0AzhnGsUrv2ayaH1gD3q8pnqdxmzCwEuJMDsKGzW3IkRvxGwcYYoirRkHmRxmqvijQ=', 'x-amz-request-id': '4P7TCHR3VAKSQQT5', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,615 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,617 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,617 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,618 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'nn1JNHawWGwjZGz1D9ofQRLqlc0dKMu7e4+USFWtsBtpcwpZFX/zVJkG7RuRhJj4cRNNOIwOvTc=', 'x-amz-request-id': '4P7KCYX150H191GB', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,618 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,618 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,618 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,618 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,618 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,619 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,615 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,619 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,619 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,619 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,620 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,620 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,620 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
44552c343db411c635a2bbc08cd8314690564b349db72eb5deefba70a239527a
2022-05-12 22:21:57,620 botocore.auth DEBUG    Signature:
ab71f3292816088c26f86ab15ee6920d44184b45bfea771273d3b0d320cfa18f
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,620 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,620 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,621 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,619 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,621 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,622 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,622 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,622 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/bbox.pkl
2022-05-12 22:21:57,624 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,625 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
e4d68fb739aa21899b3efc3da06f97e6b5810d10f97af2ed291d4e0a9d5640e6
2022-05-12 22:21:57,625 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,625 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+7JtIq+zkVtzjJrMilKkLQALVM1buI0uei8/KPPse1PO12kfrr0i/t5ZVuJxkdU59SXIDHY23/0=', 'x-amz-request-id': '4P7GKGMKV8AHGS4R', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,626 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,625 botocore.auth DEBUG    Signature:
0fc9af1363ad26c6d8a486569a7a74038b87791fbe85adae96dffab58708ba5b
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,626 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,626 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,627 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,627 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/timestamp.pkl
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,627 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/bbox.pkl
2022-05-12 22:21:57,627 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,627 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/bbox.pkl
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,628 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,628 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,628 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,628 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b8eb224a287fbcc54a4f199cbd80cff982d3e05039500f803be60a5c969b615c
2022-05-12 22:21:57,628 botocore.auth DEBUG    Signature:
6c1a35ad1852d9d1e5565fcedc7168dd7a63d398f26a5e3a5812e0f859206b62
2022-05-12 22:21:57,628 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,628 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,628 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,629 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,628 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,627 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,629 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,629 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,629 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,630 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/timestamp.pkl
2022-05-12 22:21:57,630 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/timestamp.pkl
2022-05-12 22:21:57,630 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,630 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,630 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
7672ccc1aa0f67bfd90a777de8fab0c40c60caa80a16f0bc3a183674915fe56f
2022-05-12 22:21:57,630 botocore.auth DEBUG    Signature:
e33a8e0a9751cf6778aee3d1037171e906d3ef8931aeca929aec587bb73b5144
2022-05-12 22:21:57,630 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,631 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,631 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,631 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,662 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,662 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'pM5bKBmxmn5Ks0eZHvPd57kLrYbPgQKjcT2lLOaNdKzJbKMRjkkH/GFZeGZzFHl3+UzOnuYrZHA=', 'x-amz-request-id': '4P7RBVQ2FBQZ63ZC', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '212960128'}
2022-05-12 22:21:57,662 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,663 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,663 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,663 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,663 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,664 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,664 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,664 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,664 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,664 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,665 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,665 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,665 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,665 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,665 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,665 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,665 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,666 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,666 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,666 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,666 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,666 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,666 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,666 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,666 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,666 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,666 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,666 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,667 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) about to wait for the following futures []
2022-05-12 22:21:57,667 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,667 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) done waiting for dependent futures
2022-05-12 22:21:57,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,668 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,668 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=25165824-33554431'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,668 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) about to wait for the following futures []
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,668 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,669 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) done waiting for dependent futures
2022-05-12 22:21:57,669 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,669 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,669 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=33554432-41943039'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 33554432, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,669 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) about to wait for the following futures []
2022-05-12 22:21:57,669 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,670 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,670 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) done waiting for dependent futures
2022-05-12 22:21:57,670 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,671 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,671 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=41943040-50331647'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 41943040, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,671 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) about to wait for the following futures []
2022-05-12 22:21:57,671 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,671 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,671 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,671 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,671 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,671 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,671 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,671 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) done waiting for dependent futures
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,672 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,672 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=50331648-58720255'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 50331648, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,672 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) about to wait for the following futures []
2022-05-12 22:21:57,672 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,673 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,673 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) done waiting for dependent futures
2022-05-12 22:21:57,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,673 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,674 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=58720256-67108863'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 58720256, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,675 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) about to wait for the following futures []
2022-05-12 22:21:57,675 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,676 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,675 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,676 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) done waiting for dependent futures
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,677 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) about to wait for the following futures []
2022-05-12 22:21:57,677 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,677 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,677 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-33554431', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,678 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=67108864-75497471'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 67108864, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,678 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,678 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,678 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,678 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) done waiting for dependent futures
2022-05-12 22:21:57,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,678 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,678 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,679 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=75497472-83886079'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 75497472, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,679 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,680 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,680 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=33554432-41943039', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,680 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,680 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
aff455f35e28bb975f888e2fd0b46bbae1fe9d6225c2c904e19d0baa19435a6b
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,680 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,681 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,681 botocore.auth DEBUG    Signature:
5635e95155777545761a2a38220f511dc5b296dea4e75aa162b04afb6d72a3e5
2022-05-12 22:21:57,681 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
892b82fa3a8ad4efd89bc4c6e5ac438014f2196fc0c1944c2a7dd7c0acb23f95
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.auth DEBUG    Signature:
2cfc6d061f162e77ea116f5561ca3ebfaf7555c4e9a9cfc4e0167b842838a19a
2022-05-12 22:21:57,682 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=41943040-50331647', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,683 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=50331648-58720255', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,683 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,683 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,685 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,684 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
ebf21f08083a1801ab99dc825c6bc93c71637f88c6cff237eead389d532d3141
2022-05-12 22:21:57,685 botocore.auth DEBUG    Signature:
5b8719c3a2910cef9bcc48a664c9a2ee5da6c499685e1d4ec579110bc1e5cdaf
2022-05-12 22:21:57,685 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,685 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,685 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,684 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,687 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=58720256-67108863', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,686 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,683 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,687 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-33554431
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,687 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,686 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,687 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=75497472-83886079', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,688 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,688 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b888d0c29292371c12f3603890e90e229c6d581c85e3bf6989236a4ad3a32a45
2022-05-12 22:21:57,689 botocore.auth DEBUG    Signature:
cef813426a7516600367fcb4e3581a2c189e2c421af4a4df02ea2ffaf6af70ce
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,689 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,688 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,689 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,688 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=67108864-75497471', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,688 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,690 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,690 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,690 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,690 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,692 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=33554432-41943039
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,691 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,692 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,690 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask/CLM.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,690 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,693 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,692 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
6bafd3b54eb8521d490d90842d91ab9d5be2f078a297ec5b11f0f12a132227d2
2022-05-12 22:21:57,691 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,692 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,692 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,692 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,693 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'xowls5XI0YV+DploZ0m54+h/eK/hxA+ol96xD+bJy/MOD8MF/IqkKFfYavyxuyh1HUpKYKRYl1A=', 'x-amz-request-id': '4P7VF7QQPP0FC0FW', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"4eafd69fbebe0649c9ffa54a97d159cc-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,694 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,692 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=41943040-50331647
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,693 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=50331648-58720255
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,694 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,694 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,695 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,693 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,695 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,696 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,695 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,695 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,696 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,694 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
ab51a5b97d424671d6f4908731efb2eab5965aef6b476cd42b1ae22d3c126940
2022-05-12 22:21:57,694 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
5935817e0a0f64726f0f7d8602f889476cb67d2418d9b83c36c0c86fa25afc3e
2022-05-12 22:21:57,696 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,696 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,696 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,696 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,696 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,696 botocore.auth DEBUG    Signature:
bd993307a66b63fc488221fd0da7991a98e1d75e94748993f71814b35d945e0d
2022-05-12 22:21:57,696 botocore.auth DEBUG    Signature:
b52881b7ef53bc26b8079fc15f8595a7a67d4fd59c04362d695be3437832b518
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:21:57,697 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,693 botocore.auth DEBUG    Signature:
c81f2a8e490aa6ce8033602ed062476f6efd4694f0626d5cf584e7c2df99cdb7
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,698 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,696 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,698 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,698 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,697 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=58720256-67108863
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,699 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
8fb11ff853de3e5b115da57efa0d9c0ef5abd98d0ed2bd5c40e0abcc5733d2ac
2022-05-12 22:21:57,699 botocore.auth DEBUG    Signature:
03a9c682e5071eb9b45217bee4b6758938667c493a56249897b7ce0b91ce6e30
2022-05-12 22:21:57,698 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,699 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,699 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,698 urllib3.connectionpool DEBUG    Starting new HTTPS connection (5): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,700 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,700 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,697 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=67108864-75497471
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,700 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
cd812478c7d2cdc7df17d7444850a57d531e8ab956a622fb0f5f0147ead9450e
2022-05-12 22:21:57,700 botocore.auth DEBUG    Signature:
0370dd9845220ea8e539e7e3ca0996d250aa488b9d767f58e1abb52adb42c193
2022-05-12 22:21:57,701 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,700 urllib3.connectionpool DEBUG    Starting new HTTPS connection (6): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,699 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,701 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,702 urllib3.connectionpool DEBUG    Starting new HTTPS connection (7): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,701 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,702 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,702 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,702 urllib3.connectionpool DEBUG    Starting new HTTPS connection (8): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,698 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=75497472-83886079
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,703 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
c5fe8fb557fcaa6a309b1496e68348fae7cd16bf362fc917da8d9c5d301ae9f4
2022-05-12 22:21:57,703 botocore.auth DEBUG    Signature:
4f708d5f80f207cf86c33f08fd783c33a111a1b9d195b3a49327e61c135318a4
2022-05-12 22:21:57,703 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,703 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,703 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,703 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,703 urllib3.connectionpool DEBUG    Starting new HTTPS connection (9): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,699 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,704 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,704 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,704 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,704 urllib3.connectionpool DEBUG    Starting new HTTPS connection (10): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,704 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,701 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,705 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,706 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,706 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,706 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,706 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask/IS_DATA.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,706 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2iHxu9tIzvIckvcywYMuIGnA0vv6zR5piiN41t0iDjw6fg1dtXw2ws7WjnR4DGgCtPqW3Q/HRiQ=', 'x-amz-request-id': '4P7X9R7KYXXYVCGX', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,707 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,707 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,707 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,707 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,707 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,707 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,708 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,708 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,708 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,709 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,708 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/bbox.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,709 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,709 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,708 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,709 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'auq4LRwa30OUQyXtSCUtCjsXaFcVczf0igR5WzXj2y/3lzMuB1LOlBQsqhSz14NlBoGQLFSWtts=', 'x-amz-request-id': '4P7RWYK7W8XJH4E2', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"715ad8db43d5a50976146518fd73f725"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,710 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,710 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,710 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,711 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,710 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,711 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,711 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,712 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,712 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/bbox.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,711 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,709 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,715 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,715 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,715 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/bbox.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,715 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=25>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,710 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=25>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,715 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data/CLP.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,722 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'O3rTgDDxYWH2VpPK7yCt0+jv0NoEGYmhsiWFnbdXEnPZekmbFacb+A4WJjwvvxznzeISkdLcGmU=', 'x-amz-request-id': '4P7T696JBHFV8356', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"009b5033e14fa2b7791285fa77795c2f-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,722 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,723 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,723 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,717 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/timestamp.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,724 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '8uzm8tVB3XlCr70rOW6VLkfZaX0eL0/xxr72nfSHZ2OHxK4K6fBHg2KSl5Z1tpCOE0UVjsGOolQ=', 'x-amz-request-id': '4P7V8QME61X51B3X', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"bddd5da052edd05b16c1bacc1598871b"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1858'}
2022-05-12 22:21:57,724 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,718 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/bbox.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,726 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/bbox.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/bbox.pkl', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,717 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,715 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,725 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,727 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,727 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,722 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,727 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,725 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,728 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,718 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=25>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,730 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,731 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,731 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,723 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,725 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,727 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/timestamp.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,730 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,735 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/timestamp.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,735 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,740 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,734 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,740 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,738 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,740 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=25>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,733 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,739 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/timestamp.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,745 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/timestamp.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/timestamp.pkl', 'fileobj': <_io.BufferedRandom name=27>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,743 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,742 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,746 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,746 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,747 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,747 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,747 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
4db88ac2a13b0262a7c5d1ce740912fc976d35a6bf81bd4637f6e142c927a972
2022-05-12 22:21:57,748 botocore.auth DEBUG    Signature:
f57afdd44a7238d0604a8c55e5723ac909e4f20b99238bc6a77fe98e74f8f552
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,749 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,743 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,751 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,754 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,745 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,754 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/timestamp.pkl
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,758 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
73277a791562066a08e5f21f2ec0a7f8036d6c10eca9cd37677ebdf068cc0bc6
2022-05-12 22:21:57,758 botocore.auth DEBUG    Signature:
65e88593a083f723e116ce2f45f53a8c24950d9d5ca929867667b0ba3ecca9e7
2022-05-12 22:21:57,754 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,759 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,759 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
e420e4743e79f5ce3134d37de85bb5abb835c78b94336444ca546caaa7f135ad
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,759 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,757 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,761 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,761 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/bbox.pkl
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/bbox.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,751 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,764 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,748 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,763 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,765 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,765 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,761 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,763 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,761 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,766 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,766 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,766 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
094bf8a046eccfa9cfb9985a81aaee9b7b3d8ab5c4f2980d8fc6ea2afff035d1
2022-05-12 22:21:57,766 botocore.auth DEBUG    Signature:
cb504b49348bc46d786b5ff2a4d68ab8d691ed70d6069eeace4d7d90ec8c82ab
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,765 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask/IS_DATA.npy
2022-05-12 22:21:57,767 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,767 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,767 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
1d3c59bf53a44c7dd8ada82a042b7181154347eb3ef56028782e19f0ebf21749
2022-05-12 22:21:57,767 botocore.auth DEBUG    Signature:
0eaea2555c9ebfb51da9c358844ee7ad4215db941304c350779de02315e29ad9
2022-05-12 22:21:57,765 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,759 botocore.auth DEBUG    Signature:
ee6ce40922c5d7372a8c77d5e41e1d32bc710e70e23147c844f9e198c003709c
2022-05-12 22:21:57,766 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,768 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,759 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/timestamp.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,759 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=23>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,771 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,771 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,771 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,771 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
43d7a8213e8ce9142bf7a6511572ee016df6bffb7a76144f33b7a97ee99c9223
2022-05-12 22:21:57,771 botocore.auth DEBUG    Signature:
8abb85f4a9d2f57493cce61d0eb277b7adf7aec969146e9e8b288755025bb797
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,772 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,773 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=23>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,764 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=23>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,765 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,774 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,775 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
5a19d60a99f2f7c6f4abe21f9879ffb66537749364a39162f14d3107d70ecfc6
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,775 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,774 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/bbox.pkl
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/timestamp.pkl
2022-05-12 22:21:57,775 botocore.auth DEBUG    Signature:
e82a33799feb18275d1e14afb583302780a4e6973d25e6ac6ce3004023477a27
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,766 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=23>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/timestamp.pkl
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,775 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,779 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,779 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,779 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
bd3a042ad6e1ab162f7f464e7731559a5d01afb16eb31e7898180751fe82b7a8
2022-05-12 22:21:57,779 botocore.auth DEBUG    Signature:
f627a122d3ae24a660f48045f0cffe32ad647afe1aac38e1503f83165be18e2c
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,778 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,780 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/bbox.pkl
2022-05-12 22:21:57,780 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,783 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,780 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,783 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,783 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,783 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask/CLM.npy
2022-05-12 22:21:57,783 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,784 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,784 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
1fca00042f4a7b183ce25e19f8fd9c2d126f8b81feb3beb44db233f79958b365
2022-05-12 22:21:57,782 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,784 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,784 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
12843cfc4cdf5e50e6afd33a1c7212eb9daa68674a7bef2e1d17b0797d9e311e
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,784 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,784 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
3ec92f6efa7523d43b4e686d32c662c958002434e945b5f359e722e320a2941e
2022-05-12 22:21:57,779 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,781 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,784 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,785 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,785 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,785 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
f4cb34950a6c5f5017288462fec31836c9c0ae0bcb54db3638792b465428683f
2022-05-12 22:21:57,785 botocore.auth DEBUG    Signature:
4f0a6b411302d5a5f4f8401cf056d7e8aa598e343012dac49a7d88e6113a2e6b
2022-05-12 22:21:57,784 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,785 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.auth DEBUG    Signature:
f81f4f8d860e972381adf4702395b5df05a35e6b1f79a2a8f8232d3c8ac776ee
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,786 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,784 botocore.auth DEBUG    Signature:
fa6ede672ec0a8e61351388afa53feaf8b5dda69c045b97e09284dd3634d4687
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,784 botocore.auth DEBUG    Signature:
d43a0edc04a6461e930271d149dd9aa897578bd04d9f235f079d2ee1e815211b
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,788 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,788 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,788 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,785 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,788 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,790 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,789 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,791 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,791 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,791 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,791 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,791 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
05f2aa533da47b07862b455e51bbcb9cac55fe38f8097bcf4452839e408bf325
2022-05-12 22:21:57,791 botocore.auth DEBUG    Signature:
85e37764f8498973b3e34defd5cbc7c2670f45d50922b487008e2e3bd665143d
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,791 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,792 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,792 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,793 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,793 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/CLP.npy
2022-05-12 22:21:57,793 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,793 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,793 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
28df77b4af060469142a00af38057b255298df14c6a958c2ffd84d407a15cd3f
2022-05-12 22:21:57,793 botocore.auth DEBUG    Signature:
90a44751d74d2c4faa264de5bced49dc85d463f6919eb4a12d1b05e074da14bc
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,794 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,794 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,859 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,860 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'E9KhtpU7wMVKPxsqvEndy68SMjTf4KVxMnwbysV/SHGO6Ymt5GTJtw3MgsXlGrNK45lR7L/ySJA=', 'x-amz-request-id': '4P7YBVW2Y2ZTFAG1', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,860 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,861 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,861 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,861 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,891 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/timestamp.pkl HTTP/1.1" 200 1858
2022-05-12 22:21:57,891 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '5zcH3PkM10UhWTw0VXhs6SRfC3GCBZxrju754spH/cXtO0Evr0FiLjKO2H/Tor/LVGAgFBKuC/s=', 'x-amz-request-id': '4P7NPDBTD6EY4ZEH', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"bddd5da052edd05b16c1bacc1598871b"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1858'}
2022-05-12 22:21:57,891 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,892 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,892 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,893 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,894 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 0}
2022-05-12 22:21:57,894 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,894 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,894 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,894 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,917 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/bbox.pkl HTTP/1.1" 200 184
2022-05-12 22:21:57,918 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jWsjnBS7xawVjYBDszpOBDxGw5sR02y3t8T6768sx8LTLk8JW+tmRNogHVTtLSxxx3Cz9oCUJz8=', 'x-amz-request-id': '4P7RZX94ZV86NP36', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"715ad8db43d5a50976146518fd73f725"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,918 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,919 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,919 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,919 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,919 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 0}
2022-05-12 22:21:57,919 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,919 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,919 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,926 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,926 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'J4Y5Aw7LZnSsHTBARZnVuY4g+QX6eUs/Do2yiV76bqPH2O7gOBWzEey5a81P8Sk2d/dvfT/WRPY=', 'x-amz-request-id': '4P7Y04P8HKHAWP76', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,926 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,927 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,927 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,927 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,952 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,953 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'GyWOPaI2Hkprv5zBJIhTwK7XwJhf7sfd3PJ8gDw9gGPq6l8CM7YNrZx4eDNEfLu7rS7KqRMaySE=', 'x-amz-request-id': '4P7YS7BAE7B8R48Z', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"4eafd69fbebe0649c9ffa54a97d159cc-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,953 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,953 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,953 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,953 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,966 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,967 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'u0WLxHu9VcYy1hKesugEURruq0xUDnaiEs8P3/+FpKXNhVgsTizhamJTrdppWpY4Dj1MlYPtq94=', 'x-amz-request-id': '4P7ZWMK09KCMPT8Q', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"009b5033e14fa2b7791285fa77795c2f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,967 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,967 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,967 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,967 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:59,260 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:21:59,260 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:59,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:59,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:59,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 0}
2022-05-12 22:21:59,260 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:59,973 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:21:59,973 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:59,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:21:59,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:21:59,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 8388608}
2022-05-12 22:21:59,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:00,752 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:00,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:00,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:00,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:00,753 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 262144}
2022-05-12 22:22:00,753 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:01,527 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:01,527 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:01,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:01,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:01,528 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 16777216}
2022-05-12 22:22:01,528 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:04,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:04,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:04,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:04,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:04,954 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 0}
2022-05-12 22:22:04,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:05,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:05,150 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:05,150 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:05,150 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:05,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:05,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:05,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:05,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:05,150 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 8650752}
2022-05-12 22:22:05,150 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 524288}
2022-05-12 22:22:05,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:05,151 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:06,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:06,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:06,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:06,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:06,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 17039360}
2022-05-12 22:22:06,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,013 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:08,013 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:08,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:08,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:08,014 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 786432}
2022-05-12 22:22:08,014 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,767 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,767 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'pv/ewwAkCWHAMRxpFI5Zfjh/QTqhoT/qqC8CvyU6hFDIK9KYAMnJxMWf+Aa+EoDlv/a+1XvLqI8=', 'x-amz-request-id': '8ZJNMA7YZD2X0716', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 75497472-83886079/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,768 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,769 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,769 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,769 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,861 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,862 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1H5MzBdk/b77kVsPS+o6j7qUXNSFzuOJJCk15Q/XbGkpYY35UTEOpVzsOXl8C77MHx+R0B05X4w=', 'x-amz-request-id': '8ZJRCYATMCNWSJ6X', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 33554432-41943039/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,862 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,863 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,863 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,863 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,930 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,931 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'OsQcSo0mUAOIAazMp6kuYE3UAZOTM3qvOvgRkfHeVe6lGdm++2fQjHzLlPqymJp9VCTMt/e/cvo=', 'x-amz-request-id': '8ZJQAKSQ15JNW9QB', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,931 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,931 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,931 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,931 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,971 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/mask/IS_DATA.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:08,972 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jiiLqAGMPrOueRfop14vjti0RDOPWmUg6EYpPRrIdKZ715wckO57rAFS3F4cktgxAi54wlD4qaU=', 'x-amz-request-id': '8ZJKPXYR5SHR53JP', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:08,972 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,973 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,973 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,973 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,045 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,045 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'dIxi0WPUtPEg6BLzbaFIQYwc3WP4gGgByMT4K6tV5c1J1/bKu9umoN5kzbyyrv/ntVLN2wA7Amc=', 'x-amz-request-id': '8ZJGJQC1ZP5RS2RM', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"4eafd69fbebe0649c9ffa54a97d159cc-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,045 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,046 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,046 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,046 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,082 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,082 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'mMt09SE63DBKYwB6zeyB/M/7yDe8fc51sNtUiO6/52up+EicjS+y6I7o1UyN0Lwr09lqFX0VH78=', 'x-amz-request-id': '8ZJNZMBY2VF72QX5', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 50331648-58720255/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,082 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,083 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,083 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,083 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,115 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,115 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '3pXUDjRhaa4ocrrUbH1qbbyElGHH1KC/6120QOb1rdF5HjdzgfKVsEWf4n3+tthtHefgUzGw0XQ=', 'x-amz-request-id': '8ZJHH5JKCWW68G8J', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,115 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,116 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,116 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,116 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,146 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,146 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'WfVdUXdP5Ki3KqsMYB/OAUkTwlxDrEe12D78wwUNMaZl2GaIHrZJuzkxI6H74DHiDlGVYthryqM=', 'x-amz-request-id': 'MCASZA98ZFWXS1JX', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,146 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,147 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,147 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,147 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,188 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/mask/CLM.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:09,188 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'AhS1jQ5UgMrI80DSEpinQp/ka6wfU1l7OjxOsz1MNxw2vQPsP51siO9+fTsxDr2AeaAWow/QDsk=', 'x-amz-request-id': 'MCAYX3ZMRCF2MAKZ', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"4eafd69fbebe0649c9ffa54a97d159cc-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:09,188 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,188 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,188 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,189 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,216 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,216 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2YPCS+khFnMABQ/044s6bPfkvqoyoQ8aKiCRM4LLHvxxdS9gGsvqRUJYLsBZL50VN3P7d3SzPqA=', 'x-amz-request-id': 'MCAKATW80Z0QWBYN', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,216 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,217 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,217 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,217 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,244 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,245 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'y9IOn8PMX3K7czLMTf+6JBOBDJGMRMAEoQ2QjX7T7UEigJC7ADWEY3tpASN6WbTHdhAt35wYa0A=', 'x-amz-request-id': 'MCAZBJ1VKF8JPJRZ', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 41943040-50331647/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,245 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,246 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,246 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,247 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,286 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,287 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'RpB0KcMzGiyNT23pv4EJS2PA32bC0hHtBMCt2bzkI0Z3rf47GbcryoDjYDMdhsXjqK16b29tcLs=', 'x-amz-request-id': 'MCAK33Y0EDZ9273M', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 58720256-67108863/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,287 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,287 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,287 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,287 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,298 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,299 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hojIk8gT0uUpqmsj4SwLFDxeoEGyvznK0oiUIYmArVcUK+Ixk1R9iVcphoxRY5p98KS+7wXVpqw=', 'x-amz-request-id': 'MCAGNSNS5D22VY45', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 67108864-75497471/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,299 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,299 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,299 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,299 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,329 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,329 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '9NVimFECFaCWULvi88kVsNrXJXVIYegPXtSf8Q8G/qF+OoEaV9DAxbPd2FVwphL3oVrMBxE0NqM=', 'x-amz-request-id': 'MCAHYKJJSMSYN9H3', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"009b5033e14fa2b7791285fa77795c2f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,329 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,330 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,330 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,330 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,342 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,343 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2hyuuyNRyWOQXUZFYkE0FISZ7JU7d2MWFE34jQqzlZqt839w+qlukkdmlEDtTrImjv7kadAN+oo=', 'x-amz-request-id': 'MCAGM3BZGYEZYXKG', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-33554431/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,343 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,343 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,343 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,343 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,490 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/CLP.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:09,490 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'YF3c84lAns8BZ+q44Ij9Cz/CgApblLQF51hjHuDcnGkkIfIhB6+W+r4axaIEuXoYdFVoGfFSyuw=', 'x-amz-request-id': 'MCAZCH93AGRMC65F', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"009b5033e14fa2b7791285fa77795c2f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:09,491 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,491 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,491 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,491 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,887 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,888 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UlU3+R9rZxTDMgC59M6ZlQeIYfO76Sp708TS9pJ6TiL63EpVAPZ38cHmOmQfhXnq/GbRHtxhrmA=', 'x-amz-request-id': 'MCAWYXE4CFKXFTBB', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"4eafd69fbebe0649c9ffa54a97d159cc-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,888 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,888 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,888 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,888 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,902 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,902 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'isGtJQIPXMJ0nOTzBDtznVIXiYrxl06ZsfWrfKGluO5hUgCG1pBIMXjf//4OlfT2iqurbc+nt5Y=', 'x-amz-request-id': 'MCAXQQ4FX0BT7JY7', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:51 GMT', 'ETag': '"009b5033e14fa2b7791285fa77795c2f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,902 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,903 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,903 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,903 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:13,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:13,242 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:13,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:13,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:13,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 262144}
2022-05-12 22:22:13,243 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:17,066 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:17,067 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:17,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:17,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:17,067 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 17301504}
2022-05-12 22:22:17,067 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:19,839 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:19,839 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:19,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:19,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:19,841 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 25165824}
2022-05-12 22:22:19,841 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:20,007 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:20,007 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:20,008 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:20,008 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:20,008 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 8912896}
2022-05-12 22:22:20,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:20,896 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:20,897 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:20,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:20,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:20,897 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 16777216}
2022-05-12 22:22:20,898 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:20,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:20,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:20,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:20,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:20,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 25165824}
2022-05-12 22:22:20,983 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:21,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:22:21,295 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:21,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:22:21,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:22:21,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 1048576}
2022-05-12 22:22:21,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:21,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:21,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:21,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:21,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:21,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 25165824}
2022-05-12 22:22:21,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,211 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:23,212 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:23,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:23,212 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 25165824}
2022-05-12 22:22:23,213 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,800 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:23,800 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:23,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:23,801 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 16777216}
2022-05-12 22:22:23,801 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,279 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:24,280 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:24,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:24,280 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 8388608}
2022-05-12 22:22:24,281 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,599 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:24,599 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:24,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:24,600 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 16777216}
2022-05-12 22:22:24,600 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,996 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:24,996 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:24,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:24,997 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 0}
2022-05-12 22:22:24,997 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,674 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67108864}) to executor  for transfer request: 0.
2022-05-12 22:22:27,675 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) about to wait for the following futures []
2022-05-12 22:22:27,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) done waiting for dependent futures
2022-05-12 22:22:27,675 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67108864}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 67108864}
2022-05-12 22:22:27,676 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:28,961 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:22:28,961 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:28,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:22:28,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:22:28,962 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 17563648}
2022-05-12 22:22:28,962 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:29,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58720256}) to executor  for transfer request: 0.
2022-05-12 22:22:29,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:29,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) about to wait for the following futures []
2022-05-12 22:22:29,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) done waiting for dependent futures
2022-05-12 22:22:29,569 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58720256}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 58720256}
2022-05-12 22:22:29,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:30,811 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:30,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:30,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:30,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:30,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 8388608}
2022-05-12 22:22:30,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:31,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:31,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:31,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:31,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:31,496 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 25427968}
2022-05-12 22:22:31,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:32,174 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:32,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:32,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:32,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:32,175 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 25427968}
2022-05-12 22:22:32,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:32,984 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:32,984 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:32,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:32,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:32,985 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 8388608}
2022-05-12 22:22:32,985 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:33,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41943040}) to executor  for transfer request: 0.
2022-05-12 22:22:33,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:33,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) about to wait for the following futures []
2022-05-12 22:22:33,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) done waiting for dependent futures
2022-05-12 22:22:33,069 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41943040}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 41943040}
2022-05-12 22:22:33,070 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50331648}) to executor  for transfer request: 0.
2022-05-12 22:22:34,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) about to wait for the following futures []
2022-05-12 22:22:34,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) done waiting for dependent futures
2022-05-12 22:22:34,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50331648}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 50331648}
2022-05-12 22:22:34,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:35,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:35,147 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:35,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:35,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:35,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 25427968}
2022-05-12 22:22:35,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:35,237 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:35,237 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:35,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:35,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:35,238 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 17039360}
2022-05-12 22:22:35,238 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:37,225 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:37,225 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:37,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:37,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:37,225 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 8650752}
2022-05-12 22:22:37,226 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:37,846 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:37,846 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:37,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:37,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:37,847 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 25427968}
2022-05-12 22:22:37,848 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:39,189 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:39,190 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:39,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:39,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:39,190 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 17039360}
2022-05-12 22:22:39,191 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:40,736 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:40,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:40,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:40,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:40,737 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 524288}
2022-05-12 22:22:40,737 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:41,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:22:41,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:41,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:22:41,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:22:41,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 9175040}
2022-05-12 22:22:41,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:41,655 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:22:41,655 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:41,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:22:41,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:22:41,656 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 1310720}
2022-05-12 22:22:41,656 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:41,896 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:41,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:41,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:41,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:41,896 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 262144}
2022-05-12 22:22:41,896 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:43,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:43,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:43,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:43,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:43,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 17039360}
2022-05-12 22:22:43,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:45,500 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:22:45,501 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:45,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:22:45,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:22:45,501 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 17825792}
2022-05-12 22:22:45,502 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:45,878 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:22:45,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:45,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:22:45,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:22:45,879 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 25690112}
2022-05-12 22:22:45,880 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:46,728 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:46,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:46,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:46,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:46,729 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 17301504}
2022-05-12 22:22:46,730 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,033 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:22:47,033 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:22:47,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:22:47,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 25690112}
2022-05-12 22:22:47,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,845 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:47,846 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:47,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:47,846 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 8650752}
2022-05-12 22:22:47,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:48,311 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:48,312 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:48,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:48,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:48,312 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 8912896}
2022-05-12 22:22:48,313 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58982400}) to executor  for transfer request: 0.
2022-05-12 22:22:49,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) about to wait for the following futures []
2022-05-12 22:22:49,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) done waiting for dependent futures
2022-05-12 22:22:49,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58982400}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 58982400}
2022-05-12 22:22:49,334 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,503 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33554432}) to executor  for transfer request: 0.
2022-05-12 22:22:49,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) about to wait for the following futures []
2022-05-12 22:22:49,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) done waiting for dependent futures
2022-05-12 22:22:49,504 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33554432}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 33554432}
2022-05-12 22:22:49,504 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,759 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42205184}) to executor  for transfer request: 0.
2022-05-12 22:22:49,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) about to wait for the following futures []
2022-05-12 22:22:49,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) done waiting for dependent futures
2022-05-12 22:22:49,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42205184}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 42205184}
2022-05-12 22:22:49,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:50,272 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:22:50,272 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:50,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:22:50,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:22:50,272 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 25690112}
2022-05-12 22:22:50,272 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:50,287 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:50,287 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:50,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:50,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:50,288 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 8650752}
2022-05-12 22:22:50,288 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:51,539 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50593792}) to executor  for transfer request: 0.
2022-05-12 22:22:51,539 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:51,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) about to wait for the following futures []
2022-05-12 22:22:51,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) done waiting for dependent futures
2022-05-12 22:22:51,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50593792}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 50593792}
2022-05-12 22:22:51,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,479 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:53,479 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:53,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:53,479 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 786432}
2022-05-12 22:22:53,480 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,664 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67371008}) to executor  for transfer request: 0.
2022-05-12 22:22:53,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) about to wait for the following futures []
2022-05-12 22:22:53,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) done waiting for dependent futures
2022-05-12 22:22:53,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67371008}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 67371008}
2022-05-12 22:22:53,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:54,421 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:54,421 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:54,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:54,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:54,421 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 17301504}
2022-05-12 22:22:54,422 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:54,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:22:54,611 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:54,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:22:54,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:22:54,612 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 25690112}
2022-05-12 22:22:54,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:54,632 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:54,632 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:54,632 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:54,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:54,633 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 524288}
2022-05-12 22:22:54,633 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:55,710 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:22:55,710 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:55,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:22:55,711 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:22:55,711 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 1572864}
2022-05-12 22:22:55,711 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:56,861 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:56,861 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:56,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:56,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:56,862 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 8912896}
2022-05-12 22:22:56,862 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:57,338 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:22:57,338 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:57,339 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:22:57,339 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:22:57,339 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 17563648}
2022-05-12 22:22:57,339 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:58,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:22:58,663 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:58,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:22:58,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:22:58,663 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 9175040}
2022-05-12 22:22:58,663 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:59,794 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:59,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:59,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:59,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:59,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 17301504}
2022-05-12 22:22:59,796 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:00,611 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:00,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:00,612 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 18087936}
2022-05-12 22:23:00,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:01,086 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:01,086 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:01,086 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:01,086 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:01,086 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 25952256}
2022-05-12 22:23:01,087 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:02,964 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:02,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:02,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:02,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:02,965 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 9437184}
2022-05-12 22:23:02,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:03,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:23:03,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:03,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:23:03,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:23:03,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 8912896}
2022-05-12 22:23:03,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:04,941 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:04,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:04,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:04,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:04,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 17563648}
2022-05-12 22:23:04,942 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:05,029 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:05,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:05,029 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 25952256}
2022-05-12 22:23:05,030 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:06,028 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:06,028 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:06,028 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:06,028 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:06,028 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 786432}
2022-05-12 22:23:06,029 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:06,659 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:06,659 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:06,659 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:06,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:06,660 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 25952256}
2022-05-12 22:23:06,660 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42467328}) to executor  for transfer request: 0.
2022-05-12 22:23:07,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) about to wait for the following futures []
2022-05-12 22:23:07,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) done waiting for dependent futures
2022-05-12 22:23:07,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42467328}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 42467328}
2022-05-12 22:23:07,045 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59244544}) to executor  for transfer request: 0.
2022-05-12 22:23:07,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) about to wait for the following futures []
2022-05-12 22:23:07,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) done waiting for dependent futures
2022-05-12 22:23:07,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59244544}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 59244544}
2022-05-12 22:23:07,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,443 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:07,444 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:07,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:07,444 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 25952256}
2022-05-12 22:23:07,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,283 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:08,284 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:08,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:08,284 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 1835008}
2022-05-12 22:23:08,285 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:11,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:11,310 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:11,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:11,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:11,310 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 9437184}
2022-05-12 22:23:11,311 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:12,026 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:12,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:12,027 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 1048576}
2022-05-12 22:23:12,027 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,215 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:12,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:12,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:12,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 17825792}
2022-05-12 22:23:12,216 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:12,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:12,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:12,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 17563648}
2022-05-12 22:23:12,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,335 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50855936}) to executor  for transfer request: 0.
2022-05-12 22:23:12,336 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) about to wait for the following futures []
2022-05-12 22:23:12,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) done waiting for dependent futures
2022-05-12 22:23:12,336 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50855936}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 50855936}
2022-05-12 22:23:12,336 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:13,115 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:13,115 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:13,115 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:13,115 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:13,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 18350080}
2022-05-12 22:23:13,116 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:14,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67633152}) to executor  for transfer request: 0.
2022-05-12 22:23:14,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:14,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) about to wait for the following futures []
2022-05-12 22:23:14,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) done waiting for dependent futures
2022-05-12 22:23:14,399 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67633152}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 67633152}
2022-05-12 22:23:14,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:14,699 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:14,700 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:14,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:14,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:14,700 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 17825792}
2022-05-12 22:23:14,701 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:15,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:15,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:15,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:15,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:15,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 26214400}
2022-05-12 22:23:15,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:16,850 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33816576}) to executor  for transfer request: 0.
2022-05-12 22:23:16,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:16,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) about to wait for the following futures []
2022-05-12 22:23:16,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) done waiting for dependent futures
2022-05-12 22:23:16,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33816576}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 33816576}
2022-05-12 22:23:16,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:17,883 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:17,883 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:17,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:17,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:17,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 1048576}
2022-05-12 22:23:17,884 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:17,987 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:17,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:17,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:17,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:17,988 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 9699328}
2022-05-12 22:23:17,989 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:19,851 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:19,851 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:19,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:19,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:19,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 26214400}
2022-05-12 22:23:19,852 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:22,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:22,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:22,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:22,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:22,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 26214400}
2022-05-12 22:23:22,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:24,091 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:24,091 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:24,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:24,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:24,092 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 9175040}
2022-05-12 22:23:24,092 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51118080}) to executor  for transfer request: 0.
2022-05-12 22:23:25,203 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) about to wait for the following futures []
2022-05-12 22:23:25,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) done waiting for dependent futures
2022-05-12 22:23:25,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51118080}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 51118080}
2022-05-12 22:23:25,204 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,298 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:25,298 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:25,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:25,299 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 18087936}
2022-05-12 22:23:25,299 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,500 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:25,500 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:25,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:25,501 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 18087936}
2022-05-12 22:23:25,501 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,923 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:25,923 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:25,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:25,924 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 9961472}
2022-05-12 22:23:25,924 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:26,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:26,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:26,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:26,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:26,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:26,477 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 26476544}
2022-05-12 22:23:26,477 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:27,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:27,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:27,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 26214400}
2022-05-12 22:23:27,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,174 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67895296}) to executor  for transfer request: 0.
2022-05-12 22:23:27,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) about to wait for the following futures []
2022-05-12 22:23:27,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) done waiting for dependent futures
2022-05-12 22:23:27,175 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67895296}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 67895296}
2022-05-12 22:23:27,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,405 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:27,405 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,406 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:27,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:27,406 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 26476544}
2022-05-12 22:23:27,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,586 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:27,586 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:27,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:27,587 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 17825792}
2022-05-12 22:23:27,587 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,830 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:27,831 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:27,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:27,831 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 1310720}
2022-05-12 22:23:27,832 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:23:27,875 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:23:27,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:23:27,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 18612224}
2022-05-12 22:23:27,877 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:28,674 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42729472}) to executor  for transfer request: 0.
2022-05-12 22:23:28,674 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:28,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) about to wait for the following futures []
2022-05-12 22:23:28,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) done waiting for dependent futures
2022-05-12 22:23:28,675 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42729472}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 42729472}
2022-05-12 22:23:28,675 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,906 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75497472}) to executor  for transfer request: 0.
2022-05-12 22:23:30,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) about to wait for the following futures []
2022-05-12 22:23:30,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) done waiting for dependent futures
2022-05-12 22:23:30,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75497472}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 75497472}
2022-05-12 22:23:30,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:31,170 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:31,170 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:31,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:31,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:31,171 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 9175040}
2022-05-12 22:23:31,171 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:32,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:32,972 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:32,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:32,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:32,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 9699328}
2022-05-12 22:23:32,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:33,192 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:33,192 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:33,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:33,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:33,193 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 9437184}
2022-05-12 22:23:33,193 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:34,699 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:34,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:34,699 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:34,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:34,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:34,700 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 26476544}
2022-05-12 22:23:34,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,860 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34078720}) to executor  for transfer request: 0.
2022-05-12 22:23:35,861 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) about to wait for the following futures []
2022-05-12 22:23:35,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) done waiting for dependent futures
2022-05-12 22:23:35,861 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34078720}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 34078720}
2022-05-12 22:23:35,862 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:36,513 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:36,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:36,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:36,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:36,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 10223616}
2022-05-12 22:23:36,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:36,602 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:36,602 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:36,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:36,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:36,603 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 18350080}
2022-05-12 22:23:36,604 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:36,915 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:36,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:36,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:36,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:36,916 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 18350080}
2022-05-12 22:23:36,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,970 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51380224}) to executor  for transfer request: 0.
2022-05-12 22:23:39,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) about to wait for the following futures []
2022-05-12 22:23:39,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) done waiting for dependent futures
2022-05-12 22:23:39,971 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51380224}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 51380224}
2022-05-12 22:23:39,971 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:40,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:40,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:40,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:40,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:40,397 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 26476544}
2022-05-12 22:23:40,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,319 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:42,319 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:42,320 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:42,320 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 18087936}
2022-05-12 22:23:42,320 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,930 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75759616}) to executor  for transfer request: 0.
2022-05-12 22:23:42,930 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) about to wait for the following futures []
2022-05-12 22:23:42,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) done waiting for dependent futures
2022-05-12 22:23:42,931 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75759616}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 75759616}
2022-05-12 22:23:42,931 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,972 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:42,972 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:42,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:42,973 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 9437184}
2022-05-12 22:23:42,973 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:43,122 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:23:43,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:43,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:23:43,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:23:43,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 18874368}
2022-05-12 22:23:43,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:43,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42991616}) to executor  for transfer request: 0.
2022-05-12 22:23:43,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:43,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) about to wait for the following futures []
2022-05-12 22:23:43,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) done waiting for dependent futures
2022-05-12 22:23:43,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42991616}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 42991616}
2022-05-12 22:23:43,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:45,589 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:45,590 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:45,590 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:45,590 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:45,590 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 9699328}
2022-05-12 22:23:45,590 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:47,331 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:23:47,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:47,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:23:47,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:23:47,332 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 10485760}
2022-05-12 22:23:47,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:49,097 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:23:49,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:49,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:23:49,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:23:49,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 2097152}
2022-05-12 22:23:49,098 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:49,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51642368}) to executor  for transfer request: 0.
2022-05-12 22:23:49,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:49,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) about to wait for the following futures []
2022-05-12 22:23:49,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) done waiting for dependent futures
2022-05-12 22:23:49,131 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51642368}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 51642368}
2022-05-12 22:23:49,131 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,279 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:23:50,280 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:23:50,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:23:50,280 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 18612224}
2022-05-12 22:23:50,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:52,524 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68157440}) to executor  for transfer request: 0.
2022-05-12 22:23:52,524 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:52,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) about to wait for the following futures []
2022-05-12 22:23:52,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) done waiting for dependent futures
2022-05-12 22:23:52,524 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68157440}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 68157440}
2022-05-12 22:23:52,525 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:52,864 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:23:52,864 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:52,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:23:52,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:23:52,865 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 18612224}
2022-05-12 22:23:52,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,931 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43253760}) to executor  for transfer request: 0.
2022-05-12 22:23:55,931 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) about to wait for the following futures []
2022-05-12 22:23:55,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) done waiting for dependent futures
2022-05-12 22:23:55,932 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43253760}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 43253760}
2022-05-12 22:23:55,932 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:57,705 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76021760}) to executor  for transfer request: 0.
2022-05-12 22:23:57,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:57,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) about to wait for the following futures []
2022-05-12 22:23:57,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) done waiting for dependent futures
2022-05-12 22:23:57,706 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76021760}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 76021760}
2022-05-12 22:23:57,707 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:58,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:58,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:58,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 9961472}
2022-05-12 22:23:58,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,546 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:23:58,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:23:58,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:23:58,547 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 19136512}
2022-05-12 22:23:58,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:58,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:58,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:58,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 9961472}
2022-05-12 22:23:58,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:59,073 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:59,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:59,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:59,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:59,073 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 9699328}
2022-05-12 22:23:59,073 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:59,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34340864}) to executor  for transfer request: 0.
2022-05-12 22:23:59,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:59,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) about to wait for the following futures []
2022-05-12 22:23:59,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) done waiting for dependent futures
2022-05-12 22:23:59,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34340864}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 34340864}
2022-05-12 22:23:59,854 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:00,455 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:24:00,455 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:00,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:24:00,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:24:00,456 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 18350080}
2022-05-12 22:24:00,457 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:00,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:24:00,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:00,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:24:00,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:24:00,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 26738688}
2022-05-12 22:24:00,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:00,842 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:00,842 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:00,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:00,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:00,843 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 10747904}
2022-05-12 22:24:00,843 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:04,188 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59506688}) to executor  for transfer request: 0.
2022-05-12 22:24:04,188 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:04,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) about to wait for the following futures []
2022-05-12 22:24:04,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) done waiting for dependent futures
2022-05-12 22:24:04,189 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59506688}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 59506688}
2022-05-12 22:24:04,189 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:04,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:04,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:04,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:04,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:04,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 18874368}
2022-05-12 22:24:04,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:05,694 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:24:05,694 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:05,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:24:05,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:24:05,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 1310720}
2022-05-12 22:24:05,695 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:05,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51904512}) to executor  for transfer request: 0.
2022-05-12 22:24:05,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:05,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) about to wait for the following futures []
2022-05-12 22:24:05,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) done waiting for dependent futures
2022-05-12 22:24:05,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51904512}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 51904512}
2022-05-12 22:24:05,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:05,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:05,921 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:05,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:05,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:05,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 18874368}
2022-05-12 22:24:05,922 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:07,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43515904}) to executor  for transfer request: 0.
2022-05-12 22:24:07,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:07,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) about to wait for the following futures []
2022-05-12 22:24:07,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) done waiting for dependent futures
2022-05-12 22:24:07,743 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43515904}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 43515904}
2022-05-12 22:24:07,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:10,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76283904}) to executor  for transfer request: 0.
2022-05-12 22:24:10,084 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:10,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) about to wait for the following futures []
2022-05-12 22:24:10,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) done waiting for dependent futures
2022-05-12 22:24:10,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76283904}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 76283904}
2022-05-12 22:24:10,085 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:12,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:12,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:12,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 19398656}
2022-05-12 22:24:12,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,605 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:24:12,606 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:24:12,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:24:12,606 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 10223616}
2022-05-12 22:24:12,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,366 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:24:13,366 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:24:13,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:24:13,367 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 18612224}
2022-05-12 22:24:13,367 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:14,595 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:24:14,595 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:14,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:24:14,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:24:14,595 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 9961472}
2022-05-12 22:24:14,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:15,530 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:15,531 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:15,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:15,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:15,531 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 11010048}
2022-05-12 22:24:15,531 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:15,976 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:24:15,977 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:15,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:24:15,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:24:15,977 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 27000832}
2022-05-12 22:24:15,978 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:18,246 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:24:18,246 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:18,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:24:18,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:24:18,247 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 10223616}
2022-05-12 22:24:18,247 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:18,667 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:18,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:18,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:18,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:18,668 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 19136512}
2022-05-12 22:24:18,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:19,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52166656}) to executor  for transfer request: 0.
2022-05-12 22:24:19,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:19,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) about to wait for the following futures []
2022-05-12 22:24:19,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) done waiting for dependent futures
2022-05-12 22:24:19,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52166656}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 52166656}
2022-05-12 22:24:19,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,466 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:20,466 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,467 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:20,467 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:20,467 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 19136512}
2022-05-12 22:24:20,467 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,679 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43778048}) to executor  for transfer request: 0.
2022-05-12 22:24:20,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) about to wait for the following futures []
2022-05-12 22:24:20,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) done waiting for dependent futures
2022-05-12 22:24:20,680 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43778048}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 43778048}
2022-05-12 22:24:20,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:21,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68419584}) to executor  for transfer request: 0.
2022-05-12 22:24:21,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:21,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) about to wait for the following futures []
2022-05-12 22:24:21,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) done waiting for dependent futures
2022-05-12 22:24:21,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68419584}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 68419584}
2022-05-12 22:24:21,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:22,084 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:24:22,084 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:22,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:24:22,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:24:22,085 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 11272192}
2022-05-12 22:24:22,085 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:23,027 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:23,027 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:23,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:23,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:23,028 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 10485760}
2022-05-12 22:24:23,028 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:23,776 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76546048}) to executor  for transfer request: 0.
2022-05-12 22:24:23,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:23,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) about to wait for the following futures []
2022-05-12 22:24:23,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) done waiting for dependent futures
2022-05-12 22:24:23,777 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76546048}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 76546048}
2022-05-12 22:24:23,778 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:24:26,356 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:24:26,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:24:26,356 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 1572864}
2022-05-12 22:24:26,357 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:24:26,508 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:24:26,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:24:26,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 19660800}
2022-05-12 22:24:26,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,848 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:26,848 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:26,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:26,848 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 18874368}
2022-05-12 22:24:26,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34603008}) to executor  for transfer request: 0.
2022-05-12 22:24:28,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) about to wait for the following futures []
2022-05-12 22:24:28,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) done waiting for dependent futures
2022-05-12 22:24:28,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34603008}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 34603008}
2022-05-12 22:24:28,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:24:28,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,427 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:24:28,427 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:24:28,427 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 10223616}
2022-05-12 22:24:28,428 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,904 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:24:30,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:24:30,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:24:30,905 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 27262976}
2022-05-12 22:24:30,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:30,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:30,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:30,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 19398656}
2022-05-12 22:24:30,956 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:32,978 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:24:32,979 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:32,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:24:32,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:24:32,979 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 11534336}
2022-05-12 22:24:32,979 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:33,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44040192}) to executor  for transfer request: 0.
2022-05-12 22:24:33,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:33,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) about to wait for the following futures []
2022-05-12 22:24:33,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) done waiting for dependent futures
2022-05-12 22:24:33,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44040192}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 44040192}
2022-05-12 22:24:33,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:33,888 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:33,888 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:33,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:33,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:33,889 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 19398656}
2022-05-12 22:24:33,889 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:34,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76808192}) to executor  for transfer request: 0.
2022-05-12 22:24:34,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:34,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) about to wait for the following futures []
2022-05-12 22:24:34,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) done waiting for dependent futures
2022-05-12 22:24:34,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76808192}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 76808192}
2022-05-12 22:24:34,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,077 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:36,077 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:36,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:36,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 10747904}
2022-05-12 22:24:36,078 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,632 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52428800}) to executor  for transfer request: 0.
2022-05-12 22:24:36,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) about to wait for the following futures []
2022-05-12 22:24:36,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) done waiting for dependent futures
2022-05-12 22:24:36,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52428800}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 52428800}
2022-05-12 22:24:36,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:37,672 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:37,672 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:37,672 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:37,672 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:37,672 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 10485760}
2022-05-12 22:24:37,673 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:38,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:38,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:38,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:38,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:38,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 19136512}
2022-05-12 22:24:38,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:39,764 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:24:39,764 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:39,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:24:39,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:24:39,765 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 19660800}
2022-05-12 22:24:39,765 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:41,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:24:41,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:41,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:24:41,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:24:41,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 19922944}
2022-05-12 22:24:41,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:24:42,842 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:24:42,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:24:42,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 27525120}
2022-05-12 22:24:42,843 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:43,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:43,702 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:43,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:43,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:43,702 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 10485760}
2022-05-12 22:24:43,703 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:44,320 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:24:44,320 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:44,320 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:24:44,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:24:44,321 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 11796480}
2022-05-12 22:24:44,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:46,346 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77070336}) to executor  for transfer request: 0.
2022-05-12 22:24:46,346 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:46,346 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) about to wait for the following futures []
2022-05-12 22:24:46,346 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) done waiting for dependent futures
2022-05-12 22:24:46,346 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77070336}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 77070336}
2022-05-12 22:24:46,347 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:47,356 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:24:47,356 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:47,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:24:47,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:24:47,357 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 19660800}
2022-05-12 22:24:47,357 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:47,703 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:47,703 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:47,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:47,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:47,704 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 11010048}
2022-05-12 22:24:47,704 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:48,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:48,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:48,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:48,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:48,005 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 19398656}
2022-05-12 22:24:48,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:49,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68681728}) to executor  for transfer request: 0.
2022-05-12 22:24:49,395 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:49,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) about to wait for the following futures []
2022-05-12 22:24:49,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) done waiting for dependent futures
2022-05-12 22:24:49,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68681728}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 68681728}
2022-05-12 22:24:49,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:50,556 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44302336}) to executor  for transfer request: 0.
2022-05-12 22:24:50,556 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:50,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) about to wait for the following futures []
2022-05-12 22:24:50,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) done waiting for dependent futures
2022-05-12 22:24:50,557 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44302336}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 44302336}
2022-05-12 22:24:50,557 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:50,815 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52690944}) to executor  for transfer request: 0.
2022-05-12 22:24:50,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:50,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) about to wait for the following futures []
2022-05-12 22:24:50,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) done waiting for dependent futures
2022-05-12 22:24:50,816 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52690944}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 52690944}
2022-05-12 22:24:50,816 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:24:53,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:24:53,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:24:53,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 20185088}
2022-05-12 22:24:53,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:24:53,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:24:53,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:24:53,948 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 27787264}
2022-05-12 22:24:53,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:54,060 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:24:54,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:54,061 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:24:54,061 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:24:54,061 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 12058624}
2022-05-12 22:24:54,061 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:55,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:55,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:55,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:55,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:55,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 10747904}
2022-05-12 22:24:55,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:56,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:24:56,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:56,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:24:56,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:24:56,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 19922944}
2022-05-12 22:24:56,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,579 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:24:58,580 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:24:58,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:24:58,580 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 19922944}
2022-05-12 22:24:58,581 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:59,669 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:24:59,670 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:59,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:24:59,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:24:59,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 19660800}
2022-05-12 22:24:59,671 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:00,232 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:25:00,232 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:00,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:25:00,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:25:00,233 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 11272192}
2022-05-12 22:25:00,234 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:00,433 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77332480}) to executor  for transfer request: 0.
2022-05-12 22:25:00,433 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:00,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) about to wait for the following futures []
2022-05-12 22:25:00,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) done waiting for dependent futures
2022-05-12 22:25:00,434 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77332480}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 77332480}
2022-05-12 22:25:00,434 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:01,180 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34865152}) to executor  for transfer request: 0.
2022-05-12 22:25:01,180 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:01,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) about to wait for the following futures []
2022-05-12 22:25:01,181 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) done waiting for dependent futures
2022-05-12 22:25:01,181 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34865152}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 34865152}
2022-05-12 22:25:01,181 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:01,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:25:01,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:01,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:25:01,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:25:01,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 2359296}
2022-05-12 22:25:01,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,848 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44564480}) to executor  for transfer request: 0.
2022-05-12 22:25:02,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) about to wait for the following futures []
2022-05-12 22:25:02,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) done waiting for dependent futures
2022-05-12 22:25:02,849 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44564480}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 44564480}
2022-05-12 22:25:02,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:06,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:25:06,986 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:06,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:25:06,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:25:06,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 10747904}
2022-05-12 22:25:06,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:07,392 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:25:07,392 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:07,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:25:07,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:25:07,392 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 11010048}
2022-05-12 22:25:07,393 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:08,284 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:08,284 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:08,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:08,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:08,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 12320768}
2022-05-12 22:25:08,285 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:08,610 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:25:08,610 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:08,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:25:08,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:25:08,611 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 28049408}
2022-05-12 22:25:08,611 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52953088}) to executor  for transfer request: 0.
2022-05-12 22:25:09,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) about to wait for the following futures []
2022-05-12 22:25:09,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) done waiting for dependent futures
2022-05-12 22:25:09,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52953088}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 52953088}
2022-05-12 22:25:09,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,663 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:25:09,664 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:25:09,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:25:09,664 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 19922944}
2022-05-12 22:25:09,665 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:10,945 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59768832}) to executor  for transfer request: 0.
2022-05-12 22:25:10,946 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:10,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) about to wait for the following futures []
2022-05-12 22:25:10,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) done waiting for dependent futures
2022-05-12 22:25:10,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59768832}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 59768832}
2022-05-12 22:25:10,947 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:11,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:11,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:11,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:11,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:11,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 20447232}
2022-05-12 22:25:11,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:11,408 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:25:11,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:11,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:25:11,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:25:11,409 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 20185088}
2022-05-12 22:25:11,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,249 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:25:12,249 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:25:12,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:25:12,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 11534336}
2022-05-12 22:25:12,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,935 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:25:12,935 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:25:12,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:25:12,936 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 20185088}
2022-05-12 22:25:12,936 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:13,671 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:25:13,671 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:13,671 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:25:13,671 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:25:13,672 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 1572864}
2022-05-12 22:25:13,672 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:14,508 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77594624}) to executor  for transfer request: 0.
2022-05-12 22:25:14,508 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:14,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) about to wait for the following futures []
2022-05-12 22:25:14,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) done waiting for dependent futures
2022-05-12 22:25:14,509 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77594624}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 77594624}
2022-05-12 22:25:14,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,391 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:25:18,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:25:18,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:25:18,392 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 20185088}
2022-05-12 22:25:18,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:18,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:18,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:18,509 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 12582912}
2022-05-12 22:25:18,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:19,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:25:19,999 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:19,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:25:20,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:25:20,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 11272192}
2022-05-12 22:25:20,000 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:21,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68943872}) to executor  for transfer request: 0.
2022-05-12 22:25:21,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:21,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) about to wait for the following futures []
2022-05-12 22:25:21,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) done waiting for dependent futures
2022-05-12 22:25:21,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68943872}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 68943872}
2022-05-12 22:25:21,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:21,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:25:21,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:21,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:25:21,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:25:21,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 1835008}
2022-05-12 22:25:21,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:22,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53215232}) to executor  for transfer request: 0.
2022-05-12 22:25:22,186 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:22,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) about to wait for the following futures []
2022-05-12 22:25:22,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) done waiting for dependent futures
2022-05-12 22:25:22,187 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53215232}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 53215232}
2022-05-12 22:25:22,187 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:23,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:23,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:23,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:23,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:23,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 20447232}
2022-05-12 22:25:23,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:23,740 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:25:23,740 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:23,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:25:23,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:25:23,740 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 20709376}
2022-05-12 22:25:23,741 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,391 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:25:24,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:25:24,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:25:24,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 28311552}
2022-05-12 22:25:24,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:25,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44826624}) to executor  for transfer request: 0.
2022-05-12 22:25:25,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:25,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) about to wait for the following futures []
2022-05-12 22:25:25,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) done waiting for dependent futures
2022-05-12 22:25:25,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44826624}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 44826624}
2022-05-12 22:25:25,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:26,690 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:26,690 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:26,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:26,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:26,691 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 20447232}
2022-05-12 22:25:26,691 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:26,706 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:26,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:26,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:26,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:26,707 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 11796480}
2022-05-12 22:25:26,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:28,530 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:25:28,530 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:28,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:25:28,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:25:28,530 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 12845056}
2022-05-12 22:25:28,531 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:30,085 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:30,085 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:30,086 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:30,086 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:30,086 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 20447232}
2022-05-12 22:25:30,087 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:30,217 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35127296}) to executor  for transfer request: 0.
2022-05-12 22:25:30,217 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:30,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) about to wait for the following futures []
2022-05-12 22:25:30,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) done waiting for dependent futures
2022-05-12 22:25:30,218 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35127296}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 35127296}
2022-05-12 22:25:30,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:31,078 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:25:31,079 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:31,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:25:31,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:25:31,079 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 0}
2022-05-12 22:25:31,079 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:32,061 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:25:32,061 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:32,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:25:32,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:25:32,062 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 11534336}
2022-05-12 22:25:32,062 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:32,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77856768}) to executor  for transfer request: 0.
2022-05-12 22:25:32,370 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:32,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) about to wait for the following futures []
2022-05-12 22:25:32,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) done waiting for dependent futures
2022-05-12 22:25:32,370 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77856768}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 77856768}
2022-05-12 22:25:32,371 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:32,765 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:25:32,765 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:32,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:25:32,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:25:32,765 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 1835008}
2022-05-12 22:25:32,766 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:33,357 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:25:33,357 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:33,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:25:33,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:25:33,358 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 20709376}
2022-05-12 22:25:33,358 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:37,151 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60030976}) to executor  for transfer request: 0.
2022-05-12 22:25:37,152 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:37,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) about to wait for the following futures []
2022-05-12 22:25:37,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) done waiting for dependent futures
2022-05-12 22:25:37,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60030976}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 60030976}
2022-05-12 22:25:37,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:37,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:25:37,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:37,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:25:37,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:25:37,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 13107200}
2022-05-12 22:25:37,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:37,824 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:37,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:37,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:37,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:37,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 12058624}
2022-05-12 22:25:37,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:38,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:25:38,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:38,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:25:38,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:25:38,269 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 20709376}
2022-05-12 22:25:38,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:38,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:25:38,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:38,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:25:38,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:25:38,744 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 20971520}
2022-05-12 22:25:38,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:39,284 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69206016}) to executor  for transfer request: 0.
2022-05-12 22:25:39,284 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:39,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) about to wait for the following futures []
2022-05-12 22:25:39,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) done waiting for dependent futures
2022-05-12 22:25:39,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69206016}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 69206016}
2022-05-12 22:25:39,285 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:40,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53477376}) to executor  for transfer request: 0.
2022-05-12 22:25:40,771 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:40,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) about to wait for the following futures []
2022-05-12 22:25:40,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) done waiting for dependent futures
2022-05-12 22:25:40,771 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53477376}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 53477376}
2022-05-12 22:25:40,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:40,859 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:40,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:40,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:40,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:40,859 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 11796480}
2022-05-12 22:25:40,860 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:41,712 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:25:41,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:41,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:25:41,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:25:41,713 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 28573696}
2022-05-12 22:25:41,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:42,818 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:25:42,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:42,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:25:42,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:25:42,819 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 20709376}
2022-05-12 22:25:42,819 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,104 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:25:44,104 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:25:44,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:25:44,105 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 20971520}
2022-05-12 22:25:44,105 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:25:44,165 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:25:44,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:25:44,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 13369344}
2022-05-12 22:25:44,166 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:45,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:25:45,643 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:45,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:25:45,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:25:45,643 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 2621440}
2022-05-12 22:25:45,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:47,728 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:47,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:47,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:47,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:47,729 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 12320768}
2022-05-12 22:25:47,729 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:49,612 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:25:49,612 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:49,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:25:49,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:25:49,612 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 20971520}
2022-05-12 22:25:49,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:51,377 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:25:51,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:51,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:25:51,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:25:51,379 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 2097152}
2022-05-12 22:25:51,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:51,964 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:51,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:51,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:51,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:51,965 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 12058624}
2022-05-12 22:25:51,965 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:52,056 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:25:52,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:52,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:25:52,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:25:52,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 21233664}
2022-05-12 22:25:52,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:53,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53739520}) to executor  for transfer request: 0.
2022-05-12 22:25:53,330 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:53,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) about to wait for the following futures []
2022-05-12 22:25:53,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) done waiting for dependent futures
2022-05-12 22:25:53,330 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53739520}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 53739520}
2022-05-12 22:25:53,331 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:53,996 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:25:53,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:53,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:25:53,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:25:53,997 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 13631488}
2022-05-12 22:25:53,998 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:54,402 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:25:54,402 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:54,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:25:54,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:25:54,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 11010048}
2022-05-12 22:25:54,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:54,687 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:25:54,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:54,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:25:54,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:25:54,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 20971520}
2022-05-12 22:25:54,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:55,279 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69468160}) to executor  for transfer request: 0.
2022-05-12 22:25:55,279 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:55,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) about to wait for the following futures []
2022-05-12 22:25:55,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) done waiting for dependent futures
2022-05-12 22:25:55,280 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69468160}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 69468160}
2022-05-12 22:25:55,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:55,770 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45088768}) to executor  for transfer request: 0.
2022-05-12 22:25:55,771 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:55,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) about to wait for the following futures []
2022-05-12 22:25:55,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) done waiting for dependent futures
2022-05-12 22:25:55,771 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45088768}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 45088768}
2022-05-12 22:25:55,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:57,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:57,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:57,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:57,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:57,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 12582912}
2022-05-12 22:25:57,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:58,845 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35389440}) to executor  for transfer request: 0.
2022-05-12 22:25:58,845 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:58,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) about to wait for the following futures []
2022-05-12 22:25:58,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) done waiting for dependent futures
2022-05-12 22:25:58,846 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35389440}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 35389440}
2022-05-12 22:25:58,846 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:00,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:26:00,076 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:00,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:26:00,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:26:00,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 28835840}
2022-05-12 22:26:00,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:00,305 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:26:00,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:00,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:26:00,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:26:00,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 21233664}
2022-05-12 22:26:00,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:00,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:00,470 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:00,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:00,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:00,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 13893632}
2022-05-12 22:26:00,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,113 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:26:04,113 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:26:04,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:26:04,114 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 21233664}
2022-05-12 22:26:04,114 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:26:04,203 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:26:04,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:26:04,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 21495808}
2022-05-12 22:26:04,204 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,848 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:26:04,848 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:26:04,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:26:04,849 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 2883584}
2022-05-12 22:26:04,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,883 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:26:04,883 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:26:04,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:26:04,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 12845056}
2022-05-12 22:26:04,884 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:05,800 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:26:05,800 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:05,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:26:05,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:26:05,801 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 21233664}
2022-05-12 22:26:05,801 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54001664}) to executor  for transfer request: 0.
2022-05-12 22:26:08,259 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) about to wait for the following futures []
2022-05-12 22:26:08,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) done waiting for dependent futures
2022-05-12 22:26:08,259 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54001664}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 54001664}
2022-05-12 22:26:08,260 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,958 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:26:08,958 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:26:08,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:26:08,959 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 12320768}
2022-05-12 22:26:08,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,923 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:26:10,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:10,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:26:10,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:26:10,924 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 14155776}
2022-05-12 22:26:10,924 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:12,639 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:26:12,639 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:12,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:26:12,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:26:12,640 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 2359296}
2022-05-12 22:26:12,640 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:14,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:26:14,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:14,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:26:14,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:26:14,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 21495808}
2022-05-12 22:26:14,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:14,609 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60293120}) to executor  for transfer request: 0.
2022-05-12 22:26:14,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:14,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) about to wait for the following futures []
2022-05-12 22:26:14,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) done waiting for dependent futures
2022-05-12 22:26:14,610 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60293120}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 60293120}
2022-05-12 22:26:14,610 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:14,745 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:26:14,746 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:14,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:26:14,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:26:14,746 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 21495808}
2022-05-12 22:26:14,746 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:15,061 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:26:15,061 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:15,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:26:15,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:26:15,062 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 11272192}
2022-05-12 22:26:15,062 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:16,737 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:26:16,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:16,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:26:16,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:26:16,737 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 21495808}
2022-05-12 22:26:16,738 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:17,103 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:26:17,103 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:17,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:26:17,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:26:17,104 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 21757952}
2022-05-12 22:26:17,104 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:17,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:26:17,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:17,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:26:17,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:26:17,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 29097984}
2022-05-12 22:26:17,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:19,706 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54263808}) to executor  for transfer request: 0.
2022-05-12 22:26:19,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:19,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) about to wait for the following futures []
2022-05-12 22:26:19,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) done waiting for dependent futures
2022-05-12 22:26:19,706 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54263808}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 54263808}
2022-05-12 22:26:19,707 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:19,983 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78118912}) to executor  for transfer request: 0.
2022-05-12 22:26:19,983 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:19,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) about to wait for the following futures []
2022-05-12 22:26:19,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) done waiting for dependent futures
2022-05-12 22:26:19,984 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78118912}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 78118912}
2022-05-12 22:26:19,985 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:26:20,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:26:20,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:26:20,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 13107200}
2022-05-12 22:26:20,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69730304}) to executor  for transfer request: 0.
2022-05-12 22:26:20,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) about to wait for the following futures []
2022-05-12 22:26:20,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) done waiting for dependent futures
2022-05-12 22:26:20,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69730304}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 69730304}
2022-05-12 22:26:20,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:26:20,885 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:26:20,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:26:20,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 14417920}
2022-05-12 22:26:20,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:21,606 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:26:21,606 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:21,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:26:21,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:26:21,607 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 21757952}
2022-05-12 22:26:21,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:21,700 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:26:21,700 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:21,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:26:21,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:26:21,701 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 3145728}
2022-05-12 22:26:21,701 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:22,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:26:22,943 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:22,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:26:22,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:26:22,943 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 21757952}
2022-05-12 22:26:22,944 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:23,106 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:26:23,106 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:23,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:26:23,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:26:23,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 12582912}
2022-05-12 22:26:23,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:23,389 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:26:23,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:23,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:26:23,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:26:23,390 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 11534336}
2022-05-12 22:26:23,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:25,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45350912}) to executor  for transfer request: 0.
2022-05-12 22:26:25,186 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:25,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) about to wait for the following futures []
2022-05-12 22:26:25,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) done waiting for dependent futures
2022-05-12 22:26:25,187 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45350912}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 45350912}
2022-05-12 22:26:25,187 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,032 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:26:27,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:26:27,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:26:27,033 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 14680064}
2022-05-12 22:26:27,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:28,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:26:28,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:28,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:26:28,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:26:28,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 22020096}
2022-05-12 22:26:28,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:29,779 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60555264}) to executor  for transfer request: 0.
2022-05-12 22:26:29,780 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:29,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) about to wait for the following futures []
2022-05-12 22:26:29,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) done waiting for dependent futures
2022-05-12 22:26:29,780 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60555264}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 60555264}
2022-05-12 22:26:29,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,425 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:26:30,426 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:26:30,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:26:30,426 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 21757952}
2022-05-12 22:26:30,426 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,275 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:26:31,275 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:26:31,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:26:31,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 2621440}
2022-05-12 22:26:31,276 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,629 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:31,630 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:31,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:31,630 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 13369344}
2022-05-12 22:26:31,631 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:26:32,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:26:32,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:26:32,681 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 22020096}
2022-05-12 22:26:32,682 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:33,158 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:26:33,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:33,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:26:33,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:26:33,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 11796480}
2022-05-12 22:26:33,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:33,377 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:26:33,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:33,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:26:33,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:26:33,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 29360128}
2022-05-12 22:26:33,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:33,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:26:33,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:33,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:26:33,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:26:33,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 22020096}
2022-05-12 22:26:33,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:34,552 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:26:34,552 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:34,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:26:34,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:26:34,552 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 14942208}
2022-05-12 22:26:34,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:36,212 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54525952}) to executor  for transfer request: 0.
2022-05-12 22:26:36,212 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:36,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) about to wait for the following futures []
2022-05-12 22:26:36,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) done waiting for dependent futures
2022-05-12 22:26:36,212 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54525952}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 54525952}
2022-05-12 22:26:36,213 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,386 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:26:37,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:37,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:26:37,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:26:37,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 12845056}
2022-05-12 22:26:37,387 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:26:40,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:26:40,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:26:40,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 22282240}
2022-05-12 22:26:40,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:26:41,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:26:41,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:26:41,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 15204352}
2022-05-12 22:26:41,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,605 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69992448}) to executor  for transfer request: 0.
2022-05-12 22:26:41,606 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) about to wait for the following futures []
2022-05-12 22:26:41,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) done waiting for dependent futures
2022-05-12 22:26:41,606 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69992448}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 69992448}
2022-05-12 22:26:41,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,835 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:41,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:41,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:41,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 13631488}
2022-05-12 22:26:41,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:42,365 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:26:42,365 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:42,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:26:42,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:26:42,366 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 22282240}
2022-05-12 22:26:42,366 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:42,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:26:42,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:42,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:26:42,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:26:42,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 12058624}
2022-05-12 22:26:42,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:42,569 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78381056}) to executor  for transfer request: 0.
2022-05-12 22:26:42,569 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:42,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) about to wait for the following futures []
2022-05-12 22:26:42,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) done waiting for dependent futures
2022-05-12 22:26:42,570 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78381056}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 78381056}
2022-05-12 22:26:42,570 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:42,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:26:42,646 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:42,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:26:42,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:26:42,647 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 22020096}
2022-05-12 22:26:42,647 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:42,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60817408}) to executor  for transfer request: 0.
2022-05-12 22:26:42,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:42,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) about to wait for the following futures []
2022-05-12 22:26:42,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) done waiting for dependent futures
2022-05-12 22:26:42,858 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60817408}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 60817408}
2022-05-12 22:26:42,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:43,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35651584}) to executor  for transfer request: 0.
2022-05-12 22:26:43,830 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:43,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) about to wait for the following futures []
2022-05-12 22:26:43,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) done waiting for dependent futures
2022-05-12 22:26:43,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35651584}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 35651584}
2022-05-12 22:26:43,831 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:45,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:26:45,792 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:45,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:26:45,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:26:45,792 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 29622272}
2022-05-12 22:26:45,794 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:46,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54788096}) to executor  for transfer request: 0.
2022-05-12 22:26:46,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:46,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) about to wait for the following futures []
2022-05-12 22:26:46,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) done waiting for dependent futures
2022-05-12 22:26:46,283 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54788096}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 54788096}
2022-05-12 22:26:46,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:46,287 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:26:46,287 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:46,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:26:46,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:26:46,288 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 3407872}
2022-05-12 22:26:46,288 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:47,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:26:47,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:47,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:26:47,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:26:47,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 13107200}
2022-05-12 22:26:47,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:50,338 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:26:50,338 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:50,339 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:26:50,339 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:26:50,340 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 15466496}
2022-05-12 22:26:50,340 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:50,851 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:26:50,851 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:50,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:26:50,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:26:50,852 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 22282240}
2022-05-12 22:26:50,852 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:53,861 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:53,862 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:53,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:53,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:53,862 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 13893632}
2022-05-12 22:26:53,863 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:54,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:26:54,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:54,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:26:54,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:26:54,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 2883584}
2022-05-12 22:26:54,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:54,874 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:26:54,874 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:54,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:26:54,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:26:54,875 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 22544384}
2022-05-12 22:26:54,875 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:56,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:26:56,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:56,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:26:56,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:26:56,569 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 22282240}
2022-05-12 22:26:56,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:56,752 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45613056}) to executor  for transfer request: 0.
2022-05-12 22:26:56,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:56,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) about to wait for the following futures []
2022-05-12 22:26:56,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) done waiting for dependent futures
2022-05-12 22:26:56,753 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45613056}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 45613056}
2022-05-12 22:26:56,754 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:56,866 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:26:56,866 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:56,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:26:56,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:26:56,867 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 22544384}
2022-05-12 22:26:56,867 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:58,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:58,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:58,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:58,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:58,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 13369344}
2022-05-12 22:26:58,296 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:00,107 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:27:00,107 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:00,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:27:00,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:27:00,108 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 15728640}
2022-05-12 22:27:00,108 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55050240}) to executor  for transfer request: 0.
2022-05-12 22:27:01,259 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) about to wait for the following futures []
2022-05-12 22:27:01,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) done waiting for dependent futures
2022-05-12 22:27:01,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55050240}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 55050240}
2022-05-12 22:27:01,260 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:27:01,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:27:01,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:27:01,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 12320768}
2022-05-12 22:27:01,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:02,322 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70254592}) to executor  for transfer request: 0.
2022-05-12 22:27:02,323 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:02,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) about to wait for the following futures []
2022-05-12 22:27:02,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) done waiting for dependent futures
2022-05-12 22:27:02,324 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70254592}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 70254592}
2022-05-12 22:27:02,324 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:02,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:27:02,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:02,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:27:02,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:27:02,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 22544384}
2022-05-12 22:27:02,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:03,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:27:03,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:03,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:27:03,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:27:03,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 22806528}
2022-05-12 22:27:03,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:05,335 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:27:05,335 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:05,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:27:05,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:27:05,335 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 14155776}
2022-05-12 22:27:05,335 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:06,745 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:27:06,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:06,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:27:06,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:27:06,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 22806528}
2022-05-12 22:27:06,746 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:07,016 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:27:07,016 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:07,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:27:07,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:27:07,017 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 29884416}
2022-05-12 22:27:07,017 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:07,223 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:27:07,223 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:07,223 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:27:07,223 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:27:07,223 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 22544384}
2022-05-12 22:27:07,224 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:07,581 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:27:07,581 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:07,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:27:07,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:27:07,582 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 15990784}
2022-05-12 22:27:07,582 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:08,872 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:27:08,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:08,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:27:08,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:27:08,873 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 3145728}
2022-05-12 22:27:08,873 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:10,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:27:10,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:10,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:27:10,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:27:10,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 13631488}
2022-05-12 22:27:10,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:10,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78643200}) to executor  for transfer request: 0.
2022-05-12 22:27:10,573 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:10,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) about to wait for the following futures []
2022-05-12 22:27:10,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) done waiting for dependent futures
2022-05-12 22:27:10,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78643200}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 78643200}
2022-05-12 22:27:10,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:27:13,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:27:13,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:27:13,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 22806528}
2022-05-12 22:27:13,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,975 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55312384}) to executor  for transfer request: 0.
2022-05-12 22:27:13,975 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) about to wait for the following futures []
2022-05-12 22:27:13,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) done waiting for dependent futures
2022-05-12 22:27:13,976 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55312384}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 55312384}
2022-05-12 22:27:13,976 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,385 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:27:14,385 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:14,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:27:14,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:27:14,386 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 23068672}
2022-05-12 22:27:14,386 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,726 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:27:14,726 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:14,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:27:14,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:27:14,727 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 22806528}
2022-05-12 22:27:14,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:15,759 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:27:15,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:15,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:27:15,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:27:15,760 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 14417920}
2022-05-12 22:27:15,760 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:27:16,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:27:16,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:27:16,401 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 16252928}
2022-05-12 22:27:16,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,535 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:27:16,535 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:27:16,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:27:16,535 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 3670016}
2022-05-12 22:27:16,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,316 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61079552}) to executor  for transfer request: 0.
2022-05-12 22:27:17,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) about to wait for the following futures []
2022-05-12 22:27:17,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) done waiting for dependent futures
2022-05-12 22:27:17,317 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61079552}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 61079552}
2022-05-12 22:27:17,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:18,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:27:18,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:18,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:27:18,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:27:18,365 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 30146560}
2022-05-12 22:27:18,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:18,606 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:27:18,606 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:18,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:27:18,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:27:18,607 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 12582912}
2022-05-12 22:27:18,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:20,810 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:27:20,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:20,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:27:20,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:27:20,811 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 23068672}
2022-05-12 22:27:20,811 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:22,535 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45875200}) to executor  for transfer request: 0.
2022-05-12 22:27:22,536 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:22,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) about to wait for the following futures []
2022-05-12 22:27:22,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) done waiting for dependent futures
2022-05-12 22:27:22,536 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45875200}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 45875200}
2022-05-12 22:27:22,537 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:22,709 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55574528}) to executor  for transfer request: 0.
2022-05-12 22:27:22,709 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:22,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) about to wait for the following futures []
2022-05-12 22:27:22,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) done waiting for dependent futures
2022-05-12 22:27:22,710 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55574528}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 55574528}
2022-05-12 22:27:22,710 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:23,980 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:27:23,981 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:23,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:27:23,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:27:23,981 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 3407872}
2022-05-12 22:27:23,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:27:24,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:24,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:27:24,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:27:24,399 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 23068672}
2022-05-12 22:27:24,400 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,846 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:27:24,846 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:24,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:27:24,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:27:24,846 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 13893632}
2022-05-12 22:27:24,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:27:25,138 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:27:25,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:27:25,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 16515072}
2022-05-12 22:27:25,139 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,447 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70516736}) to executor  for transfer request: 0.
2022-05-12 22:27:25,447 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) about to wait for the following futures []
2022-05-12 22:27:25,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) done waiting for dependent futures
2022-05-12 22:27:25,448 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70516736}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 70516736}
2022-05-12 22:27:25,448 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:27:25,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:27:25,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:27:25,761 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 23330816}
2022-05-12 22:27:25,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:26,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:27:26,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:26,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:27:26,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:27:26,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 14680064}
2022-05-12 22:27:26,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:27,375 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:27:27,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:27,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:27:27,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:27:27,376 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 23068672}
2022-05-12 22:27:27,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,706 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30408704}) to executor  for transfer request: 0.
2022-05-12 22:27:28,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) about to wait for the following futures []
2022-05-12 22:27:28,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) done waiting for dependent futures
2022-05-12 22:27:28,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30408704}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 30408704}
2022-05-12 22:27:28,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:30,227 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:27:30,228 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:30,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:27:30,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:27:30,228 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 14155776}
2022-05-12 22:27:30,229 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:31,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:27:31,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:31,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:27:31,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:27:31,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 23330816}
2022-05-12 22:27:31,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:32,169 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55836672}) to executor  for transfer request: 0.
2022-05-12 22:27:32,169 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:32,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) about to wait for the following futures []
2022-05-12 22:27:32,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) done waiting for dependent futures
2022-05-12 22:27:32,170 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55836672}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 55836672}
2022-05-12 22:27:32,170 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:33,627 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:27:33,627 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:33,627 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:27:33,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:27:33,628 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 23592960}
2022-05-12 22:27:33,628 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:27:34,253 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:27:34,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:27:34,253 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 2097152}
2022-05-12 22:27:34,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:35,541 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:27:35,541 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:35,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:27:35,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:27:35,541 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 23330816}
2022-05-12 22:27:35,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:36,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35913728}) to executor  for transfer request: 0.
2022-05-12 22:27:36,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:36,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) about to wait for the following futures []
2022-05-12 22:27:36,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) done waiting for dependent futures
2022-05-12 22:27:36,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35913728}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 35913728}
2022-05-12 22:27:36,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,949 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61341696}) to executor  for transfer request: 0.
2022-05-12 22:27:37,949 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) about to wait for the following futures []
2022-05-12 22:27:37,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) done waiting for dependent futures
2022-05-12 22:27:37,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61341696}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 61341696}
2022-05-12 22:27:37,950 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:38,239 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:27:38,239 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:38,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:27:38,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:27:38,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 14942208}
2022-05-12 22:27:38,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:39,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30670848}) to executor  for transfer request: 0.
2022-05-12 22:27:39,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:39,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) about to wait for the following futures []
2022-05-12 22:27:39,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) done waiting for dependent futures
2022-05-12 22:27:39,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30670848}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 30670848}
2022-05-12 22:27:39,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:39,433 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:27:39,434 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:39,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:27:39,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:27:39,434 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 12845056}
2022-05-12 22:27:39,434 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:27:41,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:27:41,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:27:41,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 3670016}
2022-05-12 22:27:41,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:42,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:27:42,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:42,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:27:42,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:27:42,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 14417920}
2022-05-12 22:27:42,543 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:43,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:27:43,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:43,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:27:43,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:27:43,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 23330816}
2022-05-12 22:27:43,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:43,386 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78905344}) to executor  for transfer request: 0.
2022-05-12 22:27:43,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:43,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) about to wait for the following futures []
2022-05-12 22:27:43,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) done waiting for dependent futures
2022-05-12 22:27:43,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78905344}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 78905344}
2022-05-12 22:27:43,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70778880}) to executor  for transfer request: 0.
2022-05-12 22:27:45,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:45,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) about to wait for the following futures []
2022-05-12 22:27:45,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) done waiting for dependent futures
2022-05-12 22:27:45,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70778880}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 70778880}
2022-05-12 22:27:45,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56098816}) to executor  for transfer request: 0.
2022-05-12 22:27:45,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:45,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) about to wait for the following futures []
2022-05-12 22:27:45,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) done waiting for dependent futures
2022-05-12 22:27:45,326 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56098816}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 56098816}
2022-05-12 22:27:45,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,407 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:27:45,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:45,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:27:45,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:27:45,408 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 23592960}
2022-05-12 22:27:45,408 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:46,447 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:27:46,448 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:46,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:27:46,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:27:46,449 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 23855104}
2022-05-12 22:27:46,449 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:46,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:27:46,920 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:46,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:27:46,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:27:46,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 3932160}
2022-05-12 22:27:46,921 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:47,342 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:27:47,342 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:47,342 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:27:47,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:27:47,343 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 23592960}
2022-05-12 22:27:47,343 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:49,546 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:27:49,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:49,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:27:49,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:27:49,547 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 23592960}
2022-05-12 22:27:49,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:49,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:27:49,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:49,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:27:49,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:27:49,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 15204352}
2022-05-12 22:27:49,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:51,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46137344}) to executor  for transfer request: 0.
2022-05-12 22:27:51,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:51,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) about to wait for the following futures []
2022-05-12 22:27:51,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) done waiting for dependent futures
2022-05-12 22:27:51,102 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46137344}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 46137344}
2022-05-12 22:27:51,103 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:53,123 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:27:53,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:53,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:27:53,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:27:53,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 3932160}
2022-05-12 22:27:53,124 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:54,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56360960}) to executor  for transfer request: 0.
2022-05-12 22:27:54,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:54,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) about to wait for the following futures []
2022-05-12 22:27:54,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) done waiting for dependent futures
2022-05-12 22:27:54,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56360960}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 56360960}
2022-05-12 22:27:54,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:27:55,942 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:27:55,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:27:55,943 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 13107200}
2022-05-12 22:27:55,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,634 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:27:56,634 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:27:56,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:27:56,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 14680064}
2022-05-12 22:27:56,635 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:57,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:27:57,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:57,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:27:57,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:27:57,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 23855104}
2022-05-12 22:27:57,117 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:59,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:27:59,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:59,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:27:59,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:27:59,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 24117248}
2022-05-12 22:27:59,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:00,772 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61603840}) to executor  for transfer request: 0.
2022-05-12 22:28:00,772 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:00,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) about to wait for the following futures []
2022-05-12 22:28:00,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) done waiting for dependent futures
2022-05-12 22:28:00,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61603840}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 61603840}
2022-05-12 22:28:00,773 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:01,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30932992}) to executor  for transfer request: 0.
2022-05-12 22:28:01,942 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:01,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) about to wait for the following futures []
2022-05-12 22:28:01,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) done waiting for dependent futures
2022-05-12 22:28:01,943 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30932992}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 30932992}
2022-05-12 22:28:01,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:02,455 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71041024}) to executor  for transfer request: 0.
2022-05-12 22:28:02,455 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:02,455 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) about to wait for the following futures []
2022-05-12 22:28:02,455 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) done waiting for dependent futures
2022-05-12 22:28:02,455 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71041024}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 71041024}
2022-05-12 22:28:02,456 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:02,688 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:28:02,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:02,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:28:02,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:28:02,689 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 15466496}
2022-05-12 22:28:02,689 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:03,502 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:28:03,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:03,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:28:03,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:28:03,503 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 23855104}
2022-05-12 22:28:03,503 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,593 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56623104}) to executor  for transfer request: 0.
2022-05-12 22:28:05,593 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) about to wait for the following futures []
2022-05-12 22:28:05,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) done waiting for dependent futures
2022-05-12 22:28:05,594 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56623104}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 56623104}
2022-05-12 22:28:05,594 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:06,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:28:06,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:06,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:28:06,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:28:06,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 23855104}
2022-05-12 22:28:06,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:07,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:28:07,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:07,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:28:07,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:28:07,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 24379392}
2022-05-12 22:28:07,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:07,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:28:07,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:07,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:28:07,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:28:07,761 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 14942208}
2022-05-12 22:28:07,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:09,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:28:09,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:09,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:28:09,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:28:09,173 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 24117248}
2022-05-12 22:28:09,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,033 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:28:12,033 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:12,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:28:12,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:28:12,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 15728640}
2022-05-12 22:28:12,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,480 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46399488}) to executor  for transfer request: 0.
2022-05-12 22:28:12,480 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:12,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) about to wait for the following futures []
2022-05-12 22:28:12,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) done waiting for dependent futures
2022-05-12 22:28:12,481 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46399488}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 46399488}
2022-05-12 22:28:12,481 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:14,243 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:28:14,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:14,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:28:14,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:28:14,244 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 13369344}
2022-05-12 22:28:14,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:14,949 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56885248}) to executor  for transfer request: 0.
2022-05-12 22:28:14,949 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:14,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) about to wait for the following futures []
2022-05-12 22:28:14,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) done waiting for dependent futures
2022-05-12 22:28:14,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56885248}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 56885248}
2022-05-12 22:28:14,950 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:15,064 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:28:15,064 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:15,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:28:15,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:28:15,064 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 24641536}
2022-05-12 22:28:15,065 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:15,242 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:28:15,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:15,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:28:15,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:28:15,243 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 24117248}
2022-05-12 22:28:15,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:15,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71303168}) to executor  for transfer request: 0.
2022-05-12 22:28:15,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:15,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) about to wait for the following futures []
2022-05-12 22:28:15,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) done waiting for dependent futures
2022-05-12 22:28:15,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71303168}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 71303168}
2022-05-12 22:28:15,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:15,671 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:28:15,671 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:15,672 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:28:15,672 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:28:15,672 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 4194304}
2022-05-12 22:28:15,672 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,304 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79167488}) to executor  for transfer request: 0.
2022-05-12 22:28:16,304 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) about to wait for the following futures []
2022-05-12 22:28:16,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) done waiting for dependent futures
2022-05-12 22:28:16,305 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79167488}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 79167488}
2022-05-12 22:28:16,305 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:17,261 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:28:17,261 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:17,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:28:17,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:28:17,262 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 24117248}
2022-05-12 22:28:17,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:17,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31195136}) to executor  for transfer request: 0.
2022-05-12 22:28:17,771 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:17,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) about to wait for the following futures []
2022-05-12 22:28:17,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) done waiting for dependent futures
2022-05-12 22:28:17,772 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31195136}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 31195136}
2022-05-12 22:28:17,773 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:18,338 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:28:18,339 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:18,339 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:28:18,339 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:28:18,339 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 15204352}
2022-05-12 22:28:18,339 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:28:19,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:28:19,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:28:19,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 24379392}
2022-05-12 22:28:19,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61865984}) to executor  for transfer request: 0.
2022-05-12 22:28:19,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) about to wait for the following futures []
2022-05-12 22:28:19,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) done waiting for dependent futures
2022-05-12 22:28:19,736 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61865984}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 61865984}
2022-05-12 22:28:19,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,236 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:28:22,236 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:22,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:28:22,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:28:22,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 24903680}
2022-05-12 22:28:22,237 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:23,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36175872}) to executor  for transfer request: 0.
2022-05-12 22:28:23,221 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:23,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) about to wait for the following futures []
2022-05-12 22:28:23,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) done waiting for dependent futures
2022-05-12 22:28:23,221 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36175872}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 36175872}
2022-05-12 22:28:23,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:24,838 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:28:24,838 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:24,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:28:24,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:28:24,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 15990784}
2022-05-12 22:28:24,839 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:26,283 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:28:26,283 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:26,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:28:26,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:28:26,284 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 15466496}
2022-05-12 22:28:26,284 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:27,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57147392}) to executor  for transfer request: 0.
2022-05-12 22:28:27,470 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:27,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) about to wait for the following futures []
2022-05-12 22:28:27,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) done waiting for dependent futures
2022-05-12 22:28:27,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57147392}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 57147392}
2022-05-12 22:28:27,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:27,780 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:28:27,780 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:27,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:28:27,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:28:27,781 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 24379392}
2022-05-12 22:28:27,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:29,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:28:29,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:28:29,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:28:29,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 24641536}
2022-05-12 22:28:29,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:30,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:28:30,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:30,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:28:30,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:28:30,477 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 24379392}
2022-05-12 22:28:30,477 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:30,533 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71565312}) to executor  for transfer request: 0.
2022-05-12 22:28:30,534 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:30,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) about to wait for the following futures []
2022-05-12 22:28:30,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) done waiting for dependent futures
2022-05-12 22:28:30,534 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71565312}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 71565312}
2022-05-12 22:28:30,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:31,023 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:28:31,024 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:31,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:28:31,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:28:31,024 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 4456448}
2022-05-12 22:28:31,025 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:31,405 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:28:31,405 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:31,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:28:31,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:28:31,406 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 13631488}
2022-05-12 22:28:31,406 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:31,652 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:28:31,652 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:31,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:28:31,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:28:31,653 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 4194304}
2022-05-12 22:28:31,653 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,284 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:28:34,285 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:28:34,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:28:34,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 15728640}
2022-05-12 22:28:34,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46661632}) to executor  for transfer request: 0.
2022-05-12 22:28:34,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) about to wait for the following futures []
2022-05-12 22:28:34,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) done waiting for dependent futures
2022-05-12 22:28:34,326 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46661632}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 46661632}
2022-05-12 22:28:34,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62128128}) to executor  for transfer request: 0.
2022-05-12 22:28:35,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) about to wait for the following futures []
2022-05-12 22:28:35,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) done waiting for dependent futures
2022-05-12 22:28:35,926 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62128128}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 62128128}
2022-05-12 22:28:35,927 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:37,415 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:28:37,416 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:37,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:28:37,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:28:37,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 16252928}
2022-05-12 22:28:37,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:37,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31457280}) to executor  for transfer request: 0.
2022-05-12 22:28:37,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:37,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) about to wait for the following futures []
2022-05-12 22:28:37,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) done waiting for dependent futures
2022-05-12 22:28:37,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31457280}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 31457280}
2022-05-12 22:28:37,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:37,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:28:37,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:37,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:28:37,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:28:37,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 24641536}
2022-05-12 22:28:37,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:38,717 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:28:38,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:38,717 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:38,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:28:38,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:28:38,717 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 24903680}
2022-05-12 22:28:38,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:38,922 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:28:38,922 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:38,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:28:38,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:28:38,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 4456448}
2022-05-12 22:28:38,923 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:38,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71827456}) to executor  for transfer request: 0.
2022-05-12 22:28:38,971 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:38,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) about to wait for the following futures []
2022-05-12 22:28:38,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) done waiting for dependent futures
2022-05-12 22:28:38,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71827456}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 71827456}
2022-05-12 22:28:38,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,206 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57409536}) to executor  for transfer request: 0.
2022-05-12 22:28:40,206 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) about to wait for the following futures []
2022-05-12 22:28:40,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) done waiting for dependent futures
2022-05-12 22:28:40,207 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57409536}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 57409536}
2022-05-12 22:28:40,207 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:41,605 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:28:41,605 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:41,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:28:41,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:28:41,606 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 24641536}
2022-05-12 22:28:41,606 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:46,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79429632}) to executor  for transfer request: 0.
2022-05-12 22:28:46,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:46,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) about to wait for the following futures []
2022-05-12 22:28:46,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) done waiting for dependent futures
2022-05-12 22:28:46,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79429632}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 79429632}
2022-05-12 22:28:46,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:46,622 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:28:46,622 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:46,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:28:46,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:28:46,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 15990784}
2022-05-12 22:28:46,623 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:47,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:28:47,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:47,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:28:47,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:28:47,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 13893632}
2022-05-12 22:28:47,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:47,319 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:28:47,319 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:47,319 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:47,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:28:47,320 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:28:47,320 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 16515072}
2022-05-12 22:28:47,320 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,127 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:28:48,128 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:48,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:28:48,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:28:48,128 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 4718592}
2022-05-12 22:28:48,129 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,258 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:28:48,258 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:48,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:28:48,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:28:48,259 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 2359296}
2022-05-12 22:28:48,259 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:49,211 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:28:49,211 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:49,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:49,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:28:49,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:28:49,212 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 24903680}
2022-05-12 22:28:49,212 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:49,425 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57671680}) to executor  for transfer request: 0.
2022-05-12 22:28:49,425 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:49,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) about to wait for the following futures []
2022-05-12 22:28:49,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) done waiting for dependent futures
2022-05-12 22:28:49,426 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57671680}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 57671680}
2022-05-12 22:28:49,426 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:49,669 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72089600}) to executor  for transfer request: 0.
2022-05-12 22:28:49,670 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:49,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) about to wait for the following futures []
2022-05-12 22:28:49,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) done waiting for dependent futures
2022-05-12 22:28:49,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72089600}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 72089600}
2022-05-12 22:28:49,671 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:52,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:28:52,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:52,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:28:52,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:28:52,283 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 4718592}
2022-05-12 22:28:52,284 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,747 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:28:53,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:53,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,747 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) about to wait for the following futures []
2022-05-12 22:28:53,748 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) done waiting for dependent futures
2022-05-12 22:28:53,748 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=83886080-92274687'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 83886080, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:28:53,748 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:53,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:28:53,749 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:53,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:28:53,749 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:53,749 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 24903680}
2022-05-12 22:28:53,750 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:53,750 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:53,751 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:53,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,751 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:28:53,751 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:28:53,752 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:53,752 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:53,752 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=83886080-92274687', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:28:53,752 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:53,752 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:28:53,753 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:53,753 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:53,753 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:28:53,753 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:28:53,753 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:28:53,753 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:28:53,754 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:28:53,754 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=83886080-92274687
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222853Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:28:53,754 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222853Z
20220512/eu-central-1/s3/aws4_request
b19ad927e8c41809cf1adb556aebffa85ca467f2ae1d02979e9773086afab4fd
2022-05-12 22:28:53,754 botocore.auth DEBUG    Signature:
5d8094d3978fc263cdb6d5f8760e36d385af7384176987355c193fd8b6598c49
2022-05-12 22:28:53,754 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:53,754 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:53,754 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:28:53,754 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:28:53,991 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:28:53,991 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'WjXJtdT3FqbqvGpQ9+AP1P3JRdkcTQXF/NURp3CL+Us6lVdC05TywUQ1YMUXGkBM+i/dYEZHxD0=', 'x-amz-request-id': '05KVBD083V7NXYE8', 'Date': 'Thu, 12 May 2022 22:28:54 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 83886080-92274687/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:28:53,991 botocore.parsers DEBUG    Response body:

2022-05-12 22:28:53,991 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:28:53,992 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:28:53,992 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:28:55,832 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:28:55,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:55,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:28:55,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:28:55,832 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 16252928}
2022-05-12 22:28:55,833 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,438 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57933824}) to executor  for transfer request: 0.
2022-05-12 22:28:57,439 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) about to wait for the following futures []
2022-05-12 22:28:57,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) done waiting for dependent futures
2022-05-12 22:28:57,439 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57933824}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 57933824}
2022-05-12 22:28:57,440 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:58,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62390272}) to executor  for transfer request: 0.
2022-05-12 22:28:58,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:58,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) about to wait for the following futures []
2022-05-12 22:28:58,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) done waiting for dependent futures
2022-05-12 22:28:58,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62390272}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 62390272}
2022-05-12 22:28:58,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:58,246 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31719424}) to executor  for transfer request: 0.
2022-05-12 22:28:58,247 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:58,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) about to wait for the following futures []
2022-05-12 22:28:58,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) done waiting for dependent futures
2022-05-12 22:28:58,248 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31719424}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 31719424}
2022-05-12 22:28:58,248 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:01,032 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46923776}) to executor  for transfer request: 0.
2022-05-12 22:29:01,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:01,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) about to wait for the following futures []
2022-05-12 22:29:01,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) done waiting for dependent futures
2022-05-12 22:29:01,033 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46923776}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 46923776}
2022-05-12 22:29:01,033 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:01,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:29:01,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:01,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:29:01,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:29:01,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 4980736}
2022-05-12 22:29:01,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,128 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72351744}) to executor  for transfer request: 0.
2022-05-12 22:29:02,128 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:02,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) about to wait for the following futures []
2022-05-12 22:29:02,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) done waiting for dependent futures
2022-05-12 22:29:02,129 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72351744}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 72351744}
2022-05-12 22:29:02,129 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:29:02,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:02,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:29:02,376 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) about to wait for the following futures []
2022-05-12 22:29:02,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:29:02,376 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) done waiting for dependent futures
2022-05-12 22:29:02,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 16515072}
2022-05-12 22:29:02,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,377 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=92274688-100663295'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 92274688, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:02,377 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:02,377 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:02,377 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:02,377 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:02,377 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:02,377 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:02,377 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:02,378 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:29:02,378 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:02,378 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:02,378 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=92274688-100663295', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:02,378 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:02,378 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:02,378 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:02,378 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:02,378 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:02,378 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:02,378 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:29:02,378 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:29:02,378 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:02,378 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=92274688-100663295
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222902Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:02,378 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222902Z
20220512/eu-central-1/s3/aws4_request
5fabbc50c33f2161d52a246753a54c49c84ff91a9847bb33790b439789fe7a8b
2022-05-12 22:29:02,378 botocore.auth DEBUG    Signature:
c6c508866a5ac5a6f15091f691f0d6c75bed5755773131d7488d95442cd1b0a9
2022-05-12 22:29:02,378 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:02,378 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:02,378 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:02,379 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:02,563 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:02,564 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'IyhuEzKTNnHh45ZMbUycDp9zXXOCUlXRmCPLodft/KBQlxc9eeH8nBd9TM5/G6lFOJuIXU7V1vE=', 'x-amz-request-id': 'DAGRHSG9R6PDJVBB', 'Date': 'Thu, 12 May 2022 22:29:03 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 92274688-100663295/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:02,564 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:02,564 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:02,564 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:02,564 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:03,279 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83886080}) to executor  for transfer request: 0.
2022-05-12 22:29:03,279 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:03,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) about to wait for the following futures []
2022-05-12 22:29:03,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) done waiting for dependent futures
2022-05-12 22:29:03,280 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83886080}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 83886080}
2022-05-12 22:29:03,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:04,362 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58195968}) to executor  for transfer request: 0.
2022-05-12 22:29:04,362 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:04,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) about to wait for the following futures []
2022-05-12 22:29:04,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) done waiting for dependent futures
2022-05-12 22:29:04,363 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58195968}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 58195968}
2022-05-12 22:29:04,363 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:06,249 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:29:06,249 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:06,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:29:06,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:29:06,250 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 4980736}
2022-05-12 22:29:06,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:06,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:29:06,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:06,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:29:06,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:29:06,736 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 2621440}
2022-05-12 22:29:06,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:29:09,991 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:29:09,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:29:09,991 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 262144}
2022-05-12 22:29:09,992 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:10,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:29:10,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:10,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:29:10,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:29:10,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 14155776}
2022-05-12 22:29:10,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:10,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36438016}) to executor  for transfer request: 0.
2022-05-12 22:29:10,317 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:10,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) about to wait for the following futures []
2022-05-12 22:29:10,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) done waiting for dependent futures
2022-05-12 22:29:10,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36438016}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 36438016}
2022-05-12 22:29:10,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:12,437 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:29:12,437 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:12,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:29:12,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:29:12,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 5242880}
2022-05-12 22:29:12,438 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,018 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92274688}) to executor  for transfer request: 0.
2022-05-12 22:29:14,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) about to wait for the following futures []
2022-05-12 22:29:14,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) done waiting for dependent futures
2022-05-12 22:29:14,019 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92274688}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 92274688}
2022-05-12 22:29:14,019 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,211 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58458112}) to executor  for transfer request: 0.
2022-05-12 22:29:14,211 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,211 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) about to wait for the following futures []
2022-05-12 22:29:14,211 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) about to wait for the following futures []
2022-05-12 22:29:14,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) done waiting for dependent futures
2022-05-12 22:29:14,212 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) done waiting for dependent futures
2022-05-12 22:29:14,212 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58458112}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 58458112}
2022-05-12 22:29:14,212 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=100663296-109051903'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 100663296, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:14,213 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:14,213 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:14,213 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,213 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:14,213 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:14,213 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:14,214 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:14,214 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:14,214 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:29:14,214 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:14,214 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:14,214 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=100663296-109051903', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:14,214 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:14,214 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:14,214 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:14,214 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:14,214 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:14,215 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:14,215 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:29:14,215 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:29:14,215 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:14,215 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=100663296-109051903
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222914Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:14,215 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222914Z
20220512/eu-central-1/s3/aws4_request
c716aaf23216927e22878224fa68297aeab4cc2fd947e1f3d8b8d07147e07ff9
2022-05-12 22:29:14,215 botocore.auth DEBUG    Signature:
01bb600f004b9bcf309a1d03d787b3e0bfa91fb62862c43e8ce9bfdd957c8ffd
2022-05-12 22:29:14,215 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:14,215 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:14,216 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:14,216 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:14,407 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:14,407 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Smnz6HVTJ51+2mfIcxmVB+vqc+tMR9eF4+kEl7hgT84R3fE+kagCvLZanIVoA4a8z4F7HO5j4Ns=', 'x-amz-request-id': 'MABVBEH0QAKJCNWN', 'Date': 'Thu, 12 May 2022 22:29:15 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 100663296-109051903/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:14,407 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:14,408 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:14,408 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:14,408 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:14,859 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84148224}) to executor  for transfer request: 0.
2022-05-12 22:29:14,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) about to wait for the following futures []
2022-05-12 22:29:14,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) done waiting for dependent futures
2022-05-12 22:29:14,860 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84148224}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 84148224}
2022-05-12 22:29:14,860 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72613888}) to executor  for transfer request: 0.
2022-05-12 22:29:15,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) about to wait for the following futures []
2022-05-12 22:29:15,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) done waiting for dependent futures
2022-05-12 22:29:15,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72613888}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 72613888}
2022-05-12 22:29:15,117 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79691776}) to executor  for transfer request: 0.
2022-05-12 22:29:15,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) about to wait for the following futures []
2022-05-12 22:29:15,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) done waiting for dependent futures
2022-05-12 22:29:15,127 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79691776}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 79691776}
2022-05-12 22:29:15,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:17,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62652416}) to executor  for transfer request: 0.
2022-05-12 22:29:17,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:17,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) about to wait for the following futures []
2022-05-12 22:29:17,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) done waiting for dependent futures
2022-05-12 22:29:17,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62652416}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 62652416}
2022-05-12 22:29:17,139 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:17,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31981568}) to executor  for transfer request: 0.
2022-05-12 22:29:17,663 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:17,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) about to wait for the following futures []
2022-05-12 22:29:17,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) done waiting for dependent futures
2022-05-12 22:29:17,664 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31981568}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 31981568}
2022-05-12 22:29:17,664 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:18,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:29:18,933 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:18,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:29:18,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:29:18,933 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 2883584}
2022-05-12 22:29:18,934 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:18,962 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:29:18,963 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:18,963 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:29:18,963 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:29:18,963 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 5505024}
2022-05-12 22:29:18,964 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:19,658 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100663296}) to executor  for transfer request: 0.
2022-05-12 22:29:19,659 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:19,659 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) about to wait for the following futures []
2022-05-12 22:29:19,659 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) done waiting for dependent futures
2022-05-12 22:29:19,659 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100663296}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 100663296}
2022-05-12 22:29:19,660 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:23,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47185920}) to executor  for transfer request: 0.
2022-05-12 22:29:23,026 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:23,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) about to wait for the following futures []
2022-05-12 22:29:23,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) done waiting for dependent futures
2022-05-12 22:29:23,027 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47185920}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 47185920}
2022-05-12 22:29:23,027 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:23,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:29:23,564 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:23,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:29:23,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:29:23,565 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 5242880}
2022-05-12 22:29:23,565 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:24,932 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100925440}) to executor  for transfer request: 0.
2022-05-12 22:29:24,932 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:24,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) about to wait for the following futures []
2022-05-12 22:29:24,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) done waiting for dependent futures
2022-05-12 22:29:24,932 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100925440}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 100925440}
2022-05-12 22:29:24,933 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:25,081 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72876032}) to executor  for transfer request: 0.
2022-05-12 22:29:25,081 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:25,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) about to wait for the following futures []
2022-05-12 22:29:25,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) done waiting for dependent futures
2022-05-12 22:29:25,081 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72876032}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 72876032}
2022-05-12 22:29:25,082 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:25,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92536832}) to executor  for transfer request: 0.
2022-05-12 22:29:25,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:25,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) about to wait for the following futures []
2022-05-12 22:29:25,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) done waiting for dependent futures
2022-05-12 22:29:25,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92536832}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 92536832}
2022-05-12 22:29:25,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:26,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:29:26,105 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:26,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:29:26,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:29:26,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 14417920}
2022-05-12 22:29:26,106 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84410368}) to executor  for transfer request: 0.
2022-05-12 22:29:27,043 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:27,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) about to wait for the following futures []
2022-05-12 22:29:27,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) done waiting for dependent futures
2022-05-12 22:29:27,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84410368}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 84410368}
2022-05-12 22:29:27,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:29,777 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:29:29,777 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:29,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:29:29,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:29:29,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 5767168}
2022-05-12 22:29:29,778 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:34,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:29:34,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:34,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:29:34,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:29:34,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 3145728}
2022-05-12 22:29:34,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:34,420 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92798976}) to executor  for transfer request: 0.
2022-05-12 22:29:34,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:34,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) about to wait for the following futures []
2022-05-12 22:29:34,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) done waiting for dependent futures
2022-05-12 22:29:34,421 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92798976}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 92798976}
2022-05-12 22:29:34,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:36,551 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73138176}) to executor  for transfer request: 0.
2022-05-12 22:29:36,552 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:36,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) about to wait for the following futures []
2022-05-12 22:29:36,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) done waiting for dependent futures
2022-05-12 22:29:36,552 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73138176}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 73138176}
2022-05-12 22:29:36,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:36,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:29:36,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:36,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:29:36,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:29:36,568 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 6029312}
2022-05-12 22:29:36,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:36,851 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84672512}) to executor  for transfer request: 0.
2022-05-12 22:29:36,851 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:36,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) about to wait for the following futures []
2022-05-12 22:29:36,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) done waiting for dependent futures
2022-05-12 22:29:36,852 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84672512}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 84672512}
2022-05-12 22:29:36,852 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32243712}) to executor  for transfer request: 0.
2022-05-12 22:29:37,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) about to wait for the following futures []
2022-05-12 22:29:37,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) done waiting for dependent futures
2022-05-12 22:29:37,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32243712}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 32243712}
2022-05-12 22:29:37,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:38,788 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79953920}) to executor  for transfer request: 0.
2022-05-12 22:29:38,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:38,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) about to wait for the following futures []
2022-05-12 22:29:38,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) done waiting for dependent futures
2022-05-12 22:29:38,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79953920}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 79953920}
2022-05-12 22:29:38,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:39,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62914560}) to executor  for transfer request: 0.
2022-05-12 22:29:39,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:39,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) about to wait for the following futures []
2022-05-12 22:29:39,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) done waiting for dependent futures
2022-05-12 22:29:39,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62914560}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 62914560}
2022-05-12 22:29:39,375 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:40,312 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101187584}) to executor  for transfer request: 0.
2022-05-12 22:29:40,312 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:40,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) about to wait for the following futures []
2022-05-12 22:29:40,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) done waiting for dependent futures
2022-05-12 22:29:40,312 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101187584}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 101187584}
2022-05-12 22:29:40,313 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:40,964 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:29:40,964 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:40,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:29:40,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:29:40,964 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 5505024}
2022-05-12 22:29:40,964 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:43,434 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93061120}) to executor  for transfer request: 0.
2022-05-12 22:29:43,434 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:43,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) about to wait for the following futures []
2022-05-12 22:29:43,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) done waiting for dependent futures
2022-05-12 22:29:43,435 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93061120}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 93061120}
2022-05-12 22:29:43,435 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:44,510 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:29:44,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:44,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:29:44,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:29:44,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 524288}
2022-05-12 22:29:44,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:45,058 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:29:45,058 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:45,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:29:45,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:29:45,059 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 6291456}
2022-05-12 22:29:45,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:45,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84934656}) to executor  for transfer request: 0.
2022-05-12 22:29:45,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:45,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) about to wait for the following futures []
2022-05-12 22:29:45,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) done waiting for dependent futures
2022-05-12 22:29:45,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84934656}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 84934656}
2022-05-12 22:29:45,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:46,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:29:46,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:46,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:29:46,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:29:46,477 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 14680064}
2022-05-12 22:29:46,477 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:46,663 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47448064}) to executor  for transfer request: 0.
2022-05-12 22:29:46,663 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:46,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) about to wait for the following futures []
2022-05-12 22:29:46,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) done waiting for dependent futures
2022-05-12 22:29:46,664 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47448064}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 47448064}
2022-05-12 22:29:46,664 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:46,690 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73400320}) to executor  for transfer request: 0.
2022-05-12 22:29:46,690 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:46,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) about to wait for the following futures []
2022-05-12 22:29:46,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) done waiting for dependent futures
2022-05-12 22:29:46,690 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73400320}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 73400320}
2022-05-12 22:29:46,691 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:47,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:29:47,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:47,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:29:47,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:29:47,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 3407872}
2022-05-12 22:29:47,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63176704}) to executor  for transfer request: 0.
2022-05-12 22:29:51,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) about to wait for the following futures []
2022-05-12 22:29:51,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) done waiting for dependent futures
2022-05-12 22:29:51,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63176704}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 63176704}
2022-05-12 22:29:51,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,984 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93323264}) to executor  for transfer request: 0.
2022-05-12 22:29:51,985 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) about to wait for the following futures []
2022-05-12 22:29:51,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) done waiting for dependent futures
2022-05-12 22:29:51,985 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93323264}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 93323264}
2022-05-12 22:29:51,986 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:52,264 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101449728}) to executor  for transfer request: 0.
2022-05-12 22:29:52,264 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:52,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) about to wait for the following futures []
2022-05-12 22:29:52,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) done waiting for dependent futures
2022-05-12 22:29:52,265 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101449728}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 101449728}
2022-05-12 22:29:52,265 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:53,316 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:29:53,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:53,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:29:53,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:29:53,317 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 5767168}
2022-05-12 22:29:53,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:54,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:29:54,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:54,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:29:54,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:29:54,701 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 6553600}
2022-05-12 22:29:54,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,089 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36700160}) to executor  for transfer request: 0.
2022-05-12 22:29:55,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:55,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) about to wait for the following futures []
2022-05-12 22:29:55,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) done waiting for dependent futures
2022-05-12 22:29:55,090 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36700160}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 36700160}
2022-05-12 22:29:55,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,598 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85196800}) to executor  for transfer request: 0.
2022-05-12 22:29:55,598 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:55,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) about to wait for the following futures []
2022-05-12 22:29:55,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) done waiting for dependent futures
2022-05-12 22:29:55,598 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85196800}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 85196800}
2022-05-12 22:29:55,599 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73662464}) to executor  for transfer request: 0.
2022-05-12 22:29:55,922 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:55,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) about to wait for the following futures []
2022-05-12 22:29:55,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) done waiting for dependent futures
2022-05-12 22:29:55,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73662464}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 73662464}
2022-05-12 22:29:55,923 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:56,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32505856}) to executor  for transfer request: 0.
2022-05-12 22:29:56,986 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:56,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) about to wait for the following futures []
2022-05-12 22:29:56,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) done waiting for dependent futures
2022-05-12 22:29:56,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32505856}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 32505856}
2022-05-12 22:29:56,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:59,994 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:29:59,995 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:59,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:29:59,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:29:59,995 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 14942208}
2022-05-12 22:29:59,996 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,854 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93585408}) to executor  for transfer request: 0.
2022-05-12 22:30:00,854 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) about to wait for the following futures []
2022-05-12 22:30:00,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) done waiting for dependent futures
2022-05-12 22:30:00,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93585408}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 93585408}
2022-05-12 22:30:00,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,973 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47710208}) to executor  for transfer request: 0.
2022-05-12 22:30:00,973 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) about to wait for the following futures []
2022-05-12 22:30:00,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) done waiting for dependent futures
2022-05-12 22:30:00,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47710208}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 47710208}
2022-05-12 22:30:00,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101711872}) to executor  for transfer request: 0.
2022-05-12 22:30:00,999 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) about to wait for the following futures []
2022-05-12 22:30:00,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) done waiting for dependent futures
2022-05-12 22:30:01,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101711872}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 101711872}
2022-05-12 22:30:01,000 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,319 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:30:02,319 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:30:02,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:30:02,320 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 6815744}
2022-05-12 22:30:02,320 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,716 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:30:02,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:30:02,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:30:02,717 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 3670016}
2022-05-12 22:30:02,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,762 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:30:02,762 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:30:02,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:30:02,763 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 786432}
2022-05-12 22:30:02,763 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,936 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80216064}) to executor  for transfer request: 0.
2022-05-12 22:30:02,936 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,937 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) about to wait for the following futures []
2022-05-12 22:30:02,937 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) done waiting for dependent futures
2022-05-12 22:30:02,937 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80216064}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 80216064}
2022-05-12 22:30:02,937 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:04,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85458944}) to executor  for transfer request: 0.
2022-05-12 22:30:04,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:04,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) about to wait for the following futures []
2022-05-12 22:30:04,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) done waiting for dependent futures
2022-05-12 22:30:04,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85458944}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 85458944}
2022-05-12 22:30:04,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:04,795 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:30:04,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:04,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:30:04,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:30:04,795 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 6029312}
2022-05-12 22:30:04,795 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:08,389 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101974016}) to executor  for transfer request: 0.
2022-05-12 22:30:08,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:08,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) about to wait for the following futures []
2022-05-12 22:30:08,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) done waiting for dependent futures
2022-05-12 22:30:08,390 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101974016}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 101974016}
2022-05-12 22:30:08,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:08,530 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32768000}) to executor  for transfer request: 0.
2022-05-12 22:30:08,531 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:08,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) about to wait for the following futures []
2022-05-12 22:30:08,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) done waiting for dependent futures
2022-05-12 22:30:08,531 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32768000}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 32768000}
2022-05-12 22:30:08,531 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:08,777 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63438848}) to executor  for transfer request: 0.
2022-05-12 22:30:08,778 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:08,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) about to wait for the following futures []
2022-05-12 22:30:08,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) done waiting for dependent futures
2022-05-12 22:30:08,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63438848}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 63438848}
2022-05-12 22:30:08,779 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:10,416 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73924608}) to executor  for transfer request: 0.
2022-05-12 22:30:10,416 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:10,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) about to wait for the following futures []
2022-05-12 22:30:10,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) done waiting for dependent futures
2022-05-12 22:30:10,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73924608}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 73924608}
2022-05-12 22:30:10,417 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:10,854 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93847552}) to executor  for transfer request: 0.
2022-05-12 22:30:10,854 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:10,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) about to wait for the following futures []
2022-05-12 22:30:10,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) done waiting for dependent futures
2022-05-12 22:30:10,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93847552}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 93847552}
2022-05-12 22:30:10,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:30:13,514 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:30:13,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:30:13,515 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 7077888}
2022-05-12 22:30:13,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:14,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47972352}) to executor  for transfer request: 0.
2022-05-12 22:30:14,994 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:14,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) about to wait for the following futures []
2022-05-12 22:30:14,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) done waiting for dependent futures
2022-05-12 22:30:14,994 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47972352}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 47972352}
2022-05-12 22:30:14,995 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:15,262 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:30:15,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:15,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:30:15,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:30:15,263 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 15204352}
2022-05-12 22:30:15,263 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:16,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85721088}) to executor  for transfer request: 0.
2022-05-12 22:30:16,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:16,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) about to wait for the following futures []
2022-05-12 22:30:16,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) done waiting for dependent futures
2022-05-12 22:30:16,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85721088}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 85721088}
2022-05-12 22:30:16,562 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:17,391 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:30:17,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:17,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:30:17,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:30:17,392 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 1048576}
2022-05-12 22:30:17,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:18,571 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102236160}) to executor  for transfer request: 0.
2022-05-12 22:30:18,571 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:18,571 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) about to wait for the following futures []
2022-05-12 22:30:18,571 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) done waiting for dependent futures
2022-05-12 22:30:18,572 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102236160}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 102236160}
2022-05-12 22:30:18,572 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:19,018 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:30:19,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:19,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:30:19,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:30:19,019 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 7340032}
2022-05-12 22:30:19,019 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:30:20,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:30:20,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:30:20,360 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 6291456}
2022-05-12 22:30:20,360 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94109696}) to executor  for transfer request: 0.
2022-05-12 22:30:20,397 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) about to wait for the following futures []
2022-05-12 22:30:20,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) done waiting for dependent futures
2022-05-12 22:30:20,397 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94109696}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 94109696}
2022-05-12 22:30:20,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,531 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:30:20,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:30:20,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:30:20,532 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 3932160}
2022-05-12 22:30:20,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:21,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74186752}) to executor  for transfer request: 0.
2022-05-12 22:30:21,024 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:21,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) about to wait for the following futures []
2022-05-12 22:30:21,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) done waiting for dependent futures
2022-05-12 22:30:21,024 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74186752}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 74186752}
2022-05-12 22:30:21,025 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:21,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33030144}) to executor  for transfer request: 0.
2022-05-12 22:30:21,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:21,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) about to wait for the following futures []
2022-05-12 22:30:21,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) done waiting for dependent futures
2022-05-12 22:30:21,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33030144}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 33030144}
2022-05-12 22:30:21,516 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,319 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:30:24,319 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,320 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:30:24,320 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:30:24,320 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 7602176}
2022-05-12 22:30:24,320 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,324 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48234496}) to executor  for transfer request: 0.
2022-05-12 22:30:26,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) about to wait for the following futures []
2022-05-12 22:30:26,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) done waiting for dependent futures
2022-05-12 22:30:26,325 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48234496}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 48234496}
2022-05-12 22:30:26,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,391 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63700992}) to executor  for transfer request: 0.
2022-05-12 22:30:26,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) about to wait for the following futures []
2022-05-12 22:30:26,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) done waiting for dependent futures
2022-05-12 22:30:26,392 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63700992}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 63700992}
2022-05-12 22:30:26,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94371840}) to executor  for transfer request: 0.
2022-05-12 22:30:26,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) about to wait for the following futures []
2022-05-12 22:30:26,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) done waiting for dependent futures
2022-05-12 22:30:26,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94371840}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 94371840}
2022-05-12 22:30:26,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,794 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85983232}) to executor  for transfer request: 0.
2022-05-12 22:30:26,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) about to wait for the following futures []
2022-05-12 22:30:26,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) done waiting for dependent futures
2022-05-12 22:30:26,795 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85983232}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 85983232}
2022-05-12 22:30:26,796 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:28,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102498304}) to executor  for transfer request: 0.
2022-05-12 22:30:28,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:28,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) about to wait for the following futures []
2022-05-12 22:30:28,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) done waiting for dependent futures
2022-05-12 22:30:28,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102498304}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 102498304}
2022-05-12 22:30:28,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:30,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80478208}) to executor  for transfer request: 0.
2022-05-12 22:30:30,841 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:30,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) about to wait for the following futures []
2022-05-12 22:30:30,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) done waiting for dependent futures
2022-05-12 22:30:30,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80478208}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 80478208}
2022-05-12 22:30:30,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:32,946 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36962304}) to executor  for transfer request: 0.
2022-05-12 22:30:32,946 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:32,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) about to wait for the following futures []
2022-05-12 22:30:32,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) done waiting for dependent futures
2022-05-12 22:30:32,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36962304}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 36962304}
2022-05-12 22:30:32,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:33,740 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:30:33,740 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:33,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:30:33,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:30:33,741 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 7864320}
2022-05-12 22:30:33,741 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:34,932 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74448896}) to executor  for transfer request: 0.
2022-05-12 22:30:34,932 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:34,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) about to wait for the following futures []
2022-05-12 22:30:34,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) done waiting for dependent futures
2022-05-12 22:30:34,933 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74448896}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 74448896}
2022-05-12 22:30:34,933 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:35,813 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33292288}) to executor  for transfer request: 0.
2022-05-12 22:30:35,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:35,814 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:35,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) about to wait for the following futures []
2022-05-12 22:30:35,814 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) about to wait for the following futures []
2022-05-12 22:30:35,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) done waiting for dependent futures
2022-05-12 22:30:35,814 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) done waiting for dependent futures
2022-05-12 22:30:35,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33292288}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 33292288}
2022-05-12 22:30:35,814 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=109051904-117440511'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 109051904, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:35,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:30:35,815 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:35,815 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=109051904-117440511', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:30:35,815 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:30:35,816 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:30:35,816 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:30:35,816 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:30:35,816 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=109051904-117440511
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223035Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:30:35,816 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223035Z
20220512/eu-central-1/s3/aws4_request
280ab691e68970985e4d47123b3ac76cfe5b2bf0793f62dea16e43877d17318b
2022-05-12 22:30:35,816 botocore.auth DEBUG    Signature:
797098df5df3062a24bc5b0b57e3176fe0d9211d36745345d969f60e34fa1f3d
2022-05-12 22:30:35,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:35,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:35,816 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:30:35,816 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:30:35,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102760448}) to executor  for transfer request: 0.
2022-05-12 22:30:35,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:35,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) about to wait for the following futures []
2022-05-12 22:30:35,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) done waiting for dependent futures
2022-05-12 22:30:35,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102760448}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 102760448}
2022-05-12 22:30:35,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,002 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:30:36,003 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'zvVLcVY7WZUzePwB1HtdZlEGOmzZhq1vjfmiT3p4cEXldIQhA3dnGUs3GLIp8P5jZPwVTRmoAs4=', 'x-amz-request-id': 'CNRJ8SSW2N07Q98S', 'Date': 'Thu, 12 May 2022 22:30:36 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 109051904-117440511/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:30:36,003 botocore.parsers DEBUG    Response body:

2022-05-12 22:30:36,003 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:30:36,003 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:30:36,003 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:30:36,215 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94633984}) to executor  for transfer request: 0.
2022-05-12 22:30:36,215 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) about to wait for the following futures []
2022-05-12 22:30:36,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) done waiting for dependent futures
2022-05-12 22:30:36,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94633984}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 94633984}
2022-05-12 22:30:36,216 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86245376}) to executor  for transfer request: 0.
2022-05-12 22:30:36,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) about to wait for the following futures []
2022-05-12 22:30:36,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) done waiting for dependent futures
2022-05-12 22:30:36,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86245376}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 86245376}
2022-05-12 22:30:36,516 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:37,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:30:37,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:37,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:30:37,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:30:37,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 1310720}
2022-05-12 22:30:37,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,043 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:30:39,043 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:30:39,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:30:39,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 4194304}
2022-05-12 22:30:39,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,212 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:30:39,212 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:30:39,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:30:39,213 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 6553600}
2022-05-12 22:30:39,213 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:40,120 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:30:40,120 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:40,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:30:40,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:30:40,121 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 15466496}
2022-05-12 22:30:40,122 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:40,727 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94896128}) to executor  for transfer request: 0.
2022-05-12 22:30:40,727 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:40,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) about to wait for the following futures []
2022-05-12 22:30:40,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) done waiting for dependent futures
2022-05-12 22:30:40,728 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94896128}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 94896128}
2022-05-12 22:30:40,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:41,863 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:30:41,863 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:41,863 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:41,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:30:41,863 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) about to wait for the following futures []
2022-05-12 22:30:41,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:30:41,864 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) done waiting for dependent futures
2022-05-12 22:30:41,864 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 8126464}
2022-05-12 22:30:41,864 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=117440512-125829119'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 117440512, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:30:41,865 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:41,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:41,865 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:41,865 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:41,865 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:41,865 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:41,866 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:41,866 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:30:41,866 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:30:41,866 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:41,866 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:41,866 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=117440512-125829119', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:30:41,866 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:41,866 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:30:41,866 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:41,866 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:41,867 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:30:41,867 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:30:41,867 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:30:41,867 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:30:41,867 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:30:41,867 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=117440512-125829119
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223041Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:30:41,867 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223041Z
20220512/eu-central-1/s3/aws4_request
698d46fcd680c92db2d35f07365a43186d06ebfd27e35983a8086c15d148b4ad
2022-05-12 22:30:41,867 botocore.auth DEBUG    Signature:
022140616ed75b793c1c2dd762ed6bab351e3ddebff6685c66d33ade2c5a49dc
2022-05-12 22:30:41,868 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:41,868 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:41,868 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:30:41,868 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:30:41,868 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:30:41,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63963136}) to executor  for transfer request: 0.
2022-05-12 22:30:41,885 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:41,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) about to wait for the following futures []
2022-05-12 22:30:41,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) done waiting for dependent futures
2022-05-12 22:30:41,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63963136}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 63963136}
2022-05-12 22:30:41,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:42,091 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74711040}) to executor  for transfer request: 0.
2022-05-12 22:30:42,091 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:42,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) about to wait for the following futures []
2022-05-12 22:30:42,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) done waiting for dependent futures
2022-05-12 22:30:42,091 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74711040}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 74711040}
2022-05-12 22:30:42,092 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:42,951 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:30:42,952 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'IllX+k90KThMxygPrWzu0KWq5i9ORxe/E6Eiz8FfT3F3VM2To9keE2jJPsqq68Sc1nD1FNlFtKo=', 'x-amz-request-id': '7ZCTMFD5HRR81C6R', 'Date': 'Thu, 12 May 2022 22:30:43 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 117440512-125829119/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:30:42,952 botocore.parsers DEBUG    Response body:

2022-05-12 22:30:42,953 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:30:42,953 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:30:42,953 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:30:43,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109051904}) to executor  for transfer request: 0.
2022-05-12 22:30:43,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) about to wait for the following futures []
2022-05-12 22:30:43,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) done waiting for dependent futures
2022-05-12 22:30:43,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109051904}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 109051904}
2022-05-12 22:30:43,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:46,533 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48496640}) to executor  for transfer request: 0.
2022-05-12 22:30:46,534 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:46,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) about to wait for the following futures []
2022-05-12 22:30:46,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) done waiting for dependent futures
2022-05-12 22:30:46,535 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48496640}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 48496640}
2022-05-12 22:30:46,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:47,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103022592}) to executor  for transfer request: 0.
2022-05-12 22:30:47,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:47,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) about to wait for the following futures []
2022-05-12 22:30:47,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) done waiting for dependent futures
2022-05-12 22:30:47,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103022592}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 103022592}
2022-05-12 22:30:47,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:47,570 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74973184}) to executor  for transfer request: 0.
2022-05-12 22:30:47,570 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:47,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) about to wait for the following futures []
2022-05-12 22:30:47,571 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) done waiting for dependent futures
2022-05-12 22:30:47,571 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74973184}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 74973184}
2022-05-12 22:30:47,571 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:48,977 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86507520}) to executor  for transfer request: 0.
2022-05-12 22:30:48,977 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:48,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) about to wait for the following futures []
2022-05-12 22:30:48,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) done waiting for dependent futures
2022-05-12 22:30:48,978 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86507520}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 86507520}
2022-05-12 22:30:48,978 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37224448}) to executor  for transfer request: 0.
2022-05-12 22:30:49,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) about to wait for the following futures []
2022-05-12 22:30:49,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) done waiting for dependent futures
2022-05-12 22:30:49,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37224448}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 37224448}
2022-05-12 22:30:49,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:51,153 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:30:51,153 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:51,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:30:51,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:30:51,154 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 6815744}
2022-05-12 22:30:51,154 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:51,288 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117440512}) to executor  for transfer request: 0.
2022-05-12 22:30:51,288 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:51,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) about to wait for the following futures []
2022-05-12 22:30:51,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) done waiting for dependent futures
2022-05-12 22:30:51,289 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117440512}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 117440512}
2022-05-12 22:30:51,289 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:53,117 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95158272}) to executor  for transfer request: 0.
2022-05-12 22:30:53,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:53,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) about to wait for the following futures []
2022-05-12 22:30:53,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) done waiting for dependent futures
2022-05-12 22:30:53,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95158272}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 95158272}
2022-05-12 22:30:53,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:53,868 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109314048}) to executor  for transfer request: 0.
2022-05-12 22:30:53,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:53,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) about to wait for the following futures []
2022-05-12 22:30:53,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) done waiting for dependent futures
2022-05-12 22:30:53,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109314048}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 109314048}
2022-05-12 22:30:53,869 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,115 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75235328}) to executor  for transfer request: 0.
2022-05-12 22:30:55,115 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,115 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,115 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) about to wait for the following futures []
2022-05-12 22:30:55,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) done waiting for dependent futures
2022-05-12 22:30:55,115 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) about to wait for the following futures []
2022-05-12 22:30:55,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75235328}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 75235328}
2022-05-12 22:30:55,116 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) done waiting for dependent futures
2022-05-12 22:30:55,116 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=125829120-134217727'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 125829120, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:30:55,117 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,117 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:55,117 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:55,117 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:55,117 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:55,117 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:55,117 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:55,117 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:30:55,117 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:30:55,118 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:55,118 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:55,118 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=125829120-134217727', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:30:55,118 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:55,118 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:30:55,118 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:55,118 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:55,118 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:30:55,118 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:30:55,118 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:30:55,118 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:30:55,118 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:30:55,118 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=125829120-134217727
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223055Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:30:55,118 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223055Z
20220512/eu-central-1/s3/aws4_request
b55495a696df57117cf95547c28f7404c1e49845e2085eb8767e5166c8e6887b
2022-05-12 22:30:55,118 botocore.auth DEBUG    Signature:
c2cac64eec2af16b5efcf5152c28b2a22a7514773762e9589138894641f0fc8a
2022-05-12 22:30:55,118 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:55,118 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:55,118 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:30:55,119 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:30:55,323 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:30:55,323 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'kMJV95epmiLiDo2ROTTBS0LI/Pm2v2tKmVSSCKRZD2myyjF7AzpcDysq7/T4cuSCoHPhXTAIm9g=', 'x-amz-request-id': 'ZHHZFV07HJF2QWJ3', 'Date': 'Thu, 12 May 2022 22:30:56 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 125829120-134217727/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:30:55,323 botocore.parsers DEBUG    Response body:

2022-05-12 22:30:55,324 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:30:55,324 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:30:55,324 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:30:56,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:30:56,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:30:56,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:30:56,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 1572864}
2022-05-12 22:30:56,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,309 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:30:56,309 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:30:56,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:30:56,310 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 4456448}
2022-05-12 22:30:56,310 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,595 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95420416}) to executor  for transfer request: 0.
2022-05-12 22:30:56,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) about to wait for the following futures []
2022-05-12 22:30:56,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) done waiting for dependent futures
2022-05-12 22:30:56,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95420416}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 95420416}
2022-05-12 22:30:56,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,618 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48758784}) to executor  for transfer request: 0.
2022-05-12 22:30:56,618 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) about to wait for the following futures []
2022-05-12 22:30:56,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) done waiting for dependent futures
2022-05-12 22:30:56,619 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48758784}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 48758784}
2022-05-12 22:30:56,619 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:57,073 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64225280}) to executor  for transfer request: 0.
2022-05-12 22:30:57,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:57,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) about to wait for the following futures []
2022-05-12 22:30:57,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) done waiting for dependent futures
2022-05-12 22:30:57,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64225280}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 64225280}
2022-05-12 22:30:57,074 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:58,590 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103284736}) to executor  for transfer request: 0.
2022-05-12 22:30:58,590 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:58,590 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) about to wait for the following futures []
2022-05-12 22:30:58,590 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) done waiting for dependent futures
2022-05-12 22:30:58,590 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103284736}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 103284736}
2022-05-12 22:30:58,590 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:59,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:30:59,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:59,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:30:59,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:30:59,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 15728640}
2022-05-12 22:30:59,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:01,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86769664}) to executor  for transfer request: 0.
2022-05-12 22:31:01,029 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:01,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) about to wait for the following futures []
2022-05-12 22:31:01,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) done waiting for dependent futures
2022-05-12 22:31:01,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86769664}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 86769664}
2022-05-12 22:31:01,030 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:01,769 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117702656}) to executor  for transfer request: 0.
2022-05-12 22:31:01,769 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:01,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) about to wait for the following futures []
2022-05-12 22:31:01,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) done waiting for dependent futures
2022-05-12 22:31:01,770 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117702656}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 117702656}
2022-05-12 22:31:01,770 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:02,645 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125829120}) to executor  for transfer request: 0.
2022-05-12 22:31:02,645 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:02,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) about to wait for the following futures []
2022-05-12 22:31:02,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) done waiting for dependent futures
2022-05-12 22:31:02,646 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125829120}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 125829120}
2022-05-12 22:31:02,646 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95682560}) to executor  for transfer request: 0.
2022-05-12 22:31:03,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) about to wait for the following futures []
2022-05-12 22:31:03,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) done waiting for dependent futures
2022-05-12 22:31:03,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95682560}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 95682560}
2022-05-12 22:31:03,763 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:04,053 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109576192}) to executor  for transfer request: 0.
2022-05-12 22:31:04,053 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:04,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) about to wait for the following futures []
2022-05-12 22:31:04,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) done waiting for dependent futures
2022-05-12 22:31:04,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109576192}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 109576192}
2022-05-12 22:31:04,054 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:31:06,024 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:31:06,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:31:06,025 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 7077888}
2022-05-12 22:31:06,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37486592}) to executor  for transfer request: 0.
2022-05-12 22:31:06,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) about to wait for the following futures []
2022-05-12 22:31:06,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) done waiting for dependent futures
2022-05-12 22:31:06,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37486592}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 37486592}
2022-05-12 22:31:06,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64487424}) to executor  for transfer request: 0.
2022-05-12 22:31:06,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) about to wait for the following futures []
2022-05-12 22:31:06,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) done waiting for dependent futures
2022-05-12 22:31:06,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64487424}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 64487424}
2022-05-12 22:31:06,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:07,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103546880}) to executor  for transfer request: 0.
2022-05-12 22:31:07,106 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:07,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) about to wait for the following futures []
2022-05-12 22:31:07,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) done waiting for dependent futures
2022-05-12 22:31:07,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103546880}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 103546880}
2022-05-12 22:31:07,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49020928}) to executor  for transfer request: 0.
2022-05-12 22:31:09,330 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) about to wait for the following futures []
2022-05-12 22:31:09,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) done waiting for dependent futures
2022-05-12 22:31:09,331 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49020928}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 49020928}
2022-05-12 22:31:09,331 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:31:09,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:31:09,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:31:09,418 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 4718592}
2022-05-12 22:31:09,418 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,648 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126091264}) to executor  for transfer request: 0.
2022-05-12 22:31:09,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) about to wait for the following futures []
2022-05-12 22:31:09,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) done waiting for dependent futures
2022-05-12 22:31:09,649 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126091264}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 126091264}
2022-05-12 22:31:09,650 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:31:10,323 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:31:10,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:31:10,324 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 1835008}
2022-05-12 22:31:10,325 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,550 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95944704}) to executor  for transfer request: 0.
2022-05-12 22:31:10,550 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,550 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) about to wait for the following futures []
2022-05-12 22:31:10,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) done waiting for dependent futures
2022-05-12 22:31:10,551 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95944704}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 95944704}
2022-05-12 22:31:10,551 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80740352}) to executor  for transfer request: 0.
2022-05-12 22:31:10,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) about to wait for the following futures []
2022-05-12 22:31:10,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) done waiting for dependent futures
2022-05-12 22:31:10,682 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80740352}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 80740352}
2022-05-12 22:31:10,682 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,806 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117964800}) to executor  for transfer request: 0.
2022-05-12 22:31:10,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) about to wait for the following futures []
2022-05-12 22:31:10,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) done waiting for dependent futures
2022-05-12 22:31:10,807 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117964800}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 117964800}
2022-05-12 22:31:10,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:11,220 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87031808}) to executor  for transfer request: 0.
2022-05-12 22:31:11,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:11,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) about to wait for the following futures []
2022-05-12 22:31:11,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) done waiting for dependent futures
2022-05-12 22:31:11,221 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87031808}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 87031808}
2022-05-12 22:31:11,221 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:13,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109838336}) to executor  for transfer request: 0.
2022-05-12 22:31:13,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:13,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) about to wait for the following futures []
2022-05-12 22:31:13,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) done waiting for dependent futures
2022-05-12 22:31:13,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109838336}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 109838336}
2022-05-12 22:31:13,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:14,863 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:31:14,863 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:14,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:31:14,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:31:14,863 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 15990784}
2022-05-12 22:31:14,863 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:15,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126353408}) to executor  for transfer request: 0.
2022-05-12 22:31:15,758 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:15,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) about to wait for the following futures []
2022-05-12 22:31:15,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) done waiting for dependent futures
2022-05-12 22:31:15,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126353408}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 126353408}
2022-05-12 22:31:15,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103809024}) to executor  for transfer request: 0.
2022-05-12 22:31:16,329 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) about to wait for the following futures []
2022-05-12 22:31:16,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) done waiting for dependent futures
2022-05-12 22:31:16,329 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103809024}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 103809024}
2022-05-12 22:31:16,330 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,988 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96206848}) to executor  for transfer request: 0.
2022-05-12 22:31:16,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) about to wait for the following futures []
2022-05-12 22:31:16,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) done waiting for dependent futures
2022-05-12 22:31:16,988 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96206848}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 96206848}
2022-05-12 22:31:16,989 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,691 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:31:17,691 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:31:17,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:31:17,691 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 4980736}
2022-05-12 22:31:17,691 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:18,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:31:18,549 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:18,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:31:18,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:31:18,549 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 7340032}
2022-05-12 22:31:18,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:20,043 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110100480}) to executor  for transfer request: 0.
2022-05-12 22:31:20,043 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:20,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) about to wait for the following futures []
2022-05-12 22:31:20,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) done waiting for dependent futures
2022-05-12 22:31:20,044 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110100480}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 110100480}
2022-05-12 22:31:20,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:20,075 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49283072}) to executor  for transfer request: 0.
2022-05-12 22:31:20,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:20,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) about to wait for the following futures []
2022-05-12 22:31:20,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) done waiting for dependent futures
2022-05-12 22:31:20,076 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49283072}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 49283072}
2022-05-12 22:31:20,076 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:21,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64749568}) to executor  for transfer request: 0.
2022-05-12 22:31:21,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:21,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) about to wait for the following futures []
2022-05-12 22:31:21,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) done waiting for dependent futures
2022-05-12 22:31:21,365 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64749568}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 64749568}
2022-05-12 22:31:21,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:21,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104071168}) to executor  for transfer request: 0.
2022-05-12 22:31:21,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:21,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) about to wait for the following futures []
2022-05-12 22:31:21,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) done waiting for dependent futures
2022-05-12 22:31:21,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104071168}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 104071168}
2022-05-12 22:31:21,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:22,683 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37748736}) to executor  for transfer request: 0.
2022-05-12 22:31:22,683 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:22,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) about to wait for the following futures []
2022-05-12 22:31:22,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) done waiting for dependent futures
2022-05-12 22:31:22,684 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37748736}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 37748736}
2022-05-12 22:31:22,684 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:23,917 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:31:23,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:23,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:31:23,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:31:23,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 2097152}
2022-05-12 22:31:23,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:24,384 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87293952}) to executor  for transfer request: 0.
2022-05-12 22:31:24,384 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:24,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) about to wait for the following futures []
2022-05-12 22:31:24,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) done waiting for dependent futures
2022-05-12 22:31:24,385 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87293952}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 87293952}
2022-05-12 22:31:24,385 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:24,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118226944}) to executor  for transfer request: 0.
2022-05-12 22:31:24,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:24,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) about to wait for the following futures []
2022-05-12 22:31:24,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) done waiting for dependent futures
2022-05-12 22:31:24,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118226944}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 118226944}
2022-05-12 22:31:24,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:25,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96468992}) to executor  for transfer request: 0.
2022-05-12 22:31:25,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:25,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) about to wait for the following futures []
2022-05-12 22:31:25,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) done waiting for dependent futures
2022-05-12 22:31:25,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96468992}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 96468992}
2022-05-12 22:31:25,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:25,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126615552}) to executor  for transfer request: 0.
2022-05-12 22:31:25,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:25,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) about to wait for the following futures []
2022-05-12 22:31:25,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) done waiting for dependent futures
2022-05-12 22:31:25,597 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126615552}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 126615552}
2022-05-12 22:31:25,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:26,225 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:31:26,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:26,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:31:26,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:31:26,226 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 5242880}
2022-05-12 22:31:26,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,995 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110362624}) to executor  for transfer request: 0.
2022-05-12 22:31:29,995 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) about to wait for the following futures []
2022-05-12 22:31:29,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) done waiting for dependent futures
2022-05-12 22:31:29,996 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110362624}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 110362624}
2022-05-12 22:31:29,996 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,459 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49545216}) to executor  for transfer request: 0.
2022-05-12 22:31:30,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) about to wait for the following futures []
2022-05-12 22:31:30,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) done waiting for dependent futures
2022-05-12 22:31:30,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49545216}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 49545216}
2022-05-12 22:31:30,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,722 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:31:30,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:31:30,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:31:30,723 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 16252928}
2022-05-12 22:31:30,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96731136}) to executor  for transfer request: 0.
2022-05-12 22:31:30,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) about to wait for the following futures []
2022-05-12 22:31:30,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) done waiting for dependent futures
2022-05-12 22:31:30,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96731136}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 96731136}
2022-05-12 22:31:30,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:31,294 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65011712}) to executor  for transfer request: 0.
2022-05-12 22:31:31,294 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:31,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) about to wait for the following futures []
2022-05-12 22:31:31,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) done waiting for dependent futures
2022-05-12 22:31:31,295 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65011712}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 65011712}
2022-05-12 22:31:31,295 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:32,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104333312}) to executor  for transfer request: 0.
2022-05-12 22:31:32,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:32,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) about to wait for the following futures []
2022-05-12 22:31:32,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) done waiting for dependent futures
2022-05-12 22:31:32,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104333312}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 104333312}
2022-05-12 22:31:32,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:33,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:31:33,221 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:33,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:31:33,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:31:33,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 2359296}
2022-05-12 22:31:33,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:33,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87556096}) to executor  for transfer request: 0.
2022-05-12 22:31:33,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:33,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) about to wait for the following futures []
2022-05-12 22:31:33,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) done waiting for dependent futures
2022-05-12 22:31:33,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87556096}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 87556096}
2022-05-12 22:31:33,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:34,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118489088}) to executor  for transfer request: 0.
2022-05-12 22:31:34,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:34,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) about to wait for the following futures []
2022-05-12 22:31:34,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) done waiting for dependent futures
2022-05-12 22:31:34,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118489088}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 118489088}
2022-05-12 22:31:34,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:35,212 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:31:35,212 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:35,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:31:35,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:31:35,213 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 5505024}
2022-05-12 22:31:35,213 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:35,998 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96993280}) to executor  for transfer request: 0.
2022-05-12 22:31:35,998 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:35,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) about to wait for the following futures []
2022-05-12 22:31:35,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) done waiting for dependent futures
2022-05-12 22:31:35,999 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96993280}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 96993280}
2022-05-12 22:31:35,999 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:36,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81002496}) to executor  for transfer request: 0.
2022-05-12 22:31:36,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:36,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) about to wait for the following futures []
2022-05-12 22:31:36,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) done waiting for dependent futures
2022-05-12 22:31:36,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81002496}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 81002496}
2022-05-12 22:31:36,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:36,531 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126877696}) to executor  for transfer request: 0.
2022-05-12 22:31:36,531 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:36,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) about to wait for the following futures []
2022-05-12 22:31:36,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) done waiting for dependent futures
2022-05-12 22:31:36,532 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126877696}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 126877696}
2022-05-12 22:31:36,532 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,399 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110624768}) to executor  for transfer request: 0.
2022-05-12 22:31:37,399 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) about to wait for the following futures []
2022-05-12 22:31:37,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) done waiting for dependent futures
2022-05-12 22:31:37,400 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110624768}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 110624768}
2022-05-12 22:31:37,400 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,692 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:31:37,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:31:37,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:31:37,693 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 7602176}
2022-05-12 22:31:37,694 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:38,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38010880}) to executor  for transfer request: 0.
2022-05-12 22:31:38,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:38,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) about to wait for the following futures []
2022-05-12 22:31:38,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) done waiting for dependent futures
2022-05-12 22:31:38,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38010880}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 38010880}
2022-05-12 22:31:38,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:39,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65273856}) to executor  for transfer request: 0.
2022-05-12 22:31:39,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:39,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) about to wait for the following futures []
2022-05-12 22:31:39,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) done waiting for dependent futures
2022-05-12 22:31:39,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65273856}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 65273856}
2022-05-12 22:31:39,726 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:43,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104595456}) to executor  for transfer request: 0.
2022-05-12 22:31:43,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:43,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) about to wait for the following futures []
2022-05-12 22:31:43,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) done waiting for dependent futures
2022-05-12 22:31:43,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104595456}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 104595456}
2022-05-12 22:31:43,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:43,318 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127139840}) to executor  for transfer request: 0.
2022-05-12 22:31:43,318 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:43,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) about to wait for the following futures []
2022-05-12 22:31:43,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) done waiting for dependent futures
2022-05-12 22:31:43,319 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127139840}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 127139840}
2022-05-12 22:31:43,319 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:44,047 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49807360}) to executor  for transfer request: 0.
2022-05-12 22:31:44,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:44,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) about to wait for the following futures []
2022-05-12 22:31:44,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) done waiting for dependent futures
2022-05-12 22:31:44,048 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49807360}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 49807360}
2022-05-12 22:31:44,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:44,213 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118751232}) to executor  for transfer request: 0.
2022-05-12 22:31:44,213 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:44,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) about to wait for the following futures []
2022-05-12 22:31:44,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) done waiting for dependent futures
2022-05-12 22:31:44,214 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118751232}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 118751232}
2022-05-12 22:31:44,214 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:44,352 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97255424}) to executor  for transfer request: 0.
2022-05-12 22:31:44,353 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:44,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) about to wait for the following futures []
2022-05-12 22:31:44,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) done waiting for dependent futures
2022-05-12 22:31:44,353 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97255424}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 97255424}
2022-05-12 22:31:44,354 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:44,955 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:31:44,955 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:44,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:31:44,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:31:44,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 2621440}
2022-05-12 22:31:44,956 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:45,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:31:45,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:45,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:31:45,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:31:45,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 5767168}
2022-05-12 22:31:45,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:45,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87818240}) to executor  for transfer request: 0.
2022-05-12 22:31:45,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:45,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) about to wait for the following futures []
2022-05-12 22:31:45,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) done waiting for dependent futures
2022-05-12 22:31:45,238 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87818240}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 87818240}
2022-05-12 22:31:45,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:46,188 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:31:46,188 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:46,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:46,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:31:46,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:31:46,189 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 16515072}
2022-05-12 22:31:46,189 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:47,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110886912}) to executor  for transfer request: 0.
2022-05-12 22:31:47,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:47,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) about to wait for the following futures []
2022-05-12 22:31:47,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) done waiting for dependent futures
2022-05-12 22:31:47,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110886912}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 110886912}
2022-05-12 22:31:47,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:31:49,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:31:49,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:31:49,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 7864320}
2022-05-12 22:31:49,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:50,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127401984}) to executor  for transfer request: 0.
2022-05-12 22:31:50,809 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:50,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) about to wait for the following futures []
2022-05-12 22:31:50,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) done waiting for dependent futures
2022-05-12 22:31:50,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127401984}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 127401984}
2022-05-12 22:31:50,810 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,425 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97517568}) to executor  for transfer request: 0.
2022-05-12 22:31:51,425 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) about to wait for the following futures []
2022-05-12 22:31:51,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) done waiting for dependent futures
2022-05-12 22:31:51,425 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97517568}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 97517568}
2022-05-12 22:31:51,426 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:52,767 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38273024}) to executor  for transfer request: 0.
2022-05-12 22:31:52,767 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:52,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) about to wait for the following futures []
2022-05-12 22:31:52,768 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) done waiting for dependent futures
2022-05-12 22:31:52,768 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38273024}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 38273024}
2022-05-12 22:31:52,768 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:53,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104857600}) to executor  for transfer request: 0.
2022-05-12 22:31:53,253 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:53,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) about to wait for the following futures []
2022-05-12 22:31:53,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) done waiting for dependent futures
2022-05-12 22:31:53,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104857600}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 104857600}
2022-05-12 22:31:53,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:53,558 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50069504}) to executor  for transfer request: 0.
2022-05-12 22:31:53,558 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:53,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:53,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) about to wait for the following futures []
2022-05-12 22:31:53,559 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) about to wait for the following futures []
2022-05-12 22:31:53,559 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) done waiting for dependent futures
2022-05-12 22:31:53,559 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) done waiting for dependent futures
2022-05-12 22:31:53,559 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50069504}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 50069504}
2022-05-12 22:31:53,560 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=134217728-142606335'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 134217728, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:53,560 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:53,560 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:53,560 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:53,561 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:53,561 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:53,561 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:53,561 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:53,561 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:53,561 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:31:53,561 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:53,562 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:53,562 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=134217728-142606335', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:53,562 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:53,562 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:53,562 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:53,562 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:53,562 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:53,562 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:53,562 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:31:53,562 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:31:53,563 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:53,563 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=134217728-142606335
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223153Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:53,563 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223153Z
20220512/eu-central-1/s3/aws4_request
93b36355213c796f9b4cdc44b271ce708c64efcb229e884ff878f9666ce18927
2022-05-12 22:31:53,563 botocore.auth DEBUG    Signature:
c1548bb18a15ad4ad7f6c806fafd40d16aca44a6e7e9842f4dbcf43d319f4e40
2022-05-12 22:31:53,563 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:53,563 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:53,563 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:53,563 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:53,844 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:53,844 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hQerOOMRTISOutSGhsDpYB1+3yoTN75p44X/fecOz8EWBDDYYTnZ0xz3fVRsbuHmfTliGUiqnyE=', 'x-amz-request-id': '49953PS2QV2DH3GX', 'Date': 'Thu, 12 May 2022 22:31:54 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 134217728-142606335/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:31:53,845 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:53,845 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:53,846 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:53,846 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:54,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65536000}) to executor  for transfer request: 0.
2022-05-12 22:31:54,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:54,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) about to wait for the following futures []
2022-05-12 22:31:54,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) done waiting for dependent futures
2022-05-12 22:31:54,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65536000}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 65536000}
2022-05-12 22:31:54,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,621 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111149056}) to executor  for transfer request: 0.
2022-05-12 22:31:54,622 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:54,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) about to wait for the following futures []
2022-05-12 22:31:54,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) done waiting for dependent futures
2022-05-12 22:31:54,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111149056}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 111149056}
2022-05-12 22:31:54,623 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,847 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88080384}) to executor  for transfer request: 0.
2022-05-12 22:31:54,847 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:54,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) about to wait for the following futures []
2022-05-12 22:31:54,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) done waiting for dependent futures
2022-05-12 22:31:54,847 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88080384}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 88080384}
2022-05-12 22:31:54,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,934 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119013376}) to executor  for transfer request: 0.
2022-05-12 22:31:54,934 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:54,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) about to wait for the following futures []
2022-05-12 22:31:54,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) done waiting for dependent futures
2022-05-12 22:31:54,935 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119013376}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 119013376}
2022-05-12 22:31:54,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,964 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:31:54,964 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:54,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:31:54,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:31:54,964 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 6029312}
2022-05-12 22:31:54,965 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:56,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:31:56,025 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:56,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:31:56,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:31:56,025 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 2883584}
2022-05-12 22:31:56,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:57,258 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81264640}) to executor  for transfer request: 0.
2022-05-12 22:31:57,259 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:57,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) about to wait for the following futures []
2022-05-12 22:31:57,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) done waiting for dependent futures
2022-05-12 22:31:57,259 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81264640}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 81264640}
2022-05-12 22:31:57,260 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:58,654 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127664128}) to executor  for transfer request: 0.
2022-05-12 22:31:58,654 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:58,655 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) about to wait for the following futures []
2022-05-12 22:31:58,655 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) done waiting for dependent futures
2022-05-12 22:31:58,655 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127664128}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 127664128}
2022-05-12 22:31:58,655 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,409 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:32:00,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,410 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:32:00,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,410 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:32:00,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:32:00,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=23>, 'offset': 8126464}
2022-05-12 22:32:00,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,411 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:32:00,411 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:32:00,411 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:32:00,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:01,676 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65798144}) to executor  for transfer request: 0.
2022-05-12 22:32:01,676 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:01,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) about to wait for the following futures []
2022-05-12 22:32:01,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) done waiting for dependent futures
2022-05-12 22:32:01,677 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65798144}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 65798144}
2022-05-12 22:32:01,678 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:01,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111411200}) to executor  for transfer request: 0.
2022-05-12 22:32:01,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:01,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) about to wait for the following futures []
2022-05-12 22:32:01,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) done waiting for dependent futures
2022-05-12 22:32:01,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111411200}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 111411200}
2022-05-12 22:32:01,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:02,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88342528}) to executor  for transfer request: 0.
2022-05-12 22:32:02,021 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:02,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) about to wait for the following futures []
2022-05-12 22:32:02,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) done waiting for dependent futures
2022-05-12 22:32:02,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88342528}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 88342528}
2022-05-12 22:32:02,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:03,122 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97779712}) to executor  for transfer request: 0.
2022-05-12 22:32:03,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:03,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) about to wait for the following futures []
2022-05-12 22:32:03,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) done waiting for dependent futures
2022-05-12 22:32:03,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97779712}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 97779712}
2022-05-12 22:32:03,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:03,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105119744}) to executor  for transfer request: 0.
2022-05-12 22:32:03,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:03,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) about to wait for the following futures []
2022-05-12 22:32:03,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) done waiting for dependent futures
2022-05-12 22:32:03,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105119744}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 105119744}
2022-05-12 22:32:03,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:32:04,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:32:04,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:32:04,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 6291456}
2022-05-12 22:32:04,061 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:05,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134217728}) to executor  for transfer request: 0.
2022-05-12 22:32:05,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:05,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) about to wait for the following futures []
2022-05-12 22:32:05,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) done waiting for dependent futures
2022-05-12 22:32:05,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134217728}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 134217728}
2022-05-12 22:32:05,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:05,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38535168}) to executor  for transfer request: 0.
2022-05-12 22:32:05,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:05,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) about to wait for the following futures []
2022-05-12 22:32:05,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) done waiting for dependent futures
2022-05-12 22:32:05,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38535168}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 38535168}
2022-05-12 22:32:05,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:07,619 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:32:07,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:07,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:32:07,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:32:07,620 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 3145728}
2022-05-12 22:32:07,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:07,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88604672}) to executor  for transfer request: 0.
2022-05-12 22:32:07,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:07,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) about to wait for the following futures []
2022-05-12 22:32:07,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) done waiting for dependent futures
2022-05-12 22:32:07,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88604672}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 88604672}
2022-05-12 22:32:07,694 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:09,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98041856}) to executor  for transfer request: 0.
2022-05-12 22:32:09,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:09,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) about to wait for the following futures []
2022-05-12 22:32:09,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) done waiting for dependent futures
2022-05-12 22:32:09,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98041856}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 98041856}
2022-05-12 22:32:09,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:10,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119275520}) to executor  for transfer request: 0.
2022-05-12 22:32:10,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:10,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) about to wait for the following futures []
2022-05-12 22:32:10,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) done waiting for dependent futures
2022-05-12 22:32:10,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119275520}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 119275520}
2022-05-12 22:32:10,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,477 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105381888}) to executor  for transfer request: 0.
2022-05-12 22:32:11,477 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) about to wait for the following futures []
2022-05-12 22:32:11,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) done waiting for dependent futures
2022-05-12 22:32:11,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105381888}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 105381888}
2022-05-12 22:32:11,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:12,392 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111673344}) to executor  for transfer request: 0.
2022-05-12 22:32:12,392 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:12,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) about to wait for the following futures []
2022-05-12 22:32:12,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) done waiting for dependent futures
2022-05-12 22:32:12,393 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111673344}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 111673344}
2022-05-12 22:32:12,393 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:12,615 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:32:12,615 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:12,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:32:12,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:32:12,616 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 6553600}
2022-05-12 22:32:12,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,941 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66060288}) to executor  for transfer request: 0.
2022-05-12 22:32:15,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:15,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) about to wait for the following futures []
2022-05-12 22:32:15,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) done waiting for dependent futures
2022-05-12 22:32:15,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66060288}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 66060288}
2022-05-12 22:32:15,942 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:16,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98304000}) to executor  for transfer request: 0.
2022-05-12 22:32:16,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:16,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) about to wait for the following futures []
2022-05-12 22:32:16,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) done waiting for dependent futures
2022-05-12 22:32:16,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98304000}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 98304000}
2022-05-12 22:32:16,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:16,700 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134479872}) to executor  for transfer request: 0.
2022-05-12 22:32:16,700 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:16,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) about to wait for the following futures []
2022-05-12 22:32:16,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) done waiting for dependent futures
2022-05-12 22:32:16,701 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134479872}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 134479872}
2022-05-12 22:32:16,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:17,062 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88866816}) to executor  for transfer request: 0.
2022-05-12 22:32:17,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:17,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) about to wait for the following futures []
2022-05-12 22:32:17,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) done waiting for dependent futures
2022-05-12 22:32:17,062 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88866816}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 88866816}
2022-05-12 22:32:17,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,440 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105644032}) to executor  for transfer request: 0.
2022-05-12 22:32:18,440 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) about to wait for the following futures []
2022-05-12 22:32:18,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) done waiting for dependent futures
2022-05-12 22:32:18,441 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105644032}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 105644032}
2022-05-12 22:32:18,441 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,490 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38797312}) to executor  for transfer request: 0.
2022-05-12 22:32:18,491 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) about to wait for the following futures []
2022-05-12 22:32:18,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) done waiting for dependent futures
2022-05-12 22:32:18,491 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38797312}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 38797312}
2022-05-12 22:32:18,492 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,752 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111935488}) to executor  for transfer request: 0.
2022-05-12 22:32:18,752 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) about to wait for the following futures []
2022-05-12 22:32:18,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) done waiting for dependent futures
2022-05-12 22:32:18,753 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111935488}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 111935488}
2022-05-12 22:32:18,753 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,870 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:32:18,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:32:18,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:32:18,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 3407872}
2022-05-12 22:32:18,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:19,266 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:32:19,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:19,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:32:19,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:32:19,267 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 6815744}
2022-05-12 22:32:19,268 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:19,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119537664}) to executor  for transfer request: 0.
2022-05-12 22:32:19,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:19,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) about to wait for the following futures []
2022-05-12 22:32:19,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) done waiting for dependent futures
2022-05-12 22:32:19,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119537664}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 119537664}
2022-05-12 22:32:19,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:22,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98566144}) to executor  for transfer request: 0.
2022-05-12 22:32:22,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:22,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) about to wait for the following futures []
2022-05-12 22:32:22,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) done waiting for dependent futures
2022-05-12 22:32:22,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98566144}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 98566144}
2022-05-12 22:32:22,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,586 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89128960}) to executor  for transfer request: 0.
2022-05-12 22:32:23,586 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) about to wait for the following futures []
2022-05-12 22:32:23,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) done waiting for dependent futures
2022-05-12 22:32:23,587 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89128960}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 89128960}
2022-05-12 22:32:23,587 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,669 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66322432}) to executor  for transfer request: 0.
2022-05-12 22:32:23,669 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,669 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) about to wait for the following futures []
2022-05-12 22:32:23,669 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) done waiting for dependent futures
2022-05-12 22:32:23,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66322432}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 66322432}
2022-05-12 22:32:23,670 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:25,308 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:32:25,308 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:25,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:32:25,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:32:25,309 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 7077888}
2022-05-12 22:32:25,309 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:27,503 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134742016}) to executor  for transfer request: 0.
2022-05-12 22:32:27,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:27,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) about to wait for the following futures []
2022-05-12 22:32:27,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) done waiting for dependent futures
2022-05-12 22:32:27,504 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134742016}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 134742016}
2022-05-12 22:32:27,504 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:28,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105906176}) to executor  for transfer request: 0.
2022-05-12 22:32:28,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:28,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) about to wait for the following futures []
2022-05-12 22:32:28,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) done waiting for dependent futures
2022-05-12 22:32:28,140 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105906176}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 105906176}
2022-05-12 22:32:28,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:28,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66584576}) to executor  for transfer request: 0.
2022-05-12 22:32:28,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:28,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) about to wait for the following futures []
2022-05-12 22:32:28,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) done waiting for dependent futures
2022-05-12 22:32:28,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66584576}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 66584576}
2022-05-12 22:32:28,929 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,112 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112197632}) to executor  for transfer request: 0.
2022-05-12 22:32:29,112 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) about to wait for the following futures []
2022-05-12 22:32:29,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) done waiting for dependent futures
2022-05-12 22:32:29,113 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112197632}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 112197632}
2022-05-12 22:32:29,113 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,799 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119799808}) to executor  for transfer request: 0.
2022-05-12 22:32:29,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) about to wait for the following futures []
2022-05-12 22:32:29,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) done waiting for dependent futures
2022-05-12 22:32:29,799 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119799808}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 119799808}
2022-05-12 22:32:29,800 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:30,177 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98828288}) to executor  for transfer request: 0.
2022-05-12 22:32:30,177 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:30,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) about to wait for the following futures []
2022-05-12 22:32:30,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) done waiting for dependent futures
2022-05-12 22:32:30,177 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98828288}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 98828288}
2022-05-12 22:32:30,178 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:30,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:32:30,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:30,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:32:30,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:32:30,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 3670016}
2022-05-12 22:32:30,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:32,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39059456}) to executor  for transfer request: 0.
2022-05-12 22:32:32,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:32,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) about to wait for the following futures []
2022-05-12 22:32:32,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) done waiting for dependent futures
2022-05-12 22:32:32,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39059456}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 39059456}
2022-05-12 22:32:32,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:34,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:32:34,497 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:34,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:32:34,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:32:34,498 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 7340032}
2022-05-12 22:32:34,498 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:35,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89391104}) to executor  for transfer request: 0.
2022-05-12 22:32:35,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:35,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) about to wait for the following futures []
2022-05-12 22:32:35,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) done waiting for dependent futures
2022-05-12 22:32:35,443 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89391104}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 89391104}
2022-05-12 22:32:35,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:36,069 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106168320}) to executor  for transfer request: 0.
2022-05-12 22:32:36,070 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:36,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) about to wait for the following futures []
2022-05-12 22:32:36,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) done waiting for dependent futures
2022-05-12 22:32:36,070 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106168320}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 106168320}
2022-05-12 22:32:36,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,606 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99090432}) to executor  for transfer request: 0.
2022-05-12 22:32:38,607 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) about to wait for the following futures []
2022-05-12 22:32:38,608 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) done waiting for dependent futures
2022-05-12 22:32:38,608 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99090432}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 99090432}
2022-05-12 22:32:38,609 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:39,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66846720}) to executor  for transfer request: 0.
2022-05-12 22:32:39,497 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:39,497 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:39,497 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) about to wait for the following futures []
2022-05-12 22:32:39,497 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) done waiting for dependent futures
2022-05-12 22:32:39,498 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=142606336-150994943'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 142606336, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:39,498 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:39,498 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:39,498 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:39,498 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:39,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) about to wait for the following futures []
2022-05-12 22:32:39,498 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:39,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) done waiting for dependent futures
2022-05-12 22:32:39,499 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:39,499 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66846720}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 66846720}
2022-05-12 22:32:39,500 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:39,500 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:32:39,500 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:39,500 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:39,501 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=142606336-150994943', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:39,501 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:39,501 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:39,501 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:39,501 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:39,502 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:39,502 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:39,502 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:39,502 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:32:39,502 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:32:39,502 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:39,502 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=142606336-150994943
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223239Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:39,502 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223239Z
20220512/eu-central-1/s3/aws4_request
7acb2c7b96ec31eab0da21bdfd7345e04279b311ae7a049e6b384635e1049c94
2022-05-12 22:32:39,503 botocore.auth DEBUG    Signature:
2d021084ce4d5b0039025f9f229a7eaf5e0c98a072d2319ad1406a1e02b287f5
2022-05-12 22:32:39,503 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:39,503 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:39,503 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:39,503 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:39,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135004160}) to executor  for transfer request: 0.
2022-05-12 22:32:39,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:39,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) about to wait for the following futures []
2022-05-12 22:32:39,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) done waiting for dependent futures
2022-05-12 22:32:39,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135004160}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 135004160}
2022-05-12 22:32:39,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:39,669 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112459776}) to executor  for transfer request: 0.
2022-05-12 22:32:39,669 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:39,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) about to wait for the following futures []
2022-05-12 22:32:39,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) done waiting for dependent futures
2022-05-12 22:32:39,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112459776}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 112459776}
2022-05-12 22:32:39,670 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:39,912 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:39,912 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '0Q7ITqeK3qyZvWHwrdYtr8qS8Xj2TH5mum8ut5KfyxCRtNsT+qcrsgSN2/vgDs2YA1K2J1aXMpY=', 'x-amz-request-id': '9J99P61R4D62DPY1', 'Date': 'Thu, 12 May 2022 22:32:40 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 142606336-150994943/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:39,913 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:39,913 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:39,914 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:39,914 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:42,217 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99352576}) to executor  for transfer request: 0.
2022-05-12 22:32:42,217 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:42,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) about to wait for the following futures []
2022-05-12 22:32:42,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) done waiting for dependent futures
2022-05-12 22:32:42,218 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99352576}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 99352576}
2022-05-12 22:32:42,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:42,254 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120061952}) to executor  for transfer request: 0.
2022-05-12 22:32:42,255 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:42,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) about to wait for the following futures []
2022-05-12 22:32:42,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) done waiting for dependent futures
2022-05-12 22:32:42,255 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120061952}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 120061952}
2022-05-12 22:32:42,256 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:42,549 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106430464}) to executor  for transfer request: 0.
2022-05-12 22:32:42,550 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:42,550 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) about to wait for the following futures []
2022-05-12 22:32:42,550 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) done waiting for dependent futures
2022-05-12 22:32:42,550 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106430464}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 106430464}
2022-05-12 22:32:42,551 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:44,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:32:44,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:44,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:32:44,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:32:44,164 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 3932160}
2022-05-12 22:32:44,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:46,200 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89653248}) to executor  for transfer request: 0.
2022-05-12 22:32:46,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:46,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) about to wait for the following futures []
2022-05-12 22:32:46,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) done waiting for dependent futures
2022-05-12 22:32:46,201 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89653248}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 89653248}
2022-05-12 22:32:46,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:46,313 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:32:46,313 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:46,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:32:46,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:32:46,314 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 7602176}
2022-05-12 22:32:46,314 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:47,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135266304}) to executor  for transfer request: 0.
2022-05-12 22:32:47,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:47,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) about to wait for the following futures []
2022-05-12 22:32:47,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) done waiting for dependent futures
2022-05-12 22:32:47,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135266304}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 135266304}
2022-05-12 22:32:47,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:47,402 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99614720}) to executor  for transfer request: 0.
2022-05-12 22:32:47,402 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:47,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) about to wait for the following futures []
2022-05-12 22:32:47,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) done waiting for dependent futures
2022-05-12 22:32:47,403 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99614720}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 99614720}
2022-05-12 22:32:47,403 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,823 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:32:48,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:32:48,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:32:48,824 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 4194304}
2022-05-12 22:32:48,824 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,965 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120324096}) to executor  for transfer request: 0.
2022-05-12 22:32:48,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) about to wait for the following futures []
2022-05-12 22:32:48,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) done waiting for dependent futures
2022-05-12 22:32:48,965 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120324096}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 120324096}
2022-05-12 22:32:48,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:49,438 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106692608}) to executor  for transfer request: 0.
2022-05-12 22:32:49,439 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:49,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) about to wait for the following futures []
2022-05-12 22:32:49,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) done waiting for dependent futures
2022-05-12 22:32:49,439 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106692608}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 106692608}
2022-05-12 22:32:49,440 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:49,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142606336}) to executor  for transfer request: 0.
2022-05-12 22:32:49,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:49,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) about to wait for the following futures []
2022-05-12 22:32:49,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) done waiting for dependent futures
2022-05-12 22:32:49,515 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142606336}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 142606336}
2022-05-12 22:32:49,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:50,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39321600}) to executor  for transfer request: 0.
2022-05-12 22:32:50,933 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:50,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) about to wait for the following futures []
2022-05-12 22:32:50,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) done waiting for dependent futures
2022-05-12 22:32:50,933 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39321600}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 39321600}
2022-05-12 22:32:50,933 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:51,413 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127926272}) to executor  for transfer request: 0.
2022-05-12 22:32:51,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:51,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) about to wait for the following futures []
2022-05-12 22:32:51,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) done waiting for dependent futures
2022-05-12 22:32:51,414 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127926272}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 127926272}
2022-05-12 22:32:51,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:52,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99876864}) to executor  for transfer request: 0.
2022-05-12 22:32:52,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:52,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) about to wait for the following futures []
2022-05-12 22:32:52,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) done waiting for dependent futures
2022-05-12 22:32:52,326 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99876864}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 99876864}
2022-05-12 22:32:52,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:52,500 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135528448}) to executor  for transfer request: 0.
2022-05-12 22:32:52,500 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:52,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) about to wait for the following futures []
2022-05-12 22:32:52,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) done waiting for dependent futures
2022-05-12 22:32:52,501 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135528448}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 135528448}
2022-05-12 22:32:52,501 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:52,825 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89915392}) to executor  for transfer request: 0.
2022-05-12 22:32:52,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:52,826 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) about to wait for the following futures []
2022-05-12 22:32:52,826 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) done waiting for dependent futures
2022-05-12 22:32:52,826 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89915392}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 89915392}
2022-05-12 22:32:52,826 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:53,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:32:53,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:53,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:32:53,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:32:53,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 7864320}
2022-05-12 22:32:53,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:55,908 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106954752}) to executor  for transfer request: 0.
2022-05-12 22:32:55,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:55,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) about to wait for the following futures []
2022-05-12 22:32:55,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) done waiting for dependent futures
2022-05-12 22:32:55,909 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106954752}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 106954752}
2022-05-12 22:32:55,909 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:56,261 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81526784}) to executor  for transfer request: 0.
2022-05-12 22:32:56,261 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:56,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) about to wait for the following futures []
2022-05-12 22:32:56,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) done waiting for dependent futures
2022-05-12 22:32:56,262 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81526784}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 81526784}
2022-05-12 22:32:56,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,087 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90177536}) to executor  for transfer request: 0.
2022-05-12 22:32:57,087 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) about to wait for the following futures []
2022-05-12 22:32:57,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) done waiting for dependent futures
2022-05-12 22:32:57,088 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90177536}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 90177536}
2022-05-12 22:32:57,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,104 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142868480}) to executor  for transfer request: 0.
2022-05-12 22:32:57,104 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) about to wait for the following futures []
2022-05-12 22:32:57,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) done waiting for dependent futures
2022-05-12 22:32:57,104 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142868480}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 142868480}
2022-05-12 22:32:57,105 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:32:57,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:32:57,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:32:57,167 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 4456448}
2022-05-12 22:32:57,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100139008}) to executor  for transfer request: 0.
2022-05-12 22:32:57,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) about to wait for the following futures []
2022-05-12 22:32:57,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) done waiting for dependent futures
2022-05-12 22:32:57,736 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100139008}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 100139008}
2022-05-12 22:32:57,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:00,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128188416}) to executor  for transfer request: 0.
2022-05-12 22:33:00,186 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:00,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) about to wait for the following futures []
2022-05-12 22:33:00,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) done waiting for dependent futures
2022-05-12 22:33:00,187 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128188416}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 128188416}
2022-05-12 22:33:00,187 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:33:01,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,050 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:33:01,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:33:01,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:33:01,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 8126464}
2022-05-12 22:33:01,051 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,051 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:33:01,051 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:33:01,051 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:33:01,051 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100401152}) to executor  for transfer request: 0.
2022-05-12 22:33:01,412 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) about to wait for the following futures []
2022-05-12 22:33:01,412 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) about to wait for the following futures []
2022-05-12 22:33:01,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) done waiting for dependent futures
2022-05-12 22:33:01,413 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) done waiting for dependent futures
2022-05-12 22:33:01,413 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100401152}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 100401152}
2022-05-12 22:33:01,413 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=150994944-159383551'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 150994944, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:01,413 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:01,413 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:01,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,413 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:01,413 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:01,413 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:01,413 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:01,413 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:01,414 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:33:01,414 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:01,414 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:01,414 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=150994944-159383551', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:01,414 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:01,414 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:01,414 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:01,414 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:01,414 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:01,414 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:01,414 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:33:01,414 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:33:01,414 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:01,414 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=150994944-159383551
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223301Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:01,414 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223301Z
20220512/eu-central-1/s3/aws4_request
3469f2d70cbbb8a578ff409db4147449f1a0bd728ae293fe962e2a0620d1972c
2022-05-12 22:33:01,414 botocore.auth DEBUG    Signature:
9661172efde6d9e2da0aa92114573b136f68fe937323c76340b86a7635a12b0b
2022-05-12 22:33:01,415 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:01,415 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:01,415 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:01,415 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:01,415 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:02,329 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143130624}) to executor  for transfer request: 0.
2022-05-12 22:33:02,329 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:02,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) about to wait for the following futures []
2022-05-12 22:33:02,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) done waiting for dependent futures
2022-05-12 22:33:02,330 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143130624}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 143130624}
2022-05-12 22:33:02,330 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:02,639 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120586240}) to executor  for transfer request: 0.
2022-05-12 22:33:02,639 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:02,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) about to wait for the following futures []
2022-05-12 22:33:02,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) done waiting for dependent futures
2022-05-12 22:33:02,640 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120586240}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 120586240}
2022-05-12 22:33:02,640 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:02,812 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:02,812 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'vk5DeNdBGzSc3AkoeeH8ymyqfNDSHAUBlFH64I50tS1lSCvZDYckANsS6YU9zXUYmzZXGfcRQDs=', 'x-amz-request-id': 'XM5GT7BT23MK7RHQ', 'Date': 'Thu, 12 May 2022 22:33:03 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 150994944-159383551/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:02,812 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:02,813 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:02,813 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:02,813 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:02,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135790592}) to executor  for transfer request: 0.
2022-05-12 22:33:02,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:02,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) about to wait for the following futures []
2022-05-12 22:33:02,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) done waiting for dependent futures
2022-05-12 22:33:02,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135790592}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 135790592}
2022-05-12 22:33:02,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:03,077 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:33:03,077 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:03,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:33:03,078 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:33:03,078 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 4718592}
2022-05-12 22:33:03,078 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:03,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107216896}) to executor  for transfer request: 0.
2022-05-12 22:33:03,355 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:03,355 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) about to wait for the following futures []
2022-05-12 22:33:03,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) done waiting for dependent futures
2022-05-12 22:33:03,356 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107216896}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 107216896}
2022-05-12 22:33:03,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:03,631 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39583744}) to executor  for transfer request: 0.
2022-05-12 22:33:03,631 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:03,631 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) about to wait for the following futures []
2022-05-12 22:33:03,631 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) done waiting for dependent futures
2022-05-12 22:33:03,631 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39583744}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 39583744}
2022-05-12 22:33:03,632 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:04,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90439680}) to executor  for transfer request: 0.
2022-05-12 22:33:04,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:04,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) about to wait for the following futures []
2022-05-12 22:33:04,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) done waiting for dependent futures
2022-05-12 22:33:04,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90439680}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 90439680}
2022-05-12 22:33:04,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143392768}) to executor  for transfer request: 0.
2022-05-12 22:33:05,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:05,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) about to wait for the following futures []
2022-05-12 22:33:05,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) done waiting for dependent futures
2022-05-12 22:33:05,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143392768}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 143392768}
2022-05-12 22:33:05,930 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:07,053 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107479040}) to executor  for transfer request: 0.
2022-05-12 22:33:07,053 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:07,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) about to wait for the following futures []
2022-05-12 22:33:07,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) done waiting for dependent futures
2022-05-12 22:33:07,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107479040}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 107479040}
2022-05-12 22:33:07,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:08,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150994944}) to executor  for transfer request: 0.
2022-05-12 22:33:08,327 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:08,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) about to wait for the following futures []
2022-05-12 22:33:08,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) done waiting for dependent futures
2022-05-12 22:33:08,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150994944}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 150994944}
2022-05-12 22:33:08,328 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:08,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:33:08,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:08,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:33:08,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:33:08,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 4980736}
2022-05-12 22:33:08,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:09,264 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112721920}) to executor  for transfer request: 0.
2022-05-12 22:33:09,264 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:09,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) about to wait for the following futures []
2022-05-12 22:33:09,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) done waiting for dependent futures
2022-05-12 22:33:09,264 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112721920}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 112721920}
2022-05-12 22:33:09,265 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,366 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128450560}) to executor  for transfer request: 0.
2022-05-12 22:33:10,367 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) about to wait for the following futures []
2022-05-12 22:33:10,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) done waiting for dependent futures
2022-05-12 22:33:10,367 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128450560}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 128450560}
2022-05-12 22:33:10,368 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:12,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136052736}) to executor  for transfer request: 0.
2022-05-12 22:33:12,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:12,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) about to wait for the following futures []
2022-05-12 22:33:12,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) done waiting for dependent futures
2022-05-12 22:33:12,329 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136052736}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 136052736}
2022-05-12 22:33:12,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:12,975 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120848384}) to executor  for transfer request: 0.
2022-05-12 22:33:12,976 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:12,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) about to wait for the following futures []
2022-05-12 22:33:12,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) done waiting for dependent futures
2022-05-12 22:33:12,976 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120848384}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 120848384}
2022-05-12 22:33:12,977 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90701824}) to executor  for transfer request: 0.
2022-05-12 22:33:13,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) about to wait for the following futures []
2022-05-12 22:33:13,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) done waiting for dependent futures
2022-05-12 22:33:13,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90701824}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 90701824}
2022-05-12 22:33:13,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107741184}) to executor  for transfer request: 0.
2022-05-12 22:33:13,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) about to wait for the following futures []
2022-05-12 22:33:13,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) done waiting for dependent futures
2022-05-12 22:33:13,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107741184}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 107741184}
2022-05-12 22:33:13,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:15,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143654912}) to executor  for transfer request: 0.
2022-05-12 22:33:15,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:15,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) about to wait for the following futures []
2022-05-12 22:33:15,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) done waiting for dependent futures
2022-05-12 22:33:15,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143654912}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 143654912}
2022-05-12 22:33:15,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:16,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128712704}) to executor  for transfer request: 0.
2022-05-12 22:33:16,726 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:16,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) about to wait for the following futures []
2022-05-12 22:33:16,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) done waiting for dependent futures
2022-05-12 22:33:16,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128712704}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 128712704}
2022-05-12 22:33:16,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:17,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151257088}) to executor  for transfer request: 0.
2022-05-12 22:33:17,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:17,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) about to wait for the following futures []
2022-05-12 22:33:17,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) done waiting for dependent futures
2022-05-12 22:33:17,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151257088}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 151257088}
2022-05-12 22:33:17,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:18,170 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:33:18,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:18,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:33:18,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:33:18,171 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 5242880}
2022-05-12 22:33:18,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:18,587 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108003328}) to executor  for transfer request: 0.
2022-05-12 22:33:18,587 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:18,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) about to wait for the following futures []
2022-05-12 22:33:18,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) done waiting for dependent futures
2022-05-12 22:33:18,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108003328}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 108003328}
2022-05-12 22:33:18,588 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:19,335 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136314880}) to executor  for transfer request: 0.
2022-05-12 22:33:19,335 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:19,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) about to wait for the following futures []
2022-05-12 22:33:19,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) done waiting for dependent futures
2022-05-12 22:33:19,335 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136314880}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 136314880}
2022-05-12 22:33:19,336 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:19,898 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90963968}) to executor  for transfer request: 0.
2022-05-12 22:33:19,899 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:19,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) about to wait for the following futures []
2022-05-12 22:33:19,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) done waiting for dependent futures
2022-05-12 22:33:19,899 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90963968}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 90963968}
2022-05-12 22:33:19,899 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:20,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121110528}) to executor  for transfer request: 0.
2022-05-12 22:33:20,317 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:20,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) about to wait for the following futures []
2022-05-12 22:33:20,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) done waiting for dependent futures
2022-05-12 22:33:20,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121110528}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 121110528}
2022-05-12 22:33:20,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:21,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128974848}) to executor  for transfer request: 0.
2022-05-12 22:33:21,154 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:21,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) about to wait for the following futures []
2022-05-12 22:33:21,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) done waiting for dependent futures
2022-05-12 22:33:21,155 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128974848}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 128974848}
2022-05-12 22:33:21,155 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:21,247 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143917056}) to executor  for transfer request: 0.
2022-05-12 22:33:21,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:21,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) about to wait for the following futures []
2022-05-12 22:33:21,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) done waiting for dependent futures
2022-05-12 22:33:21,248 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143917056}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 143917056}
2022-05-12 22:33:21,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,353 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151519232}) to executor  for transfer request: 0.
2022-05-12 22:33:23,353 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) about to wait for the following futures []
2022-05-12 22:33:23,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) done waiting for dependent futures
2022-05-12 22:33:23,353 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151519232}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 151519232}
2022-05-12 22:33:23,354 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,586 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39845888}) to executor  for transfer request: 0.
2022-05-12 22:33:23,586 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,586 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) about to wait for the following futures []
2022-05-12 22:33:23,586 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) done waiting for dependent futures
2022-05-12 22:33:23,586 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39845888}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 39845888}
2022-05-12 22:33:23,587 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108265472}) to executor  for transfer request: 0.
2022-05-12 22:33:25,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) about to wait for the following futures []
2022-05-12 22:33:25,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) done waiting for dependent futures
2022-05-12 22:33:25,927 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108265472}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 108265472}
2022-05-12 22:33:25,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:26,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:33:26,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:26,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:33:26,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:33:26,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 5505024}
2022-05-12 22:33:26,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:27,210 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129236992}) to executor  for transfer request: 0.
2022-05-12 22:33:27,210 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:27,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) about to wait for the following futures []
2022-05-12 22:33:27,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) done waiting for dependent futures
2022-05-12 22:33:27,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129236992}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 129236992}
2022-05-12 22:33:27,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:27,973 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121372672}) to executor  for transfer request: 0.
2022-05-12 22:33:27,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:27,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) about to wait for the following futures []
2022-05-12 22:33:27,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) done waiting for dependent futures
2022-05-12 22:33:27,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121372672}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 121372672}
2022-05-12 22:33:27,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:28,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112984064}) to executor  for transfer request: 0.
2022-05-12 22:33:28,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:28,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) about to wait for the following futures []
2022-05-12 22:33:28,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) done waiting for dependent futures
2022-05-12 22:33:28,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112984064}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 112984064}
2022-05-12 22:33:28,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:28,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91226112}) to executor  for transfer request: 0.
2022-05-12 22:33:28,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:28,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) about to wait for the following futures []
2022-05-12 22:33:28,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) done waiting for dependent futures
2022-05-12 22:33:28,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91226112}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 91226112}
2022-05-12 22:33:28,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:29,546 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151781376}) to executor  for transfer request: 0.
2022-05-12 22:33:29,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:29,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) about to wait for the following futures []
2022-05-12 22:33:29,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) done waiting for dependent futures
2022-05-12 22:33:29,547 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151781376}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 151781376}
2022-05-12 22:33:29,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,884 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81788928}) to executor  for transfer request: 0.
2022-05-12 22:33:30,884 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) about to wait for the following futures []
2022-05-12 22:33:30,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) done waiting for dependent futures
2022-05-12 22:33:30,885 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81788928}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 81788928}
2022-05-12 22:33:30,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:31,348 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144179200}) to executor  for transfer request: 0.
2022-05-12 22:33:31,349 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:31,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) about to wait for the following futures []
2022-05-12 22:33:31,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) done waiting for dependent futures
2022-05-12 22:33:31,349 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144179200}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 144179200}
2022-05-12 22:33:31,350 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:32,115 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129499136}) to executor  for transfer request: 0.
2022-05-12 22:33:32,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:32,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) about to wait for the following futures []
2022-05-12 22:33:32,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) done waiting for dependent futures
2022-05-12 22:33:32,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129499136}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 129499136}
2022-05-12 22:33:32,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:32,411 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108527616}) to executor  for transfer request: 0.
2022-05-12 22:33:32,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:32,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) about to wait for the following futures []
2022-05-12 22:33:32,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) done waiting for dependent futures
2022-05-12 22:33:32,412 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108527616}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 108527616}
2022-05-12 22:33:32,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:33,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136577024}) to executor  for transfer request: 0.
2022-05-12 22:33:33,999 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:33,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) about to wait for the following futures []
2022-05-12 22:33:34,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) done waiting for dependent futures
2022-05-12 22:33:34,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136577024}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 136577024}
2022-05-12 22:33:34,000 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:35,595 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:33:35,595 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:35,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:33:35,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:33:35,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 5767168}
2022-05-12 22:33:35,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,828 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91488256}) to executor  for transfer request: 0.
2022-05-12 22:33:36,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) about to wait for the following futures []
2022-05-12 22:33:36,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) done waiting for dependent futures
2022-05-12 22:33:36,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91488256}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 91488256}
2022-05-12 22:33:36,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,833 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40108032}) to executor  for transfer request: 0.
2022-05-12 22:33:36,833 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) about to wait for the following futures []
2022-05-12 22:33:36,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) done waiting for dependent futures
2022-05-12 22:33:36,833 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40108032}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 40108032}
2022-05-12 22:33:36,834 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144441344}) to executor  for transfer request: 0.
2022-05-12 22:33:37,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:37,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) about to wait for the following futures []
2022-05-12 22:33:37,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) done waiting for dependent futures
2022-05-12 22:33:37,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144441344}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 144441344}
2022-05-12 22:33:37,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129761280}) to executor  for transfer request: 0.
2022-05-12 22:33:37,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:37,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) about to wait for the following futures []
2022-05-12 22:33:37,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) done waiting for dependent futures
2022-05-12 22:33:37,912 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129761280}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 129761280}
2022-05-12 22:33:37,912 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:39,590 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108789760}) to executor  for transfer request: 0.
2022-05-12 22:33:39,590 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:39,590 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:39,591 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) about to wait for the following futures []
2022-05-12 22:33:39,591 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) done waiting for dependent futures
2022-05-12 22:33:39,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) about to wait for the following futures []
2022-05-12 22:33:39,591 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=159383552-167772159'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 159383552, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:39,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) done waiting for dependent futures
2022-05-12 22:33:39,592 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:39,592 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108789760}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 108789760}
2022-05-12 22:33:39,592 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:39,592 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:39,592 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:39,592 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:39,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:39,593 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:39,593 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:39,593 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:33:39,593 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:39,593 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:39,594 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=159383552-167772159', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:39,594 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:39,594 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:39,594 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:39,594 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:39,594 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:39,594 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:39,594 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:33:39,594 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:33:39,595 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:39,595 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=159383552-167772159
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223339Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:39,595 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223339Z
20220512/eu-central-1/s3/aws4_request
9cb06c851d6bfc55e699295f42141bea901a735161665fc9edb199822bffd235
2022-05-12 22:33:39,595 botocore.auth DEBUG    Signature:
a36ebe02053f182c510391207eff61ac114c8263f7606004ed963ac82d907840
2022-05-12 22:33:39,595 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:39,595 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:39,595 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:39,596 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:39,596 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:41,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152043520}) to executor  for transfer request: 0.
2022-05-12 22:33:41,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:41,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) about to wait for the following futures []
2022-05-12 22:33:41,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) done waiting for dependent futures
2022-05-12 22:33:41,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152043520}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 152043520}
2022-05-12 22:33:41,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,152 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91750400}) to executor  for transfer request: 0.
2022-05-12 22:33:44,152 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:44,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) about to wait for the following futures []
2022-05-12 22:33:44,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) done waiting for dependent futures
2022-05-12 22:33:44,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91750400}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 91750400}
2022-05-12 22:33:44,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144703488}) to executor  for transfer request: 0.
2022-05-12 22:33:44,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:44,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) about to wait for the following futures []
2022-05-12 22:33:44,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) done waiting for dependent futures
2022-05-12 22:33:44,166 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144703488}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 144703488}
2022-05-12 22:33:44,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,351 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130023424}) to executor  for transfer request: 0.
2022-05-12 22:33:44,352 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:44,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) about to wait for the following futures []
2022-05-12 22:33:44,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) done waiting for dependent futures
2022-05-12 22:33:44,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130023424}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 130023424}
2022-05-12 22:33:44,353 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,619 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113246208}) to executor  for transfer request: 0.
2022-05-12 22:33:44,619 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:44,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) about to wait for the following futures []
2022-05-12 22:33:44,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) done waiting for dependent futures
2022-05-12 22:33:44,619 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113246208}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 113246208}
2022-05-12 22:33:44,620 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:33:44,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:44,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:33:44,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:33:44,693 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 6029312}
2022-05-12 22:33:44,694 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:45,012 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:45,013 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ugoGYOjXcHxUvbrYrSF7hGEJ4TwmW97csXGAc3hv+UTW5hwvch4zVf6RUu4T8WyqD/eQsa4py4Q=', 'x-amz-request-id': 'H530NBNNG44Y3NPM', 'Date': 'Thu, 12 May 2022 22:33:45 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 159383552-167772159/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:45,013 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:45,014 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:45,014 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:45,014 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:45,579 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121634816}) to executor  for transfer request: 0.
2022-05-12 22:33:45,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:45,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) about to wait for the following futures []
2022-05-12 22:33:45,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) done waiting for dependent futures
2022-05-12 22:33:45,580 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121634816}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 121634816}
2022-05-12 22:33:45,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:46,320 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159383552}) to executor  for transfer request: 0.
2022-05-12 22:33:46,321 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:46,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) about to wait for the following futures []
2022-05-12 22:33:46,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) done waiting for dependent futures
2022-05-12 22:33:46,321 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159383552}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 159383552}
2022-05-12 22:33:46,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:49,115 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152305664}) to executor  for transfer request: 0.
2022-05-12 22:33:49,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) about to wait for the following futures []
2022-05-12 22:33:49,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) done waiting for dependent futures
2022-05-12 22:33:49,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152305664}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 152305664}
2022-05-12 22:33:49,116 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:49,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40370176}) to executor  for transfer request: 0.
2022-05-12 22:33:49,758 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) about to wait for the following futures []
2022-05-12 22:33:49,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) done waiting for dependent futures
2022-05-12 22:33:49,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40370176}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 40370176}
2022-05-12 22:33:49,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,605 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92012544}) to executor  for transfer request: 0.
2022-05-12 22:33:51,605 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,605 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,605 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) about to wait for the following futures []
2022-05-12 22:33:51,605 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) done waiting for dependent futures
2022-05-12 22:33:51,606 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=167772160-176160767'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 167772160, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:51,606 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:51,606 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:51,606 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:51,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) about to wait for the following futures []
2022-05-12 22:33:51,606 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:51,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) done waiting for dependent futures
2022-05-12 22:33:51,606 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:51,607 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92012544}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 92012544}
2022-05-12 22:33:51,607 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:51,607 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:51,607 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:33:51,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,607 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:51,608 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:51,608 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=167772160-176160767', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:51,608 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:51,608 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:51,608 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:51,608 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:51,608 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:51,608 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:51,608 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:33:51,609 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:33:51,609 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:51,609 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=167772160-176160767
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223351Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:51,609 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223351Z
20220512/eu-central-1/s3/aws4_request
f31ac0918c08a92d12b528dd0f99bd4dd2a45f45794d2dad6742e04109923aeb
2022-05-12 22:33:51,609 botocore.auth DEBUG    Signature:
e9204ed9de2b7d3c08e5781898c4d6220943f95dff6de46cd6bac92c2e1fe331
2022-05-12 22:33:51,609 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:51,609 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:51,610 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:51,610 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:51,610 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:51,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:33:51,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:33:51,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:33:51,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 6291456}
2022-05-12 22:33:51,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,630 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144965632}) to executor  for transfer request: 0.
2022-05-12 22:33:51,630 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,631 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) about to wait for the following futures []
2022-05-12 22:33:51,631 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) done waiting for dependent futures
2022-05-12 22:33:51,631 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144965632}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 144965632}
2022-05-12 22:33:51,631 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,270 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130285568}) to executor  for transfer request: 0.
2022-05-12 22:33:52,271 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) about to wait for the following futures []
2022-05-12 22:33:52,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) done waiting for dependent futures
2022-05-12 22:33:52,271 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130285568}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 130285568}
2022-05-12 22:33:52,272 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,749 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:52,749 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '/thpQeSJ27fkkQDrVKIBbXKijH79k7bHf1pb0vYngUfvQn4bkNpx1eUlylQP6pIgOiMhIdi/hbg=', 'x-amz-request-id': 'TC0P4HH21D0TZ6CP', 'Date': 'Thu, 12 May 2022 22:33:53 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 167772160-176160767/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:52,750 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:52,750 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:52,750 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:52,751 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:52,880 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159645696}) to executor  for transfer request: 0.
2022-05-12 22:33:52,880 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) about to wait for the following futures []
2022-05-12 22:33:52,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) done waiting for dependent futures
2022-05-12 22:33:52,881 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159645696}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 159645696}
2022-05-12 22:33:52,881 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:53,577 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136839168}) to executor  for transfer request: 0.
2022-05-12 22:33:53,577 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:53,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) about to wait for the following futures []
2022-05-12 22:33:53,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) done waiting for dependent futures
2022-05-12 22:33:53,578 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136839168}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 136839168}
2022-05-12 22:33:53,578 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:56,382 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121896960}) to executor  for transfer request: 0.
2022-05-12 22:33:56,382 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:56,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) about to wait for the following futures []
2022-05-12 22:33:56,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) done waiting for dependent futures
2022-05-12 22:33:56,383 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121896960}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 121896960}
2022-05-12 22:33:56,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:56,698 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152567808}) to executor  for transfer request: 0.
2022-05-12 22:33:56,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:56,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) about to wait for the following futures []
2022-05-12 22:33:56,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) done waiting for dependent futures
2022-05-12 22:33:56,699 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152567808}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 152567808}
2022-05-12 22:33:56,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:57,281 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159907840}) to executor  for transfer request: 0.
2022-05-12 22:33:57,281 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:57,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) about to wait for the following futures []
2022-05-12 22:33:57,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) done waiting for dependent futures
2022-05-12 22:33:57,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159907840}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 159907840}
2022-05-12 22:33:57,282 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:57,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130547712}) to executor  for transfer request: 0.
2022-05-12 22:33:57,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:57,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) about to wait for the following futures []
2022-05-12 22:33:57,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) done waiting for dependent futures
2022-05-12 22:33:57,953 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130547712}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 130547712}
2022-05-12 22:33:57,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:58,821 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113508352}) to executor  for transfer request: 0.
2022-05-12 22:33:58,822 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:58,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) about to wait for the following futures []
2022-05-12 22:33:58,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) done waiting for dependent futures
2022-05-12 22:33:58,822 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113508352}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 113508352}
2022-05-12 22:33:58,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,820 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145227776}) to executor  for transfer request: 0.
2022-05-12 22:33:59,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) about to wait for the following futures []
2022-05-12 22:33:59,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) done waiting for dependent futures
2022-05-12 22:33:59,821 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145227776}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 145227776}
2022-05-12 22:33:59,821 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:00,711 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167772160}) to executor  for transfer request: 0.
2022-05-12 22:34:00,711 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:00,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) about to wait for the following futures []
2022-05-12 22:34:00,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) done waiting for dependent futures
2022-05-12 22:34:00,712 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167772160}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 167772160}
2022-05-12 22:34:00,712 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:34:01,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:01,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:34:01,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:34:01,463 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 6553600}
2022-05-12 22:34:01,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160169984}) to executor  for transfer request: 0.
2022-05-12 22:34:01,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:01,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) about to wait for the following futures []
2022-05-12 22:34:01,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) done waiting for dependent futures
2022-05-12 22:34:01,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160169984}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 160169984}
2022-05-12 22:34:01,869 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:03,425 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130809856}) to executor  for transfer request: 0.
2022-05-12 22:34:03,425 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:03,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) about to wait for the following futures []
2022-05-12 22:34:03,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) done waiting for dependent futures
2022-05-12 22:34:03,426 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130809856}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 130809856}
2022-05-12 22:34:03,426 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:04,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145489920}) to executor  for transfer request: 0.
2022-05-12 22:34:04,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:04,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) about to wait for the following futures []
2022-05-12 22:34:04,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) done waiting for dependent futures
2022-05-12 22:34:04,791 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145489920}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 145489920}
2022-05-12 22:34:04,791 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:05,069 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40632320}) to executor  for transfer request: 0.
2022-05-12 22:34:05,069 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:05,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) about to wait for the following futures []
2022-05-12 22:34:05,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) done waiting for dependent futures
2022-05-12 22:34:05,070 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40632320}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 40632320}
2022-05-12 22:34:05,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,028 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122159104}) to executor  for transfer request: 0.
2022-05-12 22:34:06,028 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,028 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) about to wait for the following futures []
2022-05-12 22:34:06,028 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) done waiting for dependent futures
2022-05-12 22:34:06,029 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122159104}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 122159104}
2022-05-12 22:34:06,029 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,812 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160432128}) to executor  for transfer request: 0.
2022-05-12 22:34:06,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) about to wait for the following futures []
2022-05-12 22:34:06,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) done waiting for dependent futures
2022-05-12 22:34:06,813 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160432128}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 160432128}
2022-05-12 22:34:06,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:07,345 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82051072}) to executor  for transfer request: 0.
2022-05-12 22:34:07,345 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:07,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) about to wait for the following futures []
2022-05-12 22:34:07,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) done waiting for dependent futures
2022-05-12 22:34:07,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82051072}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 82051072}
2022-05-12 22:34:07,346 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:07,352 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152829952}) to executor  for transfer request: 0.
2022-05-12 22:34:07,352 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:07,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) about to wait for the following futures []
2022-05-12 22:34:07,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) done waiting for dependent futures
2022-05-12 22:34:07,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152829952}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 152829952}
2022-05-12 22:34:07,353 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:07,929 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168034304}) to executor  for transfer request: 0.
2022-05-12 22:34:07,930 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:07,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) about to wait for the following futures []
2022-05-12 22:34:07,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) done waiting for dependent futures
2022-05-12 22:34:07,930 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168034304}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 168034304}
2022-05-12 22:34:07,931 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:08,918 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137101312}) to executor  for transfer request: 0.
2022-05-12 22:34:08,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:08,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) about to wait for the following futures []
2022-05-12 22:34:08,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) done waiting for dependent futures
2022-05-12 22:34:08,919 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137101312}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 137101312}
2022-05-12 22:34:08,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:09,850 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131072000}) to executor  for transfer request: 0.
2022-05-12 22:34:09,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:09,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) about to wait for the following futures []
2022-05-12 22:34:09,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) done waiting for dependent futures
2022-05-12 22:34:09,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131072000}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 131072000}
2022-05-12 22:34:09,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,743 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:34:10,743 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:34:10,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:34:10,744 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 6815744}
2022-05-12 22:34:10,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160694272}) to executor  for transfer request: 0.
2022-05-12 22:34:10,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) about to wait for the following futures []
2022-05-12 22:34:10,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) done waiting for dependent futures
2022-05-12 22:34:10,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160694272}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 160694272}
2022-05-12 22:34:10,929 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:11,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113770496}) to executor  for transfer request: 0.
2022-05-12 22:34:11,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:11,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) about to wait for the following futures []
2022-05-12 22:34:11,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) done waiting for dependent futures
2022-05-12 22:34:11,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113770496}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 113770496}
2022-05-12 22:34:11,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145752064}) to executor  for transfer request: 0.
2022-05-12 22:34:13,221 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) about to wait for the following futures []
2022-05-12 22:34:13,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) done waiting for dependent futures
2022-05-12 22:34:13,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145752064}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 145752064}
2022-05-12 22:34:13,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153092096}) to executor  for transfer request: 0.
2022-05-12 22:34:13,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) about to wait for the following futures []
2022-05-12 22:34:13,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) done waiting for dependent futures
2022-05-12 22:34:13,597 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153092096}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 153092096}
2022-05-12 22:34:13,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:14,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122421248}) to executor  for transfer request: 0.
2022-05-12 22:34:14,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:14,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) about to wait for the following futures []
2022-05-12 22:34:14,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) done waiting for dependent futures
2022-05-12 22:34:14,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122421248}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 122421248}
2022-05-12 22:34:14,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:14,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168296448}) to executor  for transfer request: 0.
2022-05-12 22:34:14,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:14,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) about to wait for the following futures []
2022-05-12 22:34:14,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) done waiting for dependent futures
2022-05-12 22:34:14,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168296448}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 168296448}
2022-05-12 22:34:14,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:15,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:34:15,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:15,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:34:15,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:34:15,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 7077888}
2022-05-12 22:34:15,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:16,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131334144}) to executor  for transfer request: 0.
2022-05-12 22:34:16,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:16,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) about to wait for the following futures []
2022-05-12 22:34:16,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) done waiting for dependent futures
2022-05-12 22:34:16,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131334144}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 131334144}
2022-05-12 22:34:16,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:17,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160956416}) to executor  for transfer request: 0.
2022-05-12 22:34:17,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:17,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) about to wait for the following futures []
2022-05-12 22:34:17,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) done waiting for dependent futures
2022-05-12 22:34:17,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160956416}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 160956416}
2022-05-12 22:34:17,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:17,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40894464}) to executor  for transfer request: 0.
2022-05-12 22:34:17,573 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:17,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) about to wait for the following futures []
2022-05-12 22:34:17,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) done waiting for dependent futures
2022-05-12 22:34:17,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40894464}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 40894464}
2022-05-12 22:34:17,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,896 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146014208}) to executor  for transfer request: 0.
2022-05-12 22:34:19,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) about to wait for the following futures []
2022-05-12 22:34:19,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) done waiting for dependent futures
2022-05-12 22:34:19,897 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146014208}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 146014208}
2022-05-12 22:34:19,897 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114032640}) to executor  for transfer request: 0.
2022-05-12 22:34:19,942 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) about to wait for the following futures []
2022-05-12 22:34:19,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) done waiting for dependent futures
2022-05-12 22:34:19,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114032640}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 114032640}
2022-05-12 22:34:19,942 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:20,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153354240}) to executor  for transfer request: 0.
2022-05-12 22:34:20,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:20,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) about to wait for the following futures []
2022-05-12 22:34:20,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) done waiting for dependent futures
2022-05-12 22:34:20,055 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153354240}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 153354240}
2022-05-12 22:34:20,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:22,223 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161218560}) to executor  for transfer request: 0.
2022-05-12 22:34:22,223 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:22,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) about to wait for the following futures []
2022-05-12 22:34:22,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) done waiting for dependent futures
2022-05-12 22:34:22,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161218560}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 161218560}
2022-05-12 22:34:22,224 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:22,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122683392}) to executor  for transfer request: 0.
2022-05-12 22:34:22,934 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:22,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) about to wait for the following futures []
2022-05-12 22:34:22,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) done waiting for dependent futures
2022-05-12 22:34:22,935 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122683392}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 122683392}
2022-05-12 22:34:22,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131596288}) to executor  for transfer request: 0.
2022-05-12 22:34:24,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:24,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) about to wait for the following futures []
2022-05-12 22:34:24,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) done waiting for dependent futures
2022-05-12 22:34:24,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131596288}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 131596288}
2022-05-12 22:34:24,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,945 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168558592}) to executor  for transfer request: 0.
2022-05-12 22:34:24,945 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:24,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) about to wait for the following futures []
2022-05-12 22:34:24,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) done waiting for dependent futures
2022-05-12 22:34:24,946 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168558592}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 168558592}
2022-05-12 22:34:24,946 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:27,382 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137363456}) to executor  for transfer request: 0.
2022-05-12 22:34:27,382 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:27,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) about to wait for the following futures []
2022-05-12 22:34:27,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) done waiting for dependent futures
2022-05-12 22:34:27,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137363456}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 137363456}
2022-05-12 22:34:27,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:27,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:34:27,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:27,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:34:27,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:34:27,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 7340032}
2022-05-12 22:34:27,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:28,158 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146276352}) to executor  for transfer request: 0.
2022-05-12 22:34:28,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:28,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) about to wait for the following futures []
2022-05-12 22:34:28,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) done waiting for dependent futures
2022-05-12 22:34:28,159 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146276352}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 146276352}
2022-05-12 22:34:28,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:29,302 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131858432}) to executor  for transfer request: 0.
2022-05-12 22:34:29,302 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:29,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) about to wait for the following futures []
2022-05-12 22:34:29,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) done waiting for dependent futures
2022-05-12 22:34:29,303 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131858432}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 131858432}
2022-05-12 22:34:29,303 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:29,457 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153616384}) to executor  for transfer request: 0.
2022-05-12 22:34:29,458 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:29,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) about to wait for the following futures []
2022-05-12 22:34:29,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) done waiting for dependent futures
2022-05-12 22:34:29,458 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153616384}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 153616384}
2022-05-12 22:34:29,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,504 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41156608}) to executor  for transfer request: 0.
2022-05-12 22:34:31,505 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,505 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) about to wait for the following futures []
2022-05-12 22:34:31,505 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) done waiting for dependent futures
2022-05-12 22:34:31,505 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41156608}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 41156608}
2022-05-12 22:34:31,506 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,602 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114294784}) to executor  for transfer request: 0.
2022-05-12 22:34:31,602 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) about to wait for the following futures []
2022-05-12 22:34:31,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) done waiting for dependent futures
2022-05-12 22:34:31,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114294784}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 114294784}
2022-05-12 22:34:31,603 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,898 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168820736}) to executor  for transfer request: 0.
2022-05-12 22:34:31,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) about to wait for the following futures []
2022-05-12 22:34:31,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) done waiting for dependent futures
2022-05-12 22:34:31,899 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168820736}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 168820736}
2022-05-12 22:34:31,899 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:33,150 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161480704}) to executor  for transfer request: 0.
2022-05-12 22:34:33,150 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:33,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) about to wait for the following futures []
2022-05-12 22:34:33,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) done waiting for dependent futures
2022-05-12 22:34:33,151 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161480704}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 161480704}
2022-05-12 22:34:33,151 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:35,866 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146538496}) to executor  for transfer request: 0.
2022-05-12 22:34:35,866 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:35,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) about to wait for the following futures []
2022-05-12 22:34:35,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) done waiting for dependent futures
2022-05-12 22:34:35,867 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146538496}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 146538496}
2022-05-12 22:34:35,867 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:36,871 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153878528}) to executor  for transfer request: 0.
2022-05-12 22:34:36,871 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:36,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) about to wait for the following futures []
2022-05-12 22:34:36,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) done waiting for dependent futures
2022-05-12 22:34:36,872 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153878528}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 153878528}
2022-05-12 22:34:36,872 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137625600}) to executor  for transfer request: 0.
2022-05-12 22:34:37,059 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) about to wait for the following futures []
2022-05-12 22:34:37,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) done waiting for dependent futures
2022-05-12 22:34:37,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137625600}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 137625600}
2022-05-12 22:34:37,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:34:37,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:34:37,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:34:37,750 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 7602176}
2022-05-12 22:34:37,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,911 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132120576}) to executor  for transfer request: 0.
2022-05-12 22:34:37,911 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) about to wait for the following futures []
2022-05-12 22:34:37,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) done waiting for dependent futures
2022-05-12 22:34:37,912 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132120576}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 132120576}
2022-05-12 22:34:37,912 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:38,120 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169082880}) to executor  for transfer request: 0.
2022-05-12 22:34:38,120 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:38,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) about to wait for the following futures []
2022-05-12 22:34:38,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) done waiting for dependent futures
2022-05-12 22:34:38,121 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169082880}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 169082880}
2022-05-12 22:34:38,121 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,871 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146800640}) to executor  for transfer request: 0.
2022-05-12 22:34:39,871 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) about to wait for the following futures []
2022-05-12 22:34:39,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) done waiting for dependent futures
2022-05-12 22:34:39,872 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146800640}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 146800640}
2022-05-12 22:34:39,873 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:40,918 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161742848}) to executor  for transfer request: 0.
2022-05-12 22:34:40,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:40,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) about to wait for the following futures []
2022-05-12 22:34:40,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) done waiting for dependent futures
2022-05-12 22:34:40,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161742848}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 161742848}
2022-05-12 22:34:40,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:41,375 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114556928}) to executor  for transfer request: 0.
2022-05-12 22:34:41,375 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) about to wait for the following futures []
2022-05-12 22:34:41,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) done waiting for dependent futures
2022-05-12 22:34:41,376 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114556928}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 114556928}
2022-05-12 22:34:41,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:46,277 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154140672}) to executor  for transfer request: 0.
2022-05-12 22:34:46,277 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:46,277 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) about to wait for the following futures []
2022-05-12 22:34:46,277 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) done waiting for dependent futures
2022-05-12 22:34:46,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154140672}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 154140672}
2022-05-12 22:34:46,278 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:46,433 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122945536}) to executor  for transfer request: 0.
2022-05-12 22:34:46,433 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:46,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) about to wait for the following futures []
2022-05-12 22:34:46,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) done waiting for dependent futures
2022-05-12 22:34:46,434 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122945536}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 122945536}
2022-05-12 22:34:46,434 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:47,086 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137887744}) to executor  for transfer request: 0.
2022-05-12 22:34:47,087 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:47,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) about to wait for the following futures []
2022-05-12 22:34:47,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) done waiting for dependent futures
2022-05-12 22:34:47,087 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137887744}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 137887744}
2022-05-12 22:34:47,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:47,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162004992}) to executor  for transfer request: 0.
2022-05-12 22:34:47,885 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:47,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) about to wait for the following futures []
2022-05-12 22:34:47,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) done waiting for dependent futures
2022-05-12 22:34:47,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162004992}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 162004992}
2022-05-12 22:34:47,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:49,240 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147062784}) to executor  for transfer request: 0.
2022-05-12 22:34:49,240 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:49,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) about to wait for the following futures []
2022-05-12 22:34:49,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) done waiting for dependent futures
2022-05-12 22:34:49,241 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147062784}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 147062784}
2022-05-12 22:34:49,241 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:49,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132382720}) to executor  for transfer request: 0.
2022-05-12 22:34:49,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:49,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) about to wait for the following futures []
2022-05-12 22:34:49,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) done waiting for dependent futures
2022-05-12 22:34:49,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132382720}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 132382720}
2022-05-12 22:34:49,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:50,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169345024}) to executor  for transfer request: 0.
2022-05-12 22:34:50,208 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:50,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) about to wait for the following futures []
2022-05-12 22:34:50,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) done waiting for dependent futures
2022-05-12 22:34:50,208 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169345024}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 169345024}
2022-05-12 22:34:50,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:50,925 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82313216}) to executor  for transfer request: 0.
2022-05-12 22:34:50,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:50,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) about to wait for the following futures []
2022-05-12 22:34:50,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) done waiting for dependent futures
2022-05-12 22:34:50,926 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82313216}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 82313216}
2022-05-12 22:34:50,927 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:53,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154402816}) to executor  for transfer request: 0.
2022-05-12 22:34:53,999 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) about to wait for the following futures []
2022-05-12 22:34:54,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) done waiting for dependent futures
2022-05-12 22:34:54,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154402816}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 154402816}
2022-05-12 22:34:54,001 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147324928}) to executor  for transfer request: 0.
2022-05-12 22:34:54,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) about to wait for the following futures []
2022-05-12 22:34:54,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) done waiting for dependent futures
2022-05-12 22:34:54,463 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147324928}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 147324928}
2022-05-12 22:34:54,463 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132644864}) to executor  for transfer request: 0.
2022-05-12 22:34:54,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) about to wait for the following futures []
2022-05-12 22:34:54,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) done waiting for dependent futures
2022-05-12 22:34:54,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132644864}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 132644864}
2022-05-12 22:34:54,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:56,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162267136}) to executor  for transfer request: 0.
2022-05-12 22:34:56,077 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:56,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) about to wait for the following futures []
2022-05-12 22:34:56,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) done waiting for dependent futures
2022-05-12 22:34:56,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162267136}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 162267136}
2022-05-12 22:34:56,078 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:56,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:34:56,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:56,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:34:56,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:34:56,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 7864320}
2022-05-12 22:34:56,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,346 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169607168}) to executor  for transfer request: 0.
2022-05-12 22:34:57,346 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:57,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) about to wait for the following futures []
2022-05-12 22:34:57,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) done waiting for dependent futures
2022-05-12 22:34:57,347 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169607168}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 169607168}
2022-05-12 22:34:57,348 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,915 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138149888}) to executor  for transfer request: 0.
2022-05-12 22:34:57,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:57,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) about to wait for the following futures []
2022-05-12 22:34:57,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) done waiting for dependent futures
2022-05-12 22:34:57,916 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138149888}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 138149888}
2022-05-12 22:34:57,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:59,706 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147587072}) to executor  for transfer request: 0.
2022-05-12 22:34:59,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:59,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) about to wait for the following futures []
2022-05-12 22:34:59,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) done waiting for dependent futures
2022-05-12 22:34:59,707 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147587072}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 147587072}
2022-05-12 22:34:59,707 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:00,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132907008}) to executor  for transfer request: 0.
2022-05-12 22:35:00,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:00,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) about to wait for the following futures []
2022-05-12 22:35:00,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) done waiting for dependent futures
2022-05-12 22:35:00,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132907008}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 132907008}
2022-05-12 22:35:00,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:03,674 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169869312}) to executor  for transfer request: 0.
2022-05-12 22:35:03,674 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:03,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) about to wait for the following futures []
2022-05-12 22:35:03,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) done waiting for dependent futures
2022-05-12 22:35:03,675 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169869312}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 169869312}
2022-05-12 22:35:03,675 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:03,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162529280}) to executor  for transfer request: 0.
2022-05-12 22:35:03,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:03,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) about to wait for the following futures []
2022-05-12 22:35:03,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) done waiting for dependent futures
2022-05-12 22:35:03,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162529280}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 162529280}
2022-05-12 22:35:03,929 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:04,242 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154664960}) to executor  for transfer request: 0.
2022-05-12 22:35:04,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:04,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) about to wait for the following futures []
2022-05-12 22:35:04,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) done waiting for dependent futures
2022-05-12 22:35:04,243 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154664960}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 154664960}
2022-05-12 22:35:04,243 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:04,551 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123207680}) to executor  for transfer request: 0.
2022-05-12 22:35:04,551 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:04,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) about to wait for the following futures []
2022-05-12 22:35:04,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) done waiting for dependent futures
2022-05-12 22:35:04,552 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123207680}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 123207680}
2022-05-12 22:35:04,552 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:05,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147849216}) to executor  for transfer request: 0.
2022-05-12 22:35:05,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:05,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) about to wait for the following futures []
2022-05-12 22:35:05,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) done waiting for dependent futures
2022-05-12 22:35:05,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147849216}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 147849216}
2022-05-12 22:35:05,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:35:06,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,293 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:35:06,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:35:06,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:35:06,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 8126464}
2022-05-12 22:35:06,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,294 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:35:06,295 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:35:06,295 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:35:06,295 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,382 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41418752}) to executor  for transfer request: 0.
2022-05-12 22:35:06,383 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) about to wait for the following futures []
2022-05-12 22:35:06,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) done waiting for dependent futures
2022-05-12 22:35:06,383 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41418752}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 41418752}
2022-05-12 22:35:06,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133169152}) to executor  for transfer request: 0.
2022-05-12 22:35:06,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) about to wait for the following futures []
2022-05-12 22:35:06,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) done waiting for dependent futures
2022-05-12 22:35:06,791 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133169152}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 133169152}
2022-05-12 22:35:06,791 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,012 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114819072}) to executor  for transfer request: 0.
2022-05-12 22:35:09,013 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,013 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) about to wait for the following futures []
2022-05-12 22:35:09,013 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) done waiting for dependent futures
2022-05-12 22:35:09,013 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114819072}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 114819072}
2022-05-12 22:35:09,013 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170131456}) to executor  for transfer request: 0.
2022-05-12 22:35:09,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) about to wait for the following futures []
2022-05-12 22:35:09,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) done waiting for dependent futures
2022-05-12 22:35:09,867 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170131456}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 170131456}
2022-05-12 22:35:09,867 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,243 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138412032}) to executor  for transfer request: 0.
2022-05-12 22:35:10,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) about to wait for the following futures []
2022-05-12 22:35:10,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) done waiting for dependent futures
2022-05-12 22:35:10,244 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138412032}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 138412032}
2022-05-12 22:35:10,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,615 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162791424}) to executor  for transfer request: 0.
2022-05-12 22:35:10,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) about to wait for the following futures []
2022-05-12 22:35:10,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) done waiting for dependent futures
2022-05-12 22:35:10,616 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162791424}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 162791424}
2022-05-12 22:35:10,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:11,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133431296}) to executor  for transfer request: 0.
2022-05-12 22:35:11,009 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:11,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) about to wait for the following futures []
2022-05-12 22:35:11,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) done waiting for dependent futures
2022-05-12 22:35:11,010 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133431296}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 133431296}
2022-05-12 22:35:11,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:13,249 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154927104}) to executor  for transfer request: 0.
2022-05-12 22:35:13,249 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:13,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) about to wait for the following futures []
2022-05-12 22:35:13,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) done waiting for dependent futures
2022-05-12 22:35:13,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154927104}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 154927104}
2022-05-12 22:35:13,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:14,871 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133693440}) to executor  for transfer request: 0.
2022-05-12 22:35:14,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:14,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) about to wait for the following futures []
2022-05-12 22:35:14,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) done waiting for dependent futures
2022-05-12 22:35:14,872 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133693440}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 133693440}
2022-05-12 22:35:14,873 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148111360}) to executor  for transfer request: 0.
2022-05-12 22:35:15,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) about to wait for the following futures []
2022-05-12 22:35:15,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) done waiting for dependent futures
2022-05-12 22:35:15,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148111360}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 148111360}
2022-05-12 22:35:15,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,724 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163053568}) to executor  for transfer request: 0.
2022-05-12 22:35:17,724 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:17,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) about to wait for the following futures []
2022-05-12 22:35:17,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) done waiting for dependent futures
2022-05-12 22:35:17,725 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163053568}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 163053568}
2022-05-12 22:35:17,725 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,746 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138674176}) to executor  for transfer request: 0.
2022-05-12 22:35:17,746 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:17,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) about to wait for the following futures []
2022-05-12 22:35:17,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) done waiting for dependent futures
2022-05-12 22:35:17,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138674176}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 138674176}
2022-05-12 22:35:17,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170393600}) to executor  for transfer request: 0.
2022-05-12 22:35:20,545 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) about to wait for the following futures []
2022-05-12 22:35:20,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) done waiting for dependent futures
2022-05-12 22:35:20,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170393600}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 170393600}
2022-05-12 22:35:20,546 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,272 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148373504}) to executor  for transfer request: 0.
2022-05-12 22:35:21,272 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) about to wait for the following futures []
2022-05-12 22:35:21,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) done waiting for dependent futures
2022-05-12 22:35:21,273 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148373504}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 148373504}
2022-05-12 22:35:21,273 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:22,731 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133955584}) to executor  for transfer request: 0.
2022-05-12 22:35:22,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:22,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:22,731 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) about to wait for the following futures []
2022-05-12 22:35:22,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) about to wait for the following futures []
2022-05-12 22:35:22,732 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) done waiting for dependent futures
2022-05-12 22:35:22,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) done waiting for dependent futures
2022-05-12 22:35:22,732 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=176160768-184549375'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 176160768, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:22,732 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133955584}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 133955584}
2022-05-12 22:35:22,732 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:22,733 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:22,733 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:22,733 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:22,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:22,733 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:22,733 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:22,734 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:22,734 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:35:22,734 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:22,734 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:22,734 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=176160768-184549375', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:22,734 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:22,734 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:22,734 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:22,734 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:22,734 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:22,734 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:22,734 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:35:22,734 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:35:22,734 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:22,734 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=176160768-184549375
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223522Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:22,734 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223522Z
20220512/eu-central-1/s3/aws4_request
f2ecb15b5161c843ca38e3a3d12e1545331b92c453e9abef9ac915dc15df1d3b
2022-05-12 22:35:22,734 botocore.auth DEBUG    Signature:
b5346d131160f5de2c8d788b8bfe65aff47c2e8dd90dc77b77f84af7c37a1036
2022-05-12 22:35:22,735 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:22,735 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:22,735 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:22,735 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:22,735 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:35:22,835 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155189248}) to executor  for transfer request: 0.
2022-05-12 22:35:22,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:22,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) about to wait for the following futures []
2022-05-12 22:35:22,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) done waiting for dependent futures
2022-05-12 22:35:22,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155189248}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 155189248}
2022-05-12 22:35:22,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:23,313 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163315712}) to executor  for transfer request: 0.
2022-05-12 22:35:23,313 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:23,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) about to wait for the following futures []
2022-05-12 22:35:23,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) done waiting for dependent futures
2022-05-12 22:35:23,314 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163315712}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 163315712}
2022-05-12 22:35:23,315 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,354 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123469824}) to executor  for transfer request: 0.
2022-05-12 22:35:25,354 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) about to wait for the following futures []
2022-05-12 22:35:25,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) done waiting for dependent futures
2022-05-12 22:35:25,355 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123469824}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 123469824}
2022-05-12 22:35:25,355 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:26,494 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170655744}) to executor  for transfer request: 0.
2022-05-12 22:35:26,494 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:26,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) about to wait for the following futures []
2022-05-12 22:35:26,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) done waiting for dependent futures
2022-05-12 22:35:26,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170655744}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 170655744}
2022-05-12 22:35:26,495 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:26,962 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148635648}) to executor  for transfer request: 0.
2022-05-12 22:35:26,962 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:26,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) about to wait for the following futures []
2022-05-12 22:35:26,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) done waiting for dependent futures
2022-05-12 22:35:26,963 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148635648}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 148635648}
2022-05-12 22:35:26,963 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,461 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115081216}) to executor  for transfer request: 0.
2022-05-12 22:35:27,461 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) about to wait for the following futures []
2022-05-12 22:35:27,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) done waiting for dependent futures
2022-05-12 22:35:27,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115081216}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 115081216}
2022-05-12 22:35:27,462 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:28,275 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138936320}) to executor  for transfer request: 0.
2022-05-12 22:35:28,276 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:28,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) about to wait for the following futures []
2022-05-12 22:35:28,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) done waiting for dependent futures
2022-05-12 22:35:28,276 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138936320}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 138936320}
2022-05-12 22:35:28,277 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:28,387 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:28,388 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'h011wRw2UrYZKIcWZ5ddKmYxsJvSYm9I5cI0KaTOB51YqvypYPn+Tj7ByyEsuk/R2Armj8FHD40=', 'x-amz-request-id': 'S6PF2BACKN1YJHGW', 'Date': 'Thu, 12 May 2022 22:35:29 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 176160768-184549375/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:28,388 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:28,389 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:28,389 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:28,389 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:29,494 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163577856}) to executor  for transfer request: 0.
2022-05-12 22:35:29,494 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:29,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) about to wait for the following futures []
2022-05-12 22:35:29,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) done waiting for dependent futures
2022-05-12 22:35:29,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163577856}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 163577856}
2022-05-12 22:35:29,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:30,122 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155451392}) to executor  for transfer request: 0.
2022-05-12 22:35:30,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:30,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) about to wait for the following futures []
2022-05-12 22:35:30,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) done waiting for dependent futures
2022-05-12 22:35:30,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155451392}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 155451392}
2022-05-12 22:35:30,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,814 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148897792}) to executor  for transfer request: 0.
2022-05-12 22:35:31,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) about to wait for the following futures []
2022-05-12 22:35:31,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) done waiting for dependent futures
2022-05-12 22:35:31,815 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148897792}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 148897792}
2022-05-12 22:35:31,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,833 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82575360}) to executor  for transfer request: 0.
2022-05-12 22:35:31,834 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) about to wait for the following futures []
2022-05-12 22:35:31,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) done waiting for dependent futures
2022-05-12 22:35:31,834 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82575360}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 82575360}
2022-05-12 22:35:31,834 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:34,309 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155713536}) to executor  for transfer request: 0.
2022-05-12 22:35:34,309 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) about to wait for the following futures []
2022-05-12 22:35:34,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) done waiting for dependent futures
2022-05-12 22:35:34,310 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155713536}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 155713536}
2022-05-12 22:35:34,310 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:34,558 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163840000}) to executor  for transfer request: 0.
2022-05-12 22:35:34,558 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) about to wait for the following futures []
2022-05-12 22:35:34,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) done waiting for dependent futures
2022-05-12 22:35:34,559 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163840000}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 163840000}
2022-05-12 22:35:34,559 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:34,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176160768}) to executor  for transfer request: 0.
2022-05-12 22:35:34,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) about to wait for the following futures []
2022-05-12 22:35:34,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) done waiting for dependent futures
2022-05-12 22:35:34,740 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176160768}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 176160768}
2022-05-12 22:35:34,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,806 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41680896}) to executor  for transfer request: 0.
2022-05-12 22:35:35,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) about to wait for the following futures []
2022-05-12 22:35:35,807 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) about to wait for the following futures []
2022-05-12 22:35:35,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) done waiting for dependent futures
2022-05-12 22:35:35,807 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) done waiting for dependent futures
2022-05-12 22:35:35,807 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41680896}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 41680896}
2022-05-12 22:35:35,808 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=184549376-192937983'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 184549376, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:35,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:35,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:35,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:35,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:35,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:35,809 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:35,809 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:35,809 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:35:35,809 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:35,809 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:35,809 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=184549376-192937983', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:35,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:35,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:35,810 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:35,810 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:35,810 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:35,810 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:35,810 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:35:35,810 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:35:35,810 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:35,810 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=184549376-192937983
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223535Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:35,810 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223535Z
20220512/eu-central-1/s3/aws4_request
fafc023eab9a320384d821b8955da328b4b8268a4e8f62eaf173132557d9460d
2022-05-12 22:35:35,811 botocore.auth DEBUG    Signature:
01df5f2623e6cceb8b629411590aba690b74f42b17615bc16e23bc1b5bb02b8e
2022-05-12 22:35:35,811 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:35,811 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:35,811 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:35,811 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:35,812 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:35:36,863 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:36,864 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'd354hzkTIv2VQ/NHWHS6ARXnYNIy6OYT/PhzHO3brniWaKHpiReVCA2XqJd+s6Yq+F5GVZL+cUo=', 'x-amz-request-id': 'E11W3F22EB2KQ249', 'Date': 'Thu, 12 May 2022 22:35:37 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 184549376-192937983/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:36,864 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:36,864 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:36,865 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:36,865 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:37,736 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155975680}) to executor  for transfer request: 0.
2022-05-12 22:35:37,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:37,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) about to wait for the following futures []
2022-05-12 22:35:37,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) done waiting for dependent futures
2022-05-12 22:35:37,737 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155975680}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 155975680}
2022-05-12 22:35:37,737 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:38,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149159936}) to executor  for transfer request: 0.
2022-05-12 22:35:38,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:38,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) about to wait for the following futures []
2022-05-12 22:35:38,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) done waiting for dependent futures
2022-05-12 22:35:38,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149159936}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 149159936}
2022-05-12 22:35:38,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:38,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170917888}) to executor  for transfer request: 0.
2022-05-12 22:35:38,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:38,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) about to wait for the following futures []
2022-05-12 22:35:38,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) done waiting for dependent futures
2022-05-12 22:35:38,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170917888}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 170917888}
2022-05-12 22:35:38,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:39,839 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123731968}) to executor  for transfer request: 0.
2022-05-12 22:35:39,839 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:39,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) about to wait for the following futures []
2022-05-12 22:35:39,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) done waiting for dependent futures
2022-05-12 22:35:39,840 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123731968}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 123731968}
2022-05-12 22:35:39,840 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,354 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164102144}) to executor  for transfer request: 0.
2022-05-12 22:35:40,354 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) about to wait for the following futures []
2022-05-12 22:35:40,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) done waiting for dependent futures
2022-05-12 22:35:40,355 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164102144}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 164102144}
2022-05-12 22:35:40,355 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,729 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139198464}) to executor  for transfer request: 0.
2022-05-12 22:35:40,729 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) about to wait for the following futures []
2022-05-12 22:35:40,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) done waiting for dependent futures
2022-05-12 22:35:40,730 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139198464}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 139198464}
2022-05-12 22:35:40,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:41,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149422080}) to executor  for transfer request: 0.
2022-05-12 22:35:41,971 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:41,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) about to wait for the following futures []
2022-05-12 22:35:41,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) done waiting for dependent futures
2022-05-12 22:35:41,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149422080}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 149422080}
2022-05-12 22:35:41,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,785 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184549376}) to executor  for transfer request: 0.
2022-05-12 22:35:43,785 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) about to wait for the following futures []
2022-05-12 22:35:43,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) done waiting for dependent futures
2022-05-12 22:35:43,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184549376}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 184549376}
2022-05-12 22:35:43,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,908 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176422912}) to executor  for transfer request: 0.
2022-05-12 22:35:43,908 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) about to wait for the following futures []
2022-05-12 22:35:43,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) done waiting for dependent futures
2022-05-12 22:35:43,909 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176422912}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 176422912}
2022-05-12 22:35:43,909 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:44,288 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115343360}) to executor  for transfer request: 0.
2022-05-12 22:35:44,288 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:44,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) about to wait for the following futures []
2022-05-12 22:35:44,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) done waiting for dependent futures
2022-05-12 22:35:44,289 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115343360}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 115343360}
2022-05-12 22:35:44,289 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:44,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156237824}) to executor  for transfer request: 0.
2022-05-12 22:35:44,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:44,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) about to wait for the following futures []
2022-05-12 22:35:44,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) done waiting for dependent futures
2022-05-12 22:35:44,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156237824}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 156237824}
2022-05-12 22:35:44,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:47,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171180032}) to executor  for transfer request: 0.
2022-05-12 22:35:47,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:47,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) about to wait for the following futures []
2022-05-12 22:35:47,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) done waiting for dependent futures
2022-05-12 22:35:47,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171180032}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 171180032}
2022-05-12 22:35:47,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184811520}) to executor  for transfer request: 0.
2022-05-12 22:35:49,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) about to wait for the following futures []
2022-05-12 22:35:49,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) done waiting for dependent futures
2022-05-12 22:35:49,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184811520}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 184811520}
2022-05-12 22:35:49,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139460608}) to executor  for transfer request: 0.
2022-05-12 22:35:49,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) about to wait for the following futures []
2022-05-12 22:35:49,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) done waiting for dependent futures
2022-05-12 22:35:49,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139460608}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 139460608}
2022-05-12 22:35:49,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:50,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164364288}) to executor  for transfer request: 0.
2022-05-12 22:35:50,933 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:50,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) about to wait for the following futures []
2022-05-12 22:35:50,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) done waiting for dependent futures
2022-05-12 22:35:50,934 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164364288}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 164364288}
2022-05-12 22:35:50,934 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156499968}) to executor  for transfer request: 0.
2022-05-12 22:35:51,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) about to wait for the following futures []
2022-05-12 22:35:51,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) done waiting for dependent futures
2022-05-12 22:35:51,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156499968}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 156499968}
2022-05-12 22:35:51,649 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,973 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149684224}) to executor  for transfer request: 0.
2022-05-12 22:35:51,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) about to wait for the following futures []
2022-05-12 22:35:51,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) done waiting for dependent futures
2022-05-12 22:35:51,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149684224}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 149684224}
2022-05-12 22:35:51,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:53,466 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176685056}) to executor  for transfer request: 0.
2022-05-12 22:35:53,466 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:53,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) about to wait for the following futures []
2022-05-12 22:35:53,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) done waiting for dependent futures
2022-05-12 22:35:53,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176685056}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 176685056}
2022-05-12 22:35:53,467 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:55,007 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185073664}) to executor  for transfer request: 0.
2022-05-12 22:35:55,007 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:55,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) about to wait for the following futures []
2022-05-12 22:35:55,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) done waiting for dependent futures
2022-05-12 22:35:55,007 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185073664}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 185073664}
2022-05-12 22:35:55,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:56,028 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164626432}) to executor  for transfer request: 0.
2022-05-12 22:35:56,029 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:56,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) about to wait for the following futures []
2022-05-12 22:35:56,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) done waiting for dependent futures
2022-05-12 22:35:56,029 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164626432}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 164626432}
2022-05-12 22:35:56,029 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:56,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156762112}) to executor  for transfer request: 0.
2022-05-12 22:35:56,458 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:56,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) about to wait for the following futures []
2022-05-12 22:35:56,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) done waiting for dependent futures
2022-05-12 22:35:56,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156762112}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 156762112}
2022-05-12 22:35:56,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:56,826 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171442176}) to executor  for transfer request: 0.
2022-05-12 22:35:56,826 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:56,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) about to wait for the following futures []
2022-05-12 22:35:56,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) done waiting for dependent futures
2022-05-12 22:35:56,827 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171442176}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 171442176}
2022-05-12 22:35:56,827 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,113 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139722752}) to executor  for transfer request: 0.
2022-05-12 22:35:57,114 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) about to wait for the following futures []
2022-05-12 22:35:57,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) done waiting for dependent futures
2022-05-12 22:35:57,114 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139722752}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 139722752}
2022-05-12 22:35:57,114 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:00,779 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164888576}) to executor  for transfer request: 0.
2022-05-12 22:36:00,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:00,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) about to wait for the following futures []
2022-05-12 22:36:00,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) done waiting for dependent futures
2022-05-12 22:36:00,780 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164888576}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 164888576}
2022-05-12 22:36:00,780 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:01,689 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115605504}) to executor  for transfer request: 0.
2022-05-12 22:36:01,689 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:01,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) about to wait for the following futures []
2022-05-12 22:36:01,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) done waiting for dependent futures
2022-05-12 22:36:01,690 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115605504}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 115605504}
2022-05-12 22:36:01,690 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:02,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185335808}) to executor  for transfer request: 0.
2022-05-12 22:36:02,611 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:02,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) about to wait for the following futures []
2022-05-12 22:36:02,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) done waiting for dependent futures
2022-05-12 22:36:02,612 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185335808}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 185335808}
2022-05-12 22:36:02,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:02,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171704320}) to executor  for transfer request: 0.
2022-05-12 22:36:02,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:02,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) about to wait for the following futures []
2022-05-12 22:36:02,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) done waiting for dependent futures
2022-05-12 22:36:02,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171704320}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 171704320}
2022-05-12 22:36:02,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:02,806 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123994112}) to executor  for transfer request: 0.
2022-05-12 22:36:02,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:02,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) about to wait for the following futures []
2022-05-12 22:36:02,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) done waiting for dependent futures
2022-05-12 22:36:02,806 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123994112}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 123994112}
2022-05-12 22:36:02,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:03,199 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157024256}) to executor  for transfer request: 0.
2022-05-12 22:36:03,199 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:03,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) about to wait for the following futures []
2022-05-12 22:36:03,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) done waiting for dependent futures
2022-05-12 22:36:03,200 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157024256}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 157024256}
2022-05-12 22:36:03,200 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:03,977 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149946368}) to executor  for transfer request: 0.
2022-05-12 22:36:03,978 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:03,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) about to wait for the following futures []
2022-05-12 22:36:03,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) done waiting for dependent futures
2022-05-12 22:36:03,978 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149946368}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 149946368}
2022-05-12 22:36:03,979 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,915 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139984896}) to executor  for transfer request: 0.
2022-05-12 22:36:05,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) about to wait for the following futures []
2022-05-12 22:36:05,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) done waiting for dependent futures
2022-05-12 22:36:05,916 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139984896}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 139984896}
2022-05-12 22:36:05,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:06,027 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165150720}) to executor  for transfer request: 0.
2022-05-12 22:36:06,027 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:06,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) about to wait for the following futures []
2022-05-12 22:36:06,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) done waiting for dependent futures
2022-05-12 22:36:06,028 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165150720}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 165150720}
2022-05-12 22:36:06,028 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:06,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176947200}) to executor  for transfer request: 0.
2022-05-12 22:36:06,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:06,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) about to wait for the following futures []
2022-05-12 22:36:06,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) done waiting for dependent futures
2022-05-12 22:36:06,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176947200}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 176947200}
2022-05-12 22:36:06,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:06,482 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82837504}) to executor  for transfer request: 0.
2022-05-12 22:36:06,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:06,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) about to wait for the following futures []
2022-05-12 22:36:06,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) done waiting for dependent futures
2022-05-12 22:36:06,483 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82837504}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 82837504}
2022-05-12 22:36:06,483 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:08,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185597952}) to executor  for transfer request: 0.
2022-05-12 22:36:08,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:08,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) about to wait for the following futures []
2022-05-12 22:36:08,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) done waiting for dependent futures
2022-05-12 22:36:08,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185597952}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 185597952}
2022-05-12 22:36:08,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:08,700 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171966464}) to executor  for transfer request: 0.
2022-05-12 22:36:08,700 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:08,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) about to wait for the following futures []
2022-05-12 22:36:08,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) done waiting for dependent futures
2022-05-12 22:36:08,701 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171966464}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 171966464}
2022-05-12 22:36:08,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:10,363 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150208512}) to executor  for transfer request: 0.
2022-05-12 22:36:10,363 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:10,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) about to wait for the following futures []
2022-05-12 22:36:10,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) done waiting for dependent futures
2022-05-12 22:36:10,364 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150208512}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 150208512}
2022-05-12 22:36:10,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:11,025 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165412864}) to executor  for transfer request: 0.
2022-05-12 22:36:11,025 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:11,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) about to wait for the following futures []
2022-05-12 22:36:11,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) done waiting for dependent futures
2022-05-12 22:36:11,026 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165412864}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 165412864}
2022-05-12 22:36:11,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:12,714 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157286400}) to executor  for transfer request: 0.
2022-05-12 22:36:12,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:12,715 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) about to wait for the following futures []
2022-05-12 22:36:12,715 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) done waiting for dependent futures
2022-05-12 22:36:12,715 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157286400}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 157286400}
2022-05-12 22:36:12,716 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:14,722 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177209344}) to executor  for transfer request: 0.
2022-05-12 22:36:14,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:14,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) about to wait for the following futures []
2022-05-12 22:36:14,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) done waiting for dependent futures
2022-05-12 22:36:14,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177209344}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 177209344}
2022-05-12 22:36:14,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150470656}) to executor  for transfer request: 0.
2022-05-12 22:36:15,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) about to wait for the following futures []
2022-05-12 22:36:15,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) done waiting for dependent futures
2022-05-12 22:36:15,140 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150470656}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 150470656}
2022-05-12 22:36:15,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:16,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140247040}) to executor  for transfer request: 0.
2022-05-12 22:36:16,402 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:16,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) about to wait for the following futures []
2022-05-12 22:36:16,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) done waiting for dependent futures
2022-05-12 22:36:16,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140247040}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 140247040}
2022-05-12 22:36:16,403 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,199 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115867648}) to executor  for transfer request: 0.
2022-05-12 22:36:17,199 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) about to wait for the following futures []
2022-05-12 22:36:17,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) done waiting for dependent futures
2022-05-12 22:36:17,200 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115867648}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 115867648}
2022-05-12 22:36:17,200 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172228608}) to executor  for transfer request: 0.
2022-05-12 22:36:17,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) about to wait for the following futures []
2022-05-12 22:36:17,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) done waiting for dependent futures
2022-05-12 22:36:17,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172228608}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 172228608}
2022-05-12 22:36:17,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,747 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185860096}) to executor  for transfer request: 0.
2022-05-12 22:36:18,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) about to wait for the following futures []
2022-05-12 22:36:18,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) done waiting for dependent futures
2022-05-12 22:36:18,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185860096}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 185860096}
2022-05-12 22:36:18,748 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:19,972 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124256256}) to executor  for transfer request: 0.
2022-05-12 22:36:19,973 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:19,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) about to wait for the following futures []
2022-05-12 22:36:19,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) done waiting for dependent futures
2022-05-12 22:36:19,973 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124256256}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 124256256}
2022-05-12 22:36:19,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:20,213 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165675008}) to executor  for transfer request: 0.
2022-05-12 22:36:20,213 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:20,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) about to wait for the following futures []
2022-05-12 22:36:20,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) done waiting for dependent futures
2022-05-12 22:36:20,214 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165675008}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 165675008}
2022-05-12 22:36:20,214 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:20,541 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157548544}) to executor  for transfer request: 0.
2022-05-12 22:36:20,541 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:20,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) about to wait for the following futures []
2022-05-12 22:36:20,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) done waiting for dependent futures
2022-05-12 22:36:20,541 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157548544}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 157548544}
2022-05-12 22:36:20,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:22,989 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177471488}) to executor  for transfer request: 0.
2022-05-12 22:36:22,989 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:22,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) about to wait for the following futures []
2022-05-12 22:36:22,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) done waiting for dependent futures
2022-05-12 22:36:22,990 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177471488}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 177471488}
2022-05-12 22:36:22,990 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:25,047 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186122240}) to executor  for transfer request: 0.
2022-05-12 22:36:25,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:25,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) about to wait for the following futures []
2022-05-12 22:36:25,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) done waiting for dependent futures
2022-05-12 22:36:25,048 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186122240}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 186122240}
2022-05-12 22:36:25,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:25,092 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150732800}) to executor  for transfer request: 0.
2022-05-12 22:36:25,093 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:25,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:25,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) about to wait for the following futures []
2022-05-12 22:36:25,093 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) about to wait for the following futures []
2022-05-12 22:36:25,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) done waiting for dependent futures
2022-05-12 22:36:25,093 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) done waiting for dependent futures
2022-05-12 22:36:25,093 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150732800}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 150732800}
2022-05-12 22:36:25,094 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=192937984-201326591'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 192937984, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:25,094 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:25,094 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:25,094 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:25,094 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:25,094 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:25,095 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:25,095 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:25,095 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:25,095 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:36:25,095 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:25,095 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:25,095 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=192937984-201326591', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:25,095 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:25,096 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:25,096 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:25,096 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:25,096 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:25,096 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:25,096 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:36:25,096 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:36:25,096 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:25,096 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=192937984-201326591
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223625Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:25,097 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223625Z
20220512/eu-central-1/s3/aws4_request
9b15ed5bbdf3767abd018a7534f0752e115551cfb65ac37aef0919ce1f0a6214
2022-05-12 22:36:25,097 botocore.auth DEBUG    Signature:
e5ea144ac2c974b471d2d4aadef822794a34c5f073e807bc043fc766a9e917f9
2022-05-12 22:36:25,097 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:25,097 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:25,097 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:25,098 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:25,098 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:36:25,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172490752}) to executor  for transfer request: 0.
2022-05-12 22:36:25,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:25,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) about to wait for the following futures []
2022-05-12 22:36:25,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) done waiting for dependent futures
2022-05-12 22:36:25,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172490752}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 172490752}
2022-05-12 22:36:25,268 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:25,778 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:25,778 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'rM1FQlU+EhB+iRGL2xd4ZDx2oNA44m/XaChM+o8DUAE7hyCIii6pO1jEbBWpVJdn61BhJeqHHAM=', 'x-amz-request-id': 'TBY7BTRX04S1BHAY', 'Date': 'Thu, 12 May 2022 22:36:26 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 192937984-201326591/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:36:25,778 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:25,779 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:25,779 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:25,779 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:26,765 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165937152}) to executor  for transfer request: 0.
2022-05-12 22:36:26,765 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:26,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) about to wait for the following futures []
2022-05-12 22:36:26,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) done waiting for dependent futures
2022-05-12 22:36:26,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165937152}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 165937152}
2022-05-12 22:36:26,766 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:28,128 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116129792}) to executor  for transfer request: 0.
2022-05-12 22:36:28,128 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:28,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) about to wait for the following futures []
2022-05-12 22:36:28,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) done waiting for dependent futures
2022-05-12 22:36:28,129 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116129792}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 116129792}
2022-05-12 22:36:28,130 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:28,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140509184}) to executor  for transfer request: 0.
2022-05-12 22:36:28,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:28,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) about to wait for the following futures []
2022-05-12 22:36:28,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) done waiting for dependent futures
2022-05-12 22:36:28,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140509184}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 140509184}
2022-05-12 22:36:28,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,000 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192937984}) to executor  for transfer request: 0.
2022-05-12 22:36:30,000 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) about to wait for the following futures []
2022-05-12 22:36:30,001 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) done waiting for dependent futures
2022-05-12 22:36:30,001 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192937984}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 192937984}
2022-05-12 22:36:30,001 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,630 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157810688}) to executor  for transfer request: 0.
2022-05-12 22:36:30,630 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) about to wait for the following futures []
2022-05-12 22:36:30,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) done waiting for dependent futures
2022-05-12 22:36:30,630 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157810688}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 157810688}
2022-05-12 22:36:30,631 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,621 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166199296}) to executor  for transfer request: 0.
2022-05-12 22:36:31,622 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:31,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) about to wait for the following futures []
2022-05-12 22:36:31,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) done waiting for dependent futures
2022-05-12 22:36:31,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166199296}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 166199296}
2022-05-12 22:36:31,623 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186384384}) to executor  for transfer request: 0.
2022-05-12 22:36:31,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:31,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) about to wait for the following futures []
2022-05-12 22:36:31,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) done waiting for dependent futures
2022-05-12 22:36:31,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186384384}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 186384384}
2022-05-12 22:36:31,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:35,190 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177733632}) to executor  for transfer request: 0.
2022-05-12 22:36:35,191 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:35,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) about to wait for the following futures []
2022-05-12 22:36:35,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) done waiting for dependent futures
2022-05-12 22:36:35,191 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177733632}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 177733632}
2022-05-12 22:36:35,192 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:35,210 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116391936}) to executor  for transfer request: 0.
2022-05-12 22:36:35,210 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:35,211 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) about to wait for the following futures []
2022-05-12 22:36:35,211 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) done waiting for dependent futures
2022-05-12 22:36:35,211 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116391936}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 116391936}
2022-05-12 22:36:35,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:36,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193200128}) to executor  for transfer request: 0.
2022-05-12 22:36:36,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:36,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) about to wait for the following futures []
2022-05-12 22:36:36,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) done waiting for dependent futures
2022-05-12 22:36:36,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193200128}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 193200128}
2022-05-12 22:36:36,805 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:36,892 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124518400}) to executor  for transfer request: 0.
2022-05-12 22:36:36,892 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:36,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) about to wait for the following futures []
2022-05-12 22:36:36,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) done waiting for dependent futures
2022-05-12 22:36:36,892 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124518400}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 124518400}
2022-05-12 22:36:36,893 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:38,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140771328}) to executor  for transfer request: 0.
2022-05-12 22:36:38,330 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:38,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) about to wait for the following futures []
2022-05-12 22:36:38,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) done waiting for dependent futures
2022-05-12 22:36:38,331 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140771328}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 140771328}
2022-05-12 22:36:38,331 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:38,435 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172752896}) to executor  for transfer request: 0.
2022-05-12 22:36:38,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:38,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) about to wait for the following futures []
2022-05-12 22:36:38,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) done waiting for dependent futures
2022-05-12 22:36:38,436 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172752896}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 172752896}
2022-05-12 22:36:38,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:38,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83099648}) to executor  for transfer request: 0.
2022-05-12 22:36:38,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:38,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) about to wait for the following futures []
2022-05-12 22:36:38,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) done waiting for dependent futures
2022-05-12 22:36:38,476 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83099648}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 83099648}
2022-05-12 22:36:38,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:38,531 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166461440}) to executor  for transfer request: 0.
2022-05-12 22:36:38,531 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:38,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) about to wait for the following futures []
2022-05-12 22:36:38,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) done waiting for dependent futures
2022-05-12 22:36:38,532 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166461440}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 166461440}
2022-05-12 22:36:38,532 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:39,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158072832}) to executor  for transfer request: 0.
2022-05-12 22:36:39,553 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:39,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) about to wait for the following futures []
2022-05-12 22:36:39,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) done waiting for dependent futures
2022-05-12 22:36:39,554 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158072832}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 158072832}
2022-05-12 22:36:39,554 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,336 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177995776}) to executor  for transfer request: 0.
2022-05-12 22:36:41,337 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) about to wait for the following futures []
2022-05-12 22:36:41,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) done waiting for dependent futures
2022-05-12 22:36:41,337 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177995776}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 177995776}
2022-05-12 22:36:41,337 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186646528}) to executor  for transfer request: 0.
2022-05-12 22:36:41,514 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) about to wait for the following futures []
2022-05-12 22:36:41,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) done waiting for dependent futures
2022-05-12 22:36:41,515 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186646528}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 186646528}
2022-05-12 22:36:41,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,426 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166723584}) to executor  for transfer request: 0.
2022-05-12 22:36:45,426 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:45,427 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) about to wait for the following futures []
2022-05-12 22:36:45,427 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) done waiting for dependent futures
2022-05-12 22:36:45,427 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166723584}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 166723584}
2022-05-12 22:36:45,427 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:46,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158334976}) to executor  for transfer request: 0.
2022-05-12 22:36:46,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:46,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) about to wait for the following futures []
2022-05-12 22:36:46,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) done waiting for dependent futures
2022-05-12 22:36:46,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158334976}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 158334976}
2022-05-12 22:36:46,051 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:46,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193462272}) to executor  for transfer request: 0.
2022-05-12 22:36:46,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:46,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) about to wait for the following futures []
2022-05-12 22:36:46,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) done waiting for dependent futures
2022-05-12 22:36:46,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193462272}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 193462272}
2022-05-12 22:36:46,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:46,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186908672}) to executor  for transfer request: 0.
2022-05-12 22:36:46,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:46,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) about to wait for the following futures []
2022-05-12 22:36:46,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) done waiting for dependent futures
2022-05-12 22:36:46,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186908672}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 186908672}
2022-05-12 22:36:46,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:47,743 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141033472}) to executor  for transfer request: 0.
2022-05-12 22:36:47,743 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) about to wait for the following futures []
2022-05-12 22:36:47,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) done waiting for dependent futures
2022-05-12 22:36:47,744 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141033472}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 141033472}
2022-05-12 22:36:47,744 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:47,799 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116654080}) to executor  for transfer request: 0.
2022-05-12 22:36:47,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) about to wait for the following futures []
2022-05-12 22:36:47,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) done waiting for dependent futures
2022-05-12 22:36:47,800 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116654080}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 116654080}
2022-05-12 22:36:47,800 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:48,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166985728}) to executor  for transfer request: 0.
2022-05-12 22:36:48,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:48,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) about to wait for the following futures []
2022-05-12 22:36:48,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) done waiting for dependent futures
2022-05-12 22:36:48,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166985728}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 166985728}
2022-05-12 22:36:48,374 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:48,811 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178257920}) to executor  for transfer request: 0.
2022-05-12 22:36:48,811 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:48,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) about to wait for the following futures []
2022-05-12 22:36:48,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) done waiting for dependent futures
2022-05-12 22:36:48,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178257920}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 178257920}
2022-05-12 22:36:48,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:48,856 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173015040}) to executor  for transfer request: 0.
2022-05-12 22:36:48,856 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:48,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) about to wait for the following futures []
2022-05-12 22:36:48,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) done waiting for dependent futures
2022-05-12 22:36:48,857 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173015040}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 173015040}
2022-05-12 22:36:48,857 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:50,163 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124780544}) to executor  for transfer request: 0.
2022-05-12 22:36:50,163 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) about to wait for the following futures []
2022-05-12 22:36:50,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) done waiting for dependent futures
2022-05-12 22:36:50,164 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124780544}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 124780544}
2022-05-12 22:36:50,164 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:51,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167247872}) to executor  for transfer request: 0.
2022-05-12 22:36:51,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:51,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) about to wait for the following futures []
2022-05-12 22:36:51,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) done waiting for dependent futures
2022-05-12 22:36:51,702 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167247872}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 167247872}
2022-05-12 22:36:51,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:51,930 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187170816}) to executor  for transfer request: 0.
2022-05-12 22:36:51,931 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:51,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) about to wait for the following futures []
2022-05-12 22:36:51,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) done waiting for dependent futures
2022-05-12 22:36:51,931 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187170816}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 187170816}
2022-05-12 22:36:51,932 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:53,719 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116916224}) to executor  for transfer request: 0.
2022-05-12 22:36:53,719 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:53,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) about to wait for the following futures []
2022-05-12 22:36:53,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) done waiting for dependent futures
2022-05-12 22:36:53,720 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116916224}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 116916224}
2022-05-12 22:36:53,720 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:54,700 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158597120}) to executor  for transfer request: 0.
2022-05-12 22:36:54,700 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:54,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) about to wait for the following futures []
2022-05-12 22:36:54,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) done waiting for dependent futures
2022-05-12 22:36:54,701 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158597120}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 158597120}
2022-05-12 22:36:54,701 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:54,806 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141295616}) to executor  for transfer request: 0.
2022-05-12 22:36:54,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:54,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) about to wait for the following futures []
2022-05-12 22:36:54,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) done waiting for dependent futures
2022-05-12 22:36:54,807 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141295616}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 141295616}
2022-05-12 22:36:54,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:55,480 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193724416}) to executor  for transfer request: 0.
2022-05-12 22:36:55,480 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:55,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) about to wait for the following futures []
2022-05-12 22:36:55,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) done waiting for dependent futures
2022-05-12 22:36:55,481 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193724416}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 193724416}
2022-05-12 22:36:55,481 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:56,737 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173277184}) to executor  for transfer request: 0.
2022-05-12 22:36:56,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:56,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) about to wait for the following futures []
2022-05-12 22:36:56,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) done waiting for dependent futures
2022-05-12 22:36:56,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173277184}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 173277184}
2022-05-12 22:36:56,738 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:59,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167510016}) to executor  for transfer request: 0.
2022-05-12 22:36:59,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:59,316 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:59,316 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) about to wait for the following futures []
2022-05-12 22:36:59,316 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) done waiting for dependent futures
2022-05-12 22:36:59,316 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=201326592-209715199'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 201326592, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:59,316 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:59,317 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:59,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) about to wait for the following futures []
2022-05-12 22:36:59,317 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:59,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) done waiting for dependent futures
2022-05-12 22:36:59,317 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:59,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167510016}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 167510016}
2022-05-12 22:36:59,318 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:59,319 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:59,319 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:59,319 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:36:59,319 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:59,319 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:59,319 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=201326592-209715199', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:59,319 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:59,319 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:59,320 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:59,320 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:59,320 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:59,320 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:59,320 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:59,320 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:36:59,321 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:36:59,321 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:59,321 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=201326592-209715199
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223659Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:59,321 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223659Z
20220512/eu-central-1/s3/aws4_request
00b00260578f71f9217b538ad9b18dce1aa23dd61af9afea6a157aedf5cb9c79
2022-05-12 22:36:59,321 botocore.auth DEBUG    Signature:
72b2868e7a19edde90b06a0aeded48bc676bd7584e8c7f6e343ed7a5b394a3ae
2022-05-12 22:36:59,322 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:59,322 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:59,322 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:59,322 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:59,486 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:59,487 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'VRIK8lVc7kFdbnJHidAPqqDfDUBc1XKvPyN3FPeBCfPxQ9VSh2/yMr+whfrSKzDCROSqxN+08Nc=', 'x-amz-request-id': 'TAXC01TGWMHF9JCP', 'Date': 'Thu, 12 May 2022 22:37:00 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 201326592-209715199/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:36:59,487 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:59,488 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:59,488 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:59,488 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:37:00,556 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178520064}) to executor  for transfer request: 0.
2022-05-12 22:37:00,556 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:00,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) about to wait for the following futures []
2022-05-12 22:37:00,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) done waiting for dependent futures
2022-05-12 22:37:00,556 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178520064}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 178520064}
2022-05-12 22:37:00,557 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,091 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187432960}) to executor  for transfer request: 0.
2022-05-12 22:37:02,091 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) about to wait for the following futures []
2022-05-12 22:37:02,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) done waiting for dependent futures
2022-05-12 22:37:02,092 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187432960}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 187432960}
2022-05-12 22:37:02,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,159 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158859264}) to executor  for transfer request: 0.
2022-05-12 22:37:02,159 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) about to wait for the following futures []
2022-05-12 22:37:02,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) done waiting for dependent futures
2022-05-12 22:37:02,160 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158859264}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 158859264}
2022-05-12 22:37:02,160 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:04,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201326592}) to executor  for transfer request: 0.
2022-05-12 22:37:04,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:04,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) about to wait for the following futures []
2022-05-12 22:37:04,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) done waiting for dependent futures
2022-05-12 22:37:04,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201326592}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 201326592}
2022-05-12 22:37:04,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:04,848 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173539328}) to executor  for transfer request: 0.
2022-05-12 22:37:04,848 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:04,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) about to wait for the following futures []
2022-05-12 22:37:04,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) done waiting for dependent futures
2022-05-12 22:37:04,848 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173539328}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 173539328}
2022-05-12 22:37:04,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:05,340 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117178368}) to executor  for transfer request: 0.
2022-05-12 22:37:05,340 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:05,340 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:05,340 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) about to wait for the following futures []
2022-05-12 22:37:05,340 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) done waiting for dependent futures
2022-05-12 22:37:05,340 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=22>, 'extra_args': {'Range': 'bytes=209715200-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 209715200, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:37:05,340 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:05,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) about to wait for the following futures []
2022-05-12 22:37:05,341 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:05,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) done waiting for dependent futures
2022-05-12 22:37:05,341 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:05,341 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117178368}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 117178368}
2022-05-12 22:37:05,341 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:05,342 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:05,342 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:05,342 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:05,343 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:37:05,343 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:37:05,343 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:05,343 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:05,343 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=209715200-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:37:05,343 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:05,343 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:37:05,343 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:05,343 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:05,343 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:37:05,344 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:37:05,344 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:37:05,344 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data/BANDS.npy
2022-05-12 22:37:05,344 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:37:05,344 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=209715200-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223705Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:37:05,344 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223705Z
20220512/eu-central-1/s3/aws4_request
b15a4f3df122582f0a157ce49bde6aaea3823fa6df2a5ddc2ebf1e50fb5daf52
2022-05-12 22:37:05,344 botocore.auth DEBUG    Signature:
7371c8232c701620b47255979844446c1c3a26988668704c84e87d7e57698b3e
2022-05-12 22:37:05,345 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:05,345 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:05,345 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:37:05,345 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:37:05,345 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:37:06,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193986560}) to executor  for transfer request: 0.
2022-05-12 22:37:06,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:06,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) about to wait for the following futures []
2022-05-12 22:37:06,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) done waiting for dependent futures
2022-05-12 22:37:06,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193986560}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 193986560}
2022-05-12 22:37:06,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:07,000 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_2/data/BANDS.npy HTTP/1.1" 206 3244928
2022-05-12 22:37:07,001 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'sZAqbIqX/HlpqKPqZe0JOZDeW68Oq+g9qgC2bBUMxEmTPIUnjzecDmI8qnIfSPzFUbhxDcS2QJY=', 'x-amz-request-id': 'QBAHR56R4K5BHJFN', 'Date': 'Thu, 12 May 2022 22:37:07 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:53 GMT', 'ETag': '"61d4eede286663625942b98e3fc67c77-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 209715200-212960127/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '3244928'}
2022-05-12 22:37:07,001 botocore.parsers DEBUG    Response body:

2022-05-12 22:37:07,001 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:37:07,002 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:37:07,002 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:37:08,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159121408}) to executor  for transfer request: 0.
2022-05-12 22:37:08,015 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) about to wait for the following futures []
2022-05-12 22:37:08,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) done waiting for dependent futures
2022-05-12 22:37:08,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159121408}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 159121408}
2022-05-12 22:37:08,016 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,021 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141557760}) to executor  for transfer request: 0.
2022-05-12 22:37:08,021 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) about to wait for the following futures []
2022-05-12 22:37:08,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) done waiting for dependent futures
2022-05-12 22:37:08,022 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141557760}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 141557760}
2022-05-12 22:37:08,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:09,562 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187695104}) to executor  for transfer request: 0.
2022-05-12 22:37:09,563 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:09,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) about to wait for the following futures []
2022-05-12 22:37:09,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) done waiting for dependent futures
2022-05-12 22:37:09,563 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187695104}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 187695104}
2022-05-12 22:37:09,564 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:09,923 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194248704}) to executor  for transfer request: 0.
2022-05-12 22:37:09,923 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:09,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) about to wait for the following futures []
2022-05-12 22:37:09,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) done waiting for dependent futures
2022-05-12 22:37:09,924 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194248704}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 194248704}
2022-05-12 22:37:09,924 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:10,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201588736}) to executor  for transfer request: 0.
2022-05-12 22:37:10,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:10,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) about to wait for the following futures []
2022-05-12 22:37:10,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) done waiting for dependent futures
2022-05-12 22:37:10,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201588736}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 201588736}
2022-05-12 22:37:10,465 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:10,623 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178782208}) to executor  for transfer request: 0.
2022-05-12 22:37:10,624 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:10,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) about to wait for the following futures []
2022-05-12 22:37:10,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) done waiting for dependent futures
2022-05-12 22:37:10,624 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178782208}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 178782208}
2022-05-12 22:37:10,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173801472}) to executor  for transfer request: 0.
2022-05-12 22:37:11,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:11,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) about to wait for the following futures []
2022-05-12 22:37:11,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) done waiting for dependent futures
2022-05-12 22:37:11,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173801472}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 173801472}
2022-05-12 22:37:11,516 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,895 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125042688}) to executor  for transfer request: 0.
2022-05-12 22:37:11,895 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:11,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) about to wait for the following futures []
2022-05-12 22:37:11,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) done waiting for dependent futures
2022-05-12 22:37:11,896 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125042688}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 125042688}
2022-05-12 22:37:11,896 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:13,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194510848}) to executor  for transfer request: 0.
2022-05-12 22:37:13,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:13,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) about to wait for the following futures []
2022-05-12 22:37:13,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) done waiting for dependent futures
2022-05-12 22:37:13,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194510848}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 194510848}
2022-05-12 22:37:13,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:13,550 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201850880}) to executor  for transfer request: 0.
2022-05-12 22:37:13,550 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:13,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) about to wait for the following futures []
2022-05-12 22:37:13,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) done waiting for dependent futures
2022-05-12 22:37:13,551 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201850880}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 201850880}
2022-05-12 22:37:13,551 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:15,156 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209715200}) to executor  for transfer request: 0.
2022-05-12 22:37:15,156 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:15,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) about to wait for the following futures []
2022-05-12 22:37:15,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) done waiting for dependent futures
2022-05-12 22:37:15,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209715200}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 209715200}
2022-05-12 22:37:15,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,511 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179044352}) to executor  for transfer request: 0.
2022-05-12 22:37:17,511 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) about to wait for the following futures []
2022-05-12 22:37:17,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) done waiting for dependent futures
2022-05-12 22:37:17,512 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179044352}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 179044352}
2022-05-12 22:37:17,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,918 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202113024}) to executor  for transfer request: 0.
2022-05-12 22:37:17,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) about to wait for the following futures []
2022-05-12 22:37:17,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) done waiting for dependent futures
2022-05-12 22:37:17,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202113024}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 202113024}
2022-05-12 22:37:17,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:18,110 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187957248}) to executor  for transfer request: 0.
2022-05-12 22:37:18,110 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:18,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) about to wait for the following futures []
2022-05-12 22:37:18,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) done waiting for dependent futures
2022-05-12 22:37:18,111 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187957248}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 187957248}
2022-05-12 22:37:18,111 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:19,307 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194772992}) to executor  for transfer request: 0.
2022-05-12 22:37:19,307 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:19,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) about to wait for the following futures []
2022-05-12 22:37:19,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) done waiting for dependent futures
2022-05-12 22:37:19,308 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194772992}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 194772992}
2022-05-12 22:37:19,308 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:19,679 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141819904}) to executor  for transfer request: 0.
2022-05-12 22:37:19,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:19,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) about to wait for the following futures []
2022-05-12 22:37:19,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) done waiting for dependent futures
2022-05-12 22:37:19,680 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141819904}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 141819904}
2022-05-12 22:37:19,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,125 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202375168}) to executor  for transfer request: 0.
2022-05-12 22:37:22,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) about to wait for the following futures []
2022-05-12 22:37:22,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) done waiting for dependent futures
2022-05-12 22:37:22,126 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202375168}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 202375168}
2022-05-12 22:37:22,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:23,121 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174063616}) to executor  for transfer request: 0.
2022-05-12 22:37:23,121 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:23,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) about to wait for the following futures []
2022-05-12 22:37:23,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) done waiting for dependent futures
2022-05-12 22:37:23,122 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174063616}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 174063616}
2022-05-12 22:37:23,122 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:24,039 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179306496}) to executor  for transfer request: 0.
2022-05-12 22:37:24,039 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:24,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) about to wait for the following futures []
2022-05-12 22:37:24,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) done waiting for dependent futures
2022-05-12 22:37:24,040 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179306496}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 179306496}
2022-05-12 22:37:24,040 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:25,748 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142082048}) to executor  for transfer request: 0.
2022-05-12 22:37:25,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:25,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) about to wait for the following futures []
2022-05-12 22:37:25,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) done waiting for dependent futures
2022-05-12 22:37:25,749 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142082048}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 142082048}
2022-05-12 22:37:25,749 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:25,842 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209977344}) to executor  for transfer request: 0.
2022-05-12 22:37:25,842 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:25,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) about to wait for the following futures []
2022-05-12 22:37:25,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) done waiting for dependent futures
2022-05-12 22:37:25,843 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209977344}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 209977344}
2022-05-12 22:37:25,843 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:26,545 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188219392}) to executor  for transfer request: 0.
2022-05-12 22:37:26,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:26,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) about to wait for the following futures []
2022-05-12 22:37:26,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) done waiting for dependent futures
2022-05-12 22:37:26,546 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188219392}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 188219392}
2022-05-12 22:37:26,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,243 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202637312}) to executor  for transfer request: 0.
2022-05-12 22:37:27,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) about to wait for the following futures []
2022-05-12 22:37:27,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) done waiting for dependent futures
2022-05-12 22:37:27,243 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202637312}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 202637312}
2022-05-12 22:37:27,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,519 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83361792}) to executor  for transfer request: 0.
2022-05-12 22:37:27,519 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) about to wait for the following futures []
2022-05-12 22:37:27,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) done waiting for dependent futures
2022-05-12 22:37:27,520 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83361792}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 83361792}
2022-05-12 22:37:27,520 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:28,486 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195035136}) to executor  for transfer request: 0.
2022-05-12 22:37:28,486 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:28,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) about to wait for the following futures []
2022-05-12 22:37:28,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) done waiting for dependent futures
2022-05-12 22:37:28,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195035136}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 195035136}
2022-05-12 22:37:28,487 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:31,097 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188481536}) to executor  for transfer request: 0.
2022-05-12 22:37:31,097 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:31,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) about to wait for the following futures []
2022-05-12 22:37:31,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) done waiting for dependent futures
2022-05-12 22:37:31,097 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188481536}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 188481536}
2022-05-12 22:37:31,098 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:31,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210239488}) to executor  for transfer request: 0.
2022-05-12 22:37:31,370 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:31,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) about to wait for the following futures []
2022-05-12 22:37:31,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) done waiting for dependent futures
2022-05-12 22:37:31,370 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210239488}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 210239488}
2022-05-12 22:37:31,371 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174325760}) to executor  for transfer request: 0.
2022-05-12 22:37:32,027 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) about to wait for the following futures []
2022-05-12 22:37:32,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) done waiting for dependent futures
2022-05-12 22:37:32,027 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174325760}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 174325760}
2022-05-12 22:37:32,028 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,619 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202899456}) to executor  for transfer request: 0.
2022-05-12 22:37:32,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) about to wait for the following futures []
2022-05-12 22:37:32,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) done waiting for dependent futures
2022-05-12 22:37:32,620 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202899456}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 202899456}
2022-05-12 22:37:32,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:33,363 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125304832}) to executor  for transfer request: 0.
2022-05-12 22:37:33,363 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:33,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) about to wait for the following futures []
2022-05-12 22:37:33,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) done waiting for dependent futures
2022-05-12 22:37:33,363 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125304832}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 125304832}
2022-05-12 22:37:33,364 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:33,402 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179568640}) to executor  for transfer request: 0.
2022-05-12 22:37:33,403 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:33,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) about to wait for the following futures []
2022-05-12 22:37:33,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) done waiting for dependent futures
2022-05-12 22:37:33,403 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179568640}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 179568640}
2022-05-12 22:37:33,404 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:35,874 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142344192}) to executor  for transfer request: 0.
2022-05-12 22:37:35,874 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:35,874 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:35,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) about to wait for the following futures []
2022-05-12 22:37:35,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) done waiting for dependent futures
2022-05-12 22:37:35,875 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142344192}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 142344192}
2022-05-12 22:37:35,875 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188743680}) to executor  for transfer request: 0.
2022-05-12 22:37:37,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) about to wait for the following futures []
2022-05-12 22:37:37,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) done waiting for dependent futures
2022-05-12 22:37:37,150 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188743680}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 188743680}
2022-05-12 22:37:37,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203161600}) to executor  for transfer request: 0.
2022-05-12 22:37:37,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) about to wait for the following futures []
2022-05-12 22:37:37,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) done waiting for dependent futures
2022-05-12 22:37:37,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203161600}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 203161600}
2022-05-12 22:37:37,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,774 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210501632}) to executor  for transfer request: 0.
2022-05-12 22:37:37,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) about to wait for the following futures []
2022-05-12 22:37:37,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) done waiting for dependent futures
2022-05-12 22:37:37,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210501632}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 210501632}
2022-05-12 22:37:37,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,889 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195297280}) to executor  for transfer request: 0.
2022-05-12 22:37:37,889 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) about to wait for the following futures []
2022-05-12 22:37:37,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) done waiting for dependent futures
2022-05-12 22:37:37,890 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195297280}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 195297280}
2022-05-12 22:37:37,890 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:39,448 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174587904}) to executor  for transfer request: 0.
2022-05-12 22:37:39,448 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:39,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) about to wait for the following futures []
2022-05-12 22:37:39,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) done waiting for dependent futures
2022-05-12 22:37:39,449 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174587904}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 174587904}
2022-05-12 22:37:39,449 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:40,486 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179830784}) to executor  for transfer request: 0.
2022-05-12 22:37:40,486 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:40,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) about to wait for the following futures []
2022-05-12 22:37:40,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) done waiting for dependent futures
2022-05-12 22:37:40,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179830784}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 179830784}
2022-05-12 22:37:40,487 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,185 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125566976}) to executor  for transfer request: 0.
2022-05-12 22:37:41,185 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) about to wait for the following futures []
2022-05-12 22:37:41,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) done waiting for dependent futures
2022-05-12 22:37:41,186 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125566976}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 125566976}
2022-05-12 22:37:41,186 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:42,469 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203423744}) to executor  for transfer request: 0.
2022-05-12 22:37:42,470 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:42,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) about to wait for the following futures []
2022-05-12 22:37:42,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) done waiting for dependent futures
2022-05-12 22:37:42,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203423744}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 203423744}
2022-05-12 22:37:42,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:42,635 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189005824}) to executor  for transfer request: 0.
2022-05-12 22:37:42,635 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:42,635 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) about to wait for the following futures []
2022-05-12 22:37:42,635 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) done waiting for dependent futures
2022-05-12 22:37:42,636 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189005824}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 189005824}
2022-05-12 22:37:42,636 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,994 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210763776}) to executor  for transfer request: 0.
2022-05-12 22:37:44,994 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) about to wait for the following futures []
2022-05-12 22:37:44,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) done waiting for dependent futures
2022-05-12 22:37:44,995 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210763776}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 210763776}
2022-05-12 22:37:44,996 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180092928}) to executor  for transfer request: 0.
2022-05-12 22:37:45,138 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) about to wait for the following futures []
2022-05-12 22:37:45,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) done waiting for dependent futures
2022-05-12 22:37:45,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180092928}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 180092928}
2022-05-12 22:37:45,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,421 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203685888}) to executor  for transfer request: 0.
2022-05-12 22:37:45,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) about to wait for the following futures []
2022-05-12 22:37:45,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) done waiting for dependent futures
2022-05-12 22:37:45,422 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203685888}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 203685888}
2022-05-12 22:37:45,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195559424}) to executor  for transfer request: 0.
2022-05-12 22:37:45,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) about to wait for the following futures []
2022-05-12 22:37:45,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) done waiting for dependent futures
2022-05-12 22:37:45,761 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195559424}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 195559424}
2022-05-12 22:37:45,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174850048}) to executor  for transfer request: 0.
2022-05-12 22:37:45,920 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) about to wait for the following futures []
2022-05-12 22:37:45,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) done waiting for dependent futures
2022-05-12 22:37:45,920 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174850048}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 174850048}
2022-05-12 22:37:45,921 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,508 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203948032}) to executor  for transfer request: 0.
2022-05-12 22:37:46,508 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) about to wait for the following futures []
2022-05-12 22:37:46,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) done waiting for dependent futures
2022-05-12 22:37:46,509 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203948032}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 203948032}
2022-05-12 22:37:46,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,823 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189267968}) to executor  for transfer request: 0.
2022-05-12 22:37:46,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) about to wait for the following futures []
2022-05-12 22:37:46,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) done waiting for dependent futures
2022-05-12 22:37:46,824 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189267968}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 189267968}
2022-05-12 22:37:46,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175112192}) to executor  for transfer request: 0.
2022-05-12 22:37:51,025 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) about to wait for the following futures []
2022-05-12 22:37:51,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) done waiting for dependent futures
2022-05-12 22:37:51,025 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175112192}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 175112192}
2022-05-12 22:37:51,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195821568}) to executor  for transfer request: 0.
2022-05-12 22:37:51,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) about to wait for the following futures []
2022-05-12 22:37:51,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) done waiting for dependent futures
2022-05-12 22:37:51,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195821568}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 195821568}
2022-05-12 22:37:51,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,582 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204210176}) to executor  for transfer request: 0.
2022-05-12 22:37:51,582 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) about to wait for the following futures []
2022-05-12 22:37:51,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) done waiting for dependent futures
2022-05-12 22:37:51,583 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204210176}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 204210176}
2022-05-12 22:37:51,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211025920}) to executor  for transfer request: 0.
2022-05-12 22:37:51,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) about to wait for the following futures []
2022-05-12 22:37:51,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) done waiting for dependent futures
2022-05-12 22:37:51,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211025920}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 211025920}
2022-05-12 22:37:51,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180355072}) to executor  for transfer request: 0.
2022-05-12 22:37:51,994 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) about to wait for the following futures []
2022-05-12 22:37:51,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) done waiting for dependent futures
2022-05-12 22:37:51,994 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180355072}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 180355072}
2022-05-12 22:37:51,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:54,069 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189530112}) to executor  for transfer request: 0.
2022-05-12 22:37:54,069 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:54,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) about to wait for the following futures []
2022-05-12 22:37:54,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) done waiting for dependent futures
2022-05-12 22:37:54,070 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189530112}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 189530112}
2022-05-12 22:37:54,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:54,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204472320}) to executor  for transfer request: 0.
2022-05-12 22:37:54,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:54,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) about to wait for the following futures []
2022-05-12 22:37:54,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) done waiting for dependent futures
2022-05-12 22:37:54,477 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204472320}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 204472320}
2022-05-12 22:37:54,477 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:54,648 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83623936}) to executor  for transfer request: 0.
2022-05-12 22:37:54,648 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:54,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:54,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) about to wait for the following futures []
2022-05-12 22:37:54,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) done waiting for dependent futures
2022-05-12 22:37:54,649 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83623936}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 83623936}
2022-05-12 22:37:54,649 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204734464}) to executor  for transfer request: 0.
2022-05-12 22:37:56,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) about to wait for the following futures []
2022-05-12 22:37:56,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) done waiting for dependent futures
2022-05-12 22:37:56,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204734464}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 204734464}
2022-05-12 22:37:56,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175374336}) to executor  for transfer request: 0.
2022-05-12 22:37:56,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) about to wait for the following futures []
2022-05-12 22:37:56,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) done waiting for dependent futures
2022-05-12 22:37:56,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175374336}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 175374336}
2022-05-12 22:37:56,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,240 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211288064}) to executor  for transfer request: 0.
2022-05-12 22:37:57,240 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:57,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) about to wait for the following futures []
2022-05-12 22:37:57,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) done waiting for dependent futures
2022-05-12 22:37:57,240 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211288064}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 211288064}
2022-05-12 22:37:57,241 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:59,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196083712}) to executor  for transfer request: 0.
2022-05-12 22:37:59,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:59,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) about to wait for the following futures []
2022-05-12 22:37:59,141 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) done waiting for dependent futures
2022-05-12 22:37:59,141 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196083712}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 196083712}
2022-05-12 22:37:59,141 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:59,897 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180617216}) to executor  for transfer request: 0.
2022-05-12 22:37:59,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:59,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) about to wait for the following futures []
2022-05-12 22:37:59,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) done waiting for dependent futures
2022-05-12 22:37:59,898 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180617216}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 180617216}
2022-05-12 22:37:59,899 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,054 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204996608}) to executor  for transfer request: 0.
2022-05-12 22:38:01,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) about to wait for the following futures []
2022-05-12 22:38:01,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) done waiting for dependent futures
2022-05-12 22:38:01,055 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204996608}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 204996608}
2022-05-12 22:38:01,055 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:02,908 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211550208}) to executor  for transfer request: 0.
2022-05-12 22:38:02,908 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:02,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) about to wait for the following futures []
2022-05-12 22:38:02,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) done waiting for dependent futures
2022-05-12 22:38:02,909 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211550208}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 211550208}
2022-05-12 22:38:02,909 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:03,351 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189792256}) to executor  for transfer request: 0.
2022-05-12 22:38:03,351 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:03,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) about to wait for the following futures []
2022-05-12 22:38:03,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) done waiting for dependent futures
2022-05-12 22:38:03,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189792256}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 189792256}
2022-05-12 22:38:03,352 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:04,337 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175636480}) to executor  for transfer request: 0.
2022-05-12 22:38:04,337 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:04,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) about to wait for the following futures []
2022-05-12 22:38:04,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) done waiting for dependent futures
2022-05-12 22:38:04,338 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175636480}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 175636480}
2022-05-12 22:38:04,338 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,299 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196345856}) to executor  for transfer request: 0.
2022-05-12 22:38:05,299 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) about to wait for the following futures []
2022-05-12 22:38:05,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) done waiting for dependent futures
2022-05-12 22:38:05,300 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196345856}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 196345856}
2022-05-12 22:38:05,300 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180879360}) to executor  for transfer request: 0.
2022-05-12 22:38:05,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) about to wait for the following futures []
2022-05-12 22:38:05,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) done waiting for dependent futures
2022-05-12 22:38:05,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180879360}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 180879360}
2022-05-12 22:38:05,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:06,288 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205258752}) to executor  for transfer request: 0.
2022-05-12 22:38:06,289 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:06,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) about to wait for the following futures []
2022-05-12 22:38:06,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) done waiting for dependent futures
2022-05-12 22:38:06,289 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205258752}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 205258752}
2022-05-12 22:38:06,290 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211812352}) to executor  for transfer request: 0.
2022-05-12 22:38:08,208 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) about to wait for the following futures []
2022-05-12 22:38:08,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) done waiting for dependent futures
2022-05-12 22:38:08,208 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211812352}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 211812352}
2022-05-12 22:38:08,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196608000}) to executor  for transfer request: 0.
2022-05-12 22:38:08,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) about to wait for the following futures []
2022-05-12 22:38:08,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) done waiting for dependent futures
2022-05-12 22:38:08,954 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196608000}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 196608000}
2022-05-12 22:38:08,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:09,527 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205520896}) to executor  for transfer request: 0.
2022-05-12 22:38:09,528 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:09,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) about to wait for the following futures []
2022-05-12 22:38:09,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) done waiting for dependent futures
2022-05-12 22:38:09,528 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205520896}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 205520896}
2022-05-12 22:38:09,529 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:10,895 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190054400}) to executor  for transfer request: 0.
2022-05-12 22:38:10,895 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:10,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) about to wait for the following futures []
2022-05-12 22:38:10,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) done waiting for dependent futures
2022-05-12 22:38:10,895 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190054400}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 190054400}
2022-05-12 22:38:10,896 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:11,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181141504}) to executor  for transfer request: 0.
2022-05-12 22:38:11,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:11,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) about to wait for the following futures []
2022-05-12 22:38:11,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) done waiting for dependent futures
2022-05-12 22:38:11,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181141504}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 181141504}
2022-05-12 22:38:11,375 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:11,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175898624}) to executor  for transfer request: 0.
2022-05-12 22:38:11,637 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:11,637 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:11,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) about to wait for the following futures []
2022-05-12 22:38:11,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) done waiting for dependent futures
2022-05-12 22:38:11,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175898624}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 175898624}
2022-05-12 22:38:11,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,868 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212074496}) to executor  for transfer request: 0.
2022-05-12 22:38:13,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) about to wait for the following futures []
2022-05-12 22:38:13,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) done waiting for dependent futures
2022-05-12 22:38:13,869 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212074496}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 212074496}
2022-05-12 22:38:13,869 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:15,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205783040}) to executor  for transfer request: 0.
2022-05-12 22:38:15,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:15,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) about to wait for the following futures []
2022-05-12 22:38:15,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) done waiting for dependent futures
2022-05-12 22:38:15,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205783040}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 205783040}
2022-05-12 22:38:15,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:15,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196870144}) to executor  for transfer request: 0.
2022-05-12 22:38:15,875 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:15,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) about to wait for the following futures []
2022-05-12 22:38:15,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) done waiting for dependent futures
2022-05-12 22:38:15,875 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196870144}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 196870144}
2022-05-12 22:38:15,875 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:16,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190316544}) to executor  for transfer request: 0.
2022-05-12 22:38:16,565 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:16,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) about to wait for the following futures []
2022-05-12 22:38:16,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) done waiting for dependent futures
2022-05-12 22:38:16,566 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190316544}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 190316544}
2022-05-12 22:38:16,566 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:17,449 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181403648}) to executor  for transfer request: 0.
2022-05-12 22:38:17,449 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:17,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) about to wait for the following futures []
2022-05-12 22:38:17,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) done waiting for dependent futures
2022-05-12 22:38:17,450 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181403648}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 181403648}
2022-05-12 22:38:17,450 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:19,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212336640}) to executor  for transfer request: 0.
2022-05-12 22:38:19,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:19,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) about to wait for the following futures []
2022-05-12 22:38:19,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) done waiting for dependent futures
2022-05-12 22:38:19,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212336640}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 212336640}
2022-05-12 22:38:19,166 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:19,383 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197132288}) to executor  for transfer request: 0.
2022-05-12 22:38:19,383 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:19,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) about to wait for the following futures []
2022-05-12 22:38:19,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) done waiting for dependent futures
2022-05-12 22:38:19,384 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197132288}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 197132288}
2022-05-12 22:38:19,384 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:19,659 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206045184}) to executor  for transfer request: 0.
2022-05-12 22:38:19,660 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:19,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) about to wait for the following futures []
2022-05-12 22:38:19,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) done waiting for dependent futures
2022-05-12 22:38:19,660 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206045184}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 206045184}
2022-05-12 22:38:19,661 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190578688}) to executor  for transfer request: 0.
2022-05-12 22:38:22,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) about to wait for the following futures []
2022-05-12 22:38:22,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) done waiting for dependent futures
2022-05-12 22:38:22,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190578688}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 190578688}
2022-05-12 22:38:22,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181665792}) to executor  for transfer request: 0.
2022-05-12 22:38:22,148 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) about to wait for the following futures []
2022-05-12 22:38:22,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) done waiting for dependent futures
2022-05-12 22:38:22,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181665792}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 181665792}
2022-05-12 22:38:22,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,290 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212598784}) to executor  for transfer request: 0.
2022-05-12 22:38:22,290 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) about to wait for the following futures []
2022-05-12 22:38:22,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) done waiting for dependent futures
2022-05-12 22:38:22,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212598784}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 212598784}
2022-05-12 22:38:22,291 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,729 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206307328}) to executor  for transfer request: 0.
2022-05-12 22:38:22,729 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) about to wait for the following futures []
2022-05-12 22:38:22,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) done waiting for dependent futures
2022-05-12 22:38:22,730 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206307328}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 206307328}
2022-05-12 22:38:22,730 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212860928}) to executor  for transfer request: 0.
2022-05-12 22:38:23,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:23,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) about to wait for the following futures []
2022-05-12 22:38:23,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) done waiting for dependent futures
2022-05-12 22:38:23,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212860928}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 212860928}
2022-05-12 22:38:23,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:24,392 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197394432}) to executor  for transfer request: 0.
2022-05-12 22:38:24,392 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:24,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) about to wait for the following futures []
2022-05-12 22:38:24,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) done waiting for dependent futures
2022-05-12 22:38:24,393 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197394432}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 197394432}
2022-05-12 22:38:24,393 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:24,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206569472}) to executor  for transfer request: 0.
2022-05-12 22:38:24,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:24,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) about to wait for the following futures []
2022-05-12 22:38:24,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) done waiting for dependent futures
2022-05-12 22:38:24,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206569472}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 206569472}
2022-05-12 22:38:24,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,883 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190840832}) to executor  for transfer request: 0.
2022-05-12 22:38:26,883 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) about to wait for the following futures []
2022-05-12 22:38:26,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) done waiting for dependent futures
2022-05-12 22:38:26,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190840832}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 190840832}
2022-05-12 22:38:26,884 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,624 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181927936}) to executor  for transfer request: 0.
2022-05-12 22:38:27,624 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) about to wait for the following futures []
2022-05-12 22:38:27,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) done waiting for dependent futures
2022-05-12 22:38:27,624 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181927936}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 181927936}
2022-05-12 22:38:27,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:28,063 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206831616}) to executor  for transfer request: 0.
2022-05-12 22:38:28,063 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:28,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) about to wait for the following futures []
2022-05-12 22:38:28,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) done waiting for dependent futures
2022-05-12 22:38:28,064 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206831616}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 206831616}
2022-05-12 22:38:28,064 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197656576}) to executor  for transfer request: 0.
2022-05-12 22:38:31,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) about to wait for the following futures []
2022-05-12 22:38:31,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) done waiting for dependent futures
2022-05-12 22:38:31,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197656576}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 197656576}
2022-05-12 22:38:31,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:32,312 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207093760}) to executor  for transfer request: 0.
2022-05-12 22:38:32,313 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:32,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) about to wait for the following futures []
2022-05-12 22:38:32,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) done waiting for dependent futures
2022-05-12 22:38:32,313 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207093760}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 207093760}
2022-05-12 22:38:32,313 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:32,977 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191102976}) to executor  for transfer request: 0.
2022-05-12 22:38:32,977 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:32,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) about to wait for the following futures []
2022-05-12 22:38:32,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) done waiting for dependent futures
2022-05-12 22:38:32,978 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191102976}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 191102976}
2022-05-12 22:38:32,978 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:34,996 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182190080}) to executor  for transfer request: 0.
2022-05-12 22:38:34,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:34,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) about to wait for the following futures []
2022-05-12 22:38:34,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) done waiting for dependent futures
2022-05-12 22:38:34,997 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182190080}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 182190080}
2022-05-12 22:38:34,997 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,233 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207355904}) to executor  for transfer request: 0.
2022-05-12 22:38:35,233 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) about to wait for the following futures []
2022-05-12 22:38:35,234 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) done waiting for dependent futures
2022-05-12 22:38:35,234 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207355904}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 207355904}
2022-05-12 22:38:35,234 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,280 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197918720}) to executor  for transfer request: 0.
2022-05-12 22:38:35,281 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) about to wait for the following futures []
2022-05-12 22:38:35,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) done waiting for dependent futures
2022-05-12 22:38:35,281 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197918720}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 197918720}
2022-05-12 22:38:35,282 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:37,207 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207618048}) to executor  for transfer request: 0.
2022-05-12 22:38:37,207 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:37,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) about to wait for the following futures []
2022-05-12 22:38:37,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) done waiting for dependent futures
2022-05-12 22:38:37,208 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207618048}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 207618048}
2022-05-12 22:38:37,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:37,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191365120}) to executor  for transfer request: 0.
2022-05-12 22:38:37,514 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:37,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) about to wait for the following futures []
2022-05-12 22:38:37,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) done waiting for dependent futures
2022-05-12 22:38:37,515 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191365120}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 191365120}
2022-05-12 22:38:37,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:39,655 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198180864}) to executor  for transfer request: 0.
2022-05-12 22:38:39,656 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:39,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) about to wait for the following futures []
2022-05-12 22:38:39,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) done waiting for dependent futures
2022-05-12 22:38:39,656 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198180864}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 198180864}
2022-05-12 22:38:39,657 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182452224}) to executor  for transfer request: 0.
2022-05-12 22:38:40,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) about to wait for the following futures []
2022-05-12 22:38:40,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) done waiting for dependent futures
2022-05-12 22:38:40,140 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182452224}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 182452224}
2022-05-12 22:38:40,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207880192}) to executor  for transfer request: 0.
2022-05-12 22:38:40,294 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) about to wait for the following futures []
2022-05-12 22:38:40,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) done waiting for dependent futures
2022-05-12 22:38:40,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207880192}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 207880192}
2022-05-12 22:38:40,295 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:42,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208142336}) to executor  for transfer request: 0.
2022-05-12 22:38:42,943 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:42,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) about to wait for the following futures []
2022-05-12 22:38:42,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) done waiting for dependent futures
2022-05-12 22:38:42,943 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208142336}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 208142336}
2022-05-12 22:38:42,944 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:43,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191627264}) to executor  for transfer request: 0.
2022-05-12 22:38:43,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:43,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) about to wait for the following futures []
2022-05-12 22:38:43,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) done waiting for dependent futures
2022-05-12 22:38:43,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191627264}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 191627264}
2022-05-12 22:38:43,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:43,896 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182714368}) to executor  for transfer request: 0.
2022-05-12 22:38:43,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:43,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) about to wait for the following futures []
2022-05-12 22:38:43,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) done waiting for dependent futures
2022-05-12 22:38:43,897 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182714368}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 182714368}
2022-05-12 22:38:43,897 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:44,302 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198443008}) to executor  for transfer request: 0.
2022-05-12 22:38:44,302 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:44,303 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) about to wait for the following futures []
2022-05-12 22:38:44,303 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) done waiting for dependent futures
2022-05-12 22:38:44,303 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198443008}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 198443008}
2022-05-12 22:38:44,304 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:45,931 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208404480}) to executor  for transfer request: 0.
2022-05-12 22:38:45,931 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:45,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) about to wait for the following futures []
2022-05-12 22:38:45,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) done waiting for dependent futures
2022-05-12 22:38:45,931 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208404480}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 208404480}
2022-05-12 22:38:45,931 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:46,106 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191889408}) to executor  for transfer request: 0.
2022-05-12 22:38:46,107 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:46,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) about to wait for the following futures []
2022-05-12 22:38:46,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) done waiting for dependent futures
2022-05-12 22:38:46,107 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191889408}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 191889408}
2022-05-12 22:38:46,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182976512}) to executor  for transfer request: 0.
2022-05-12 22:38:48,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:48,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) about to wait for the following futures []
2022-05-12 22:38:48,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) done waiting for dependent futures
2022-05-12 22:38:48,572 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182976512}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 182976512}
2022-05-12 22:38:48,572 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,857 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208666624}) to executor  for transfer request: 0.
2022-05-12 22:38:48,857 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:48,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) about to wait for the following futures []
2022-05-12 22:38:48,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) done waiting for dependent futures
2022-05-12 22:38:48,858 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208666624}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 208666624}
2022-05-12 22:38:48,858 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:49,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198705152}) to executor  for transfer request: 0.
2022-05-12 22:38:49,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:49,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) about to wait for the following futures []
2022-05-12 22:38:49,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) done waiting for dependent futures
2022-05-12 22:38:49,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198705152}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 198705152}
2022-05-12 22:38:49,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:49,644 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192151552}) to executor  for transfer request: 0.
2022-05-12 22:38:49,644 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:49,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) about to wait for the following futures []
2022-05-12 22:38:49,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) done waiting for dependent futures
2022-05-12 22:38:49,645 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192151552}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 192151552}
2022-05-12 22:38:49,645 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,056 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198967296}) to executor  for transfer request: 0.
2022-05-12 22:38:52,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:52,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) about to wait for the following futures []
2022-05-12 22:38:52,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) done waiting for dependent futures
2022-05-12 22:38:52,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198967296}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 198967296}
2022-05-12 22:38:52,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208928768}) to executor  for transfer request: 0.
2022-05-12 22:38:52,260 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:52,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) about to wait for the following futures []
2022-05-12 22:38:52,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) done waiting for dependent futures
2022-05-12 22:38:52,261 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208928768}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 208928768}
2022-05-12 22:38:52,261 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183238656}) to executor  for transfer request: 0.
2022-05-12 22:38:52,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:52,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) about to wait for the following futures []
2022-05-12 22:38:52,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) done waiting for dependent futures
2022-05-12 22:38:52,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183238656}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 183238656}
2022-05-12 22:38:52,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192413696}) to executor  for transfer request: 0.
2022-05-12 22:38:54,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) about to wait for the following futures []
2022-05-12 22:38:54,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) done waiting for dependent futures
2022-05-12 22:38:54,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192413696}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 192413696}
2022-05-12 22:38:54,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:56,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183500800}) to executor  for transfer request: 0.
2022-05-12 22:38:56,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:56,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) about to wait for the following futures []
2022-05-12 22:38:56,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) done waiting for dependent futures
2022-05-12 22:38:56,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183500800}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 183500800}
2022-05-12 22:38:56,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:56,547 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199229440}) to executor  for transfer request: 0.
2022-05-12 22:38:56,547 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:56,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) about to wait for the following futures []
2022-05-12 22:38:56,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) done waiting for dependent futures
2022-05-12 22:38:56,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199229440}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 199229440}
2022-05-12 22:38:56,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:57,108 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209190912}) to executor  for transfer request: 0.
2022-05-12 22:38:57,108 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:57,108 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) about to wait for the following futures []
2022-05-12 22:38:57,108 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) done waiting for dependent futures
2022-05-12 22:38:57,108 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209190912}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 209190912}
2022-05-12 22:38:57,109 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:57,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192675840}) to executor  for transfer request: 0.
2022-05-12 22:38:57,355 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:57,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:57,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) about to wait for the following futures []
2022-05-12 22:38:57,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) done waiting for dependent futures
2022-05-12 22:38:57,356 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192675840}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 192675840}
2022-05-12 22:38:57,357 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,212 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209453056}) to executor  for transfer request: 0.
2022-05-12 22:39:00,212 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,213 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) about to wait for the following futures []
2022-05-12 22:39:00,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) done waiting for dependent futures
2022-05-12 22:39:00,213 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209453056}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 209453056}
2022-05-12 22:39:00,214 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:02,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199491584}) to executor  for transfer request: 0.
2022-05-12 22:39:02,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:02,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) about to wait for the following futures []
2022-05-12 22:39:02,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) done waiting for dependent futures
2022-05-12 22:39:02,102 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199491584}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 199491584}
2022-05-12 22:39:02,102 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,266 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183762944}) to executor  for transfer request: 0.
2022-05-12 22:39:04,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:04,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) about to wait for the following futures []
2022-05-12 22:39:04,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) done waiting for dependent futures
2022-05-12 22:39:04,267 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183762944}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 183762944}
2022-05-12 22:39:04,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,954 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199753728}) to executor  for transfer request: 0.
2022-05-12 22:39:04,955 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:04,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) about to wait for the following futures []
2022-05-12 22:39:04,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) done waiting for dependent futures
2022-05-12 22:39:04,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199753728}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 199753728}
2022-05-12 22:39:04,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:06,439 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184025088}) to executor  for transfer request: 0.
2022-05-12 22:39:06,440 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:06,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) about to wait for the following futures []
2022-05-12 22:39:06,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) done waiting for dependent futures
2022-05-12 22:39:06,440 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184025088}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 184025088}
2022-05-12 22:39:06,441 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:08,908 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200015872}) to executor  for transfer request: 0.
2022-05-12 22:39:08,908 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:08,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) about to wait for the following futures []
2022-05-12 22:39:08,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) done waiting for dependent futures
2022-05-12 22:39:08,909 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200015872}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 200015872}
2022-05-12 22:39:08,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184287232}) to executor  for transfer request: 0.
2022-05-12 22:39:09,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) about to wait for the following futures []
2022-05-12 22:39:09,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) done waiting for dependent futures
2022-05-12 22:39:09,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184287232}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 184287232}
2022-05-12 22:39:09,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,958 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200278016}) to executor  for transfer request: 0.
2022-05-12 22:39:11,958 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:11,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) about to wait for the following futures []
2022-05-12 22:39:11,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) done waiting for dependent futures
2022-05-12 22:39:11,959 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200278016}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 200278016}
2022-05-12 22:39:11,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:13,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200540160}) to executor  for transfer request: 0.
2022-05-12 22:39:13,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:13,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) about to wait for the following futures []
2022-05-12 22:39:13,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) done waiting for dependent futures
2022-05-12 22:39:13,883 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200540160}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 200540160}
2022-05-12 22:39:13,883 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,467 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200802304}) to executor  for transfer request: 0.
2022-05-12 22:39:17,467 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) about to wait for the following futures []
2022-05-12 22:39:17,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) done waiting for dependent futures
2022-05-12 22:39:17,468 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200802304}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 200802304}
2022-05-12 22:39:17,468 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201064448}) to executor  for transfer request: 0.
2022-05-12 22:39:19,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,226 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:39:19,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) about to wait for the following futures []
2022-05-12 22:39:19,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) done waiting for dependent futures
2022-05-12 22:39:19,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201064448}) with kwargs {'fileobj': <_io.BufferedRandom name=22>, 'offset': 201064448}
2022-05-12 22:39:19,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,228 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:39:19,228 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:39:19,228 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:39:19,228 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,540 eolearn.core.eoworkflow DEBUG    Computing DB2Vector(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {}
  meta_info: {}
  bbox: BBox(((229500.0, 1369500.0), (240500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:19,625 eolearn.core.eoworkflow DEBUG    Removing intermediate result for DB2Vector
2022-05-12 22:39:19,626 eolearn.core.eoworkflow DEBUG    Computing VectorToRaster(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1369500.0), (240500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:19,630 eolearn.core.eoworkflow DEBUG    Removing intermediate result for VectorToRaster
2022-05-12 22:39:19,630 eolearn.core.eoworkflow DEBUG    Computing Extent2Boundary(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1369500.0), (240500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:19,646 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Boundary
2022-05-12 22:39:19,646 eolearn.core.eoworkflow DEBUG    Computing Extent2Distance(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1369500.0), (240500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:19,775 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Distance
2022-05-12 22:39:19,775 eolearn.core.eoworkflow DEBUG    Computing SaveTask(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {
    DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
  }
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1369500.0), (240500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{'eopatch_folder': '30PTU_3_2'})
2022-05-12 22:39:19,779 botocore.loaders DEBUG    Loading JSON file: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/boto3/data/s3/2006-03-01/resources-1.json
2022-05-12 22:39:19,780 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:19,780 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:19,780 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:19,780 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:19,781 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:19,782 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:19,782 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:19,783 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:19,783 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:19,783 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2'}
2022-05-12 22:39:19,783 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:19,783 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:19,783 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:19,784 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:19,784 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:19,784 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:19,784 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:19,784 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:19,784 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:19,784 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:19,784 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:19,784 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:19,784 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:19,784 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:19,784 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:19,784 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:19,784 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:19,784 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2
2022-05-12 22:39:19,785 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:19,785 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223919Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:19,785 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223919Z
20220512/us-east-1/s3/aws4_request
d143f22a2bdc47e6a65fff273ca498afcaee6b569e7063aa233d2fb8dbb468d9
2022-05-12 22:39:19,785 botocore.auth DEBUG    Signature:
08d879d56faf805c65347b236aa90d6fa88b780b92fc35e20f622645e5d734a9
2022-05-12 22:39:19,785 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:19,785 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:19,785 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:19,785 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:20,580 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2 HTTP/1.1" 400 0
2022-05-12 22:39:20,580 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'Z4NH1RXYQHEG0HY5', 'x-amz-id-2': 'mHzO8zOTPfK06iDhhikWsf5+rPjNzPKuiMo5DFefp4M3jnrUxyJ7YOsASgN7fuvIZW0GgyD8jxg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:19 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:20,581 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:20,584 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:20,585 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:20,585 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:20,585 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:20,585 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:20,585 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:20,585 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:20,586 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:20,586 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:39:20,586 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:20,586 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:20,586 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:20,587 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:20,587 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:20,587 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:20,587 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:20,587 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:20,588 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:39:20,588 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:39:20,588 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:20,588 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223920Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:20,588 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223920Z
20220512/us-east-1/s3/aws4_request
9b52e582d0da37ac28bae7f95e50b76ffc1b632db41b514e54f2634f98f8b179
2022-05-12 22:39:20,588 botocore.auth DEBUG    Signature:
45bba8a2ad47a1f9c1cbb74730e01a46807c5dc12db0ddc66669ce1b454c2cdf
2022-05-12 22:39:20,589 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:20,589 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:20,589 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:20,590 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:39:21,559 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:39:21,560 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': '393YDNTTBHMP54RK', 'x-amz-id-2': 'YQo4YJGF+c2l11VubGeAj/0WaVC4FX/tcrlP8jAUfQAQcgAEUWDo/hg3Fi46pgUpJNX3d36UHB8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:20 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:21,560 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:21,560 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:21,561 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:21,561 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:21,561 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:21,561 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:21,561 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:21,562 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:21,562 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:21,562 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:21,562 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:21,562 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:21,562 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:21,562 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:39:21,563 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:21,563 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223921Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:21,563 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223921Z
20220512/eu-central-1/s3/aws4_request
99a08b70c2ed49fb403cb906bffb76495cf0ad2270c0c1ffcc54d8b0dff7a025
2022-05-12 22:39:21,563 botocore.auth DEBUG    Signature:
6a972d50b5244235f038282be90095607bbc51a020db7db6da8bc12ffc5ff141
2022-05-12 22:39:21,563 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:21,563 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:21,564 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:21,564 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:22,609 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:39:22,609 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 't5eVaEqIbsm5rH4fFcapnJPefrwo7aQF0SDY0UYxt1ArgAvcl9GygwxzYVx1HN9mzZNmHB23Fiw=', 'x-amz-request-id': '4XRSH4ZB23MXD7XF', 'Date': 'Thu, 12 May 2022 22:39:23 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:39:22,610 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:22,610 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:22,610 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:22,610 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:22,610 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:22,610 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:22,611 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:22,611 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:22,611 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:22,611 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:22,611 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:22,611 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:22,611 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:22,611 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:22,611 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2
2022-05-12 22:39:22,612 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:22,612 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223922Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:22,612 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223922Z
20220512/eu-central-1/s3/aws4_request
6559a12a11ce0904697995f56f25e81ae4fda9bd16177dafe6732b2c31a9344a
2022-05-12 22:39:22,612 botocore.auth DEBUG    Signature:
115df44430ef440c79173463d347423d6a876963af12e6e8e0deca524d04957a
2022-05-12 22:39:22,612 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:22,612 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:22,613 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:22,699 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2 HTTP/1.1" 404 0
2022-05-12 22:39:22,700 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '4XRRVC431JZZSV3R', 'x-amz-id-2': 'BQW61hudEAsKl0t7o2UIxuxMOU3yidtaa6lRSFLRDB/7LnqxnGS/YD0+qZR2QfXFDSO3ah2LY7A=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:21 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:22,700 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:22,700 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:22,700 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:22,700 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:22,700 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:22,701 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:22,703 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:22,703 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:22,703 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:22,703 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:22,703 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:22,703 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:22,703 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:22,704 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:22,704 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:22,704 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:22,704 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:22,704 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:22,704 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:22,704 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:22,704 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:22,705 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:22,705 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:22,705 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:22,705 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:22,705 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:22,705 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:22,705 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223922Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:22,705 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223922Z
20220512/eu-central-1/s3/aws4_request
f60941ba68df00e7dedd460928f6ce8f9ae469fa0e721f2f929d42d4822b4496
2022-05-12 22:39:22,706 botocore.auth DEBUG    Signature:
5a6c985b6a0a93e614325fbc103657430595527ffa43031e58b7d95506484643
2022-05-12 22:39:22,706 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:22,706 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:22,706 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:22,790 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:22,791 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7lEPruBrUB7ztogt7gQwoNVFXFr4vv/pmWig8IfZb021t/3UVoo4K8asdXpWymH5rQ4sqktewY0=', 'x-amz-request-id': '4XRN32QNFPN8WSTC', 'Date': 'Thu, 12 May 2022 22:39:23 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:22,791 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:22,792 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:22,792 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:22,792 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:22,792 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '4XRN32QNFPN8WSTC', 'HostId': '7lEPruBrUB7ztogt7gQwoNVFXFr4vv/pmWig8IfZb021t/3UVoo4K8asdXpWymH5rQ4sqktewY0=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '7lEPruBrUB7ztogt7gQwoNVFXFr4vv/pmWig8IfZb021t/3UVoo4K8asdXpWymH5rQ4sqktewY0=', 'x-amz-request-id': '4XRN32QNFPN8WSTC', 'date': 'Thu, 12 May 2022 22:39:23 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:22,793 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:22,794 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:22,794 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:22,794 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:22,795 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:22,796 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:22,797 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:22,797 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:22,797 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:22,797 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:22,797 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:22,797 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:22,797 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:39:22,797 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:22,797 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:22,797 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_2/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:22,798 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:39:22,798 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:22,798 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:22,798 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:39:22,798 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:39:22,798 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:22,798 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:22,798 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:22,799 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:22,799 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_2%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223922Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:22,799 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223922Z
20220512/us-east-1/s3/aws4_request
88bf5ff43d148efc4a7098bbb15819f784ab4448f4edcd3c63e8f495f0c86c9f
2022-05-12 22:39:22,799 botocore.auth DEBUG    Signature:
e6fb11cb45ace855b79cbdc426b8f24e621b36d097a19cd59404264797355b27
2022-05-12 22:39:22,799 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:39:22,799 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:22,799 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:22,800 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:23,570 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:39:23,570 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'GZXF8E453FB6QPRR', 'x-amz-id-2': 'FzF8mNqFyulG0upwCTrikhL0lREocH9YOfb0dVHhRWDcW+dIfopQiQPtU7VwU1Oiiincmbv3WPc=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:39:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:23,571 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1GZXF8E453FB6QPRRFzF8mNqFyulG0upwCTrikhL0lREocH9YOfb0dVHhRWDcW+dIfopQiQPtU7VwU1Oiiincmbv3WPc='
2022-05-12 22:39:23,572 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:39:23,572 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:23,572 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:39:23,572 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:23,572 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:23,572 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:23,572 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:39:23,573 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:23,573 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:23,573 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:39:23,573 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:39:23,573 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:23,573 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:23,573 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:23,573 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_2%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223923Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:23,573 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223923Z
20220512/eu-central-1/s3/aws4_request
7a291a1f3f08dfbdd3ebbf7d704a14334aa61fc54fc6a7b11e2721570f20717d
2022-05-12 22:39:23,573 botocore.auth DEBUG    Signature:
bad70314cc04a1a8a272516ce0856595680ae037aa5a3d3d66c2fe1bd9dc968f
2022-05-12 22:39:23,573 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:39:23,573 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:23,573 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:23,573 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:24,743 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:39:25,188 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'PXZ68D9URONt71WSRB1GCAErjTt7WhqGzCgQdpDI+tEGHv/TsFDnqW+9Zu0pssb+3St5fHEGiHw=', 'x-amz-request-id': '1EGMRESXVQPZNJTJ', 'Date': 'Thu, 12 May 2022 22:39:25 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:39:25,189 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_2/1000/urlfalseeopatches/30PTU_3_2/2022-05-12T11:03:30.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/bbox.pkl2022-05-12T11:03:51.000Z"715ad8db43d5a50976146518fd73f725"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/timestamp.pkl2022-05-12T11:03:51.000Z"bddd5da052edd05b16c1bacc1598871b"1858e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/data/eopatches/30PTU_3_2/mask/'
2022-05-12 22:39:25,190 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:39:25,190 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:25,191 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:39:25,191 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:25,191 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:39:25,191 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:25,191 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:25,191 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:25,191 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:25,192 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:25,192 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:25,192 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:39:25,192 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:25,192 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:25,192 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:25,192 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_2/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:25,192 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:39:25,192 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:25,193 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:25,193 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:39:25,193 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:39:25,193 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:25,193 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:25,193 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:25,193 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_2%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223925Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:25,193 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223925Z
20220512/eu-central-1/s3/aws4_request
5ea1703ea8c49c1759aa9dbc0b07218cabfc476b0d3497478337315ced6e164f
2022-05-12 22:39:25,194 botocore.auth DEBUG    Signature:
855154d2a410bdd5650fc309973cb9ee87fc24619806aaad96683819579f5e7c
2022-05-12 22:39:25,194 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:39:25,194 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:25,194 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:25,282 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_2%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:39:25,355 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'yzzyzmvjCtdZ4E2St6OixMuQtqUa7/3uT/5vPZISX+DJNHIwfbcJbmsi2rhIox4MdEyYc7DZPnk=', 'x-amz-request-id': 'B0J5FN7VEVQVJ5ZK', 'Date': 'Thu, 12 May 2022 22:39:26 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:39:25,355 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_2/data/1000/urlfalseeopatches/30PTU_3_2/data/2022-05-12T11:03:42.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/data/BANDS.npy2022-05-12T11:03:53.000Z"61d4eede286663625942b98e3fc67c77-26"212960128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/data/CLP.npy2022-05-12T11:03:51.000Z"009b5033e14fa2b7791285fa77795c2f-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:39:25,357 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:39:25,357 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:25,357 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:39:25,357 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:39:25,357 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:25,358 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:25,358 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:25,358 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:25,358 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:25,358 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:25,358 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:39:25,358 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:25,358 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:25,359 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:25,359 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_2/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:25,359 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:39:25,359 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:25,359 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:25,359 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:39:25,359 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:39:25,359 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:25,359 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:25,360 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:25,360 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_2%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223925Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:25,360 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223925Z
20220512/eu-central-1/s3/aws4_request
ce28102b086e9644fd62ba2bbbaed4092600e0d6d1c3a187fb608cc8afcc60d7
2022-05-12 22:39:25,360 botocore.auth DEBUG    Signature:
b6730214766f521e4d0c6bed4f28fb73a905c74ac5f5a15a70a8c56eb34ca199
2022-05-12 22:39:25,360 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:39:25,360 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:25,361 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:25,446 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_2%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:39:25,447 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SJX9P3Ea5eGFW4iZjiBYmEg54AkiYVw+sFtCESB02lhTkDUTtKa7OEpCGDHn3fxQcxtp7mOT3T4=', 'x-amz-request-id': 'B0JFGXQB0JYEMXF9', 'Date': 'Thu, 12 May 2022 22:39:26 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:39:25,447 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_2/mask/1000/urlfalseeopatches/30PTU_3_2/mask/2022-05-12T11:03:38.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/mask/CLM.npy2022-05-12T11:03:51.000Z"4eafd69fbebe0649c9ffa54a97d159cc-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_2/mask/IS_DATA.npy2022-05-12T11:03:51.000Z"30cacf5f1ee7603a53f0d2a527451479-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:39:25,449 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:39:25,449 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:25,449 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:39:25,449 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:39:25,449 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:25,453 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:25,453 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless'}
2022-05-12 22:39:25,454 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,454 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,454 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,454 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,454 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,454 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,454 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:25,454 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:25,454 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,455 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,455 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:25,455 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:25,455 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,455 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,455 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:25,455 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:25,455 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:25,455 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:25,456 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:25,456 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223925Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:25,456 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223925Z
20220512/eu-central-1/s3/aws4_request
0a20bf42de27402fc073a0db1237dfdad65814de65788ca4fb8460f37677ddee
2022-05-12 22:39:25,456 botocore.auth DEBUG    Signature:
5fcfe8e719864144b2822e151f4bdef62aa67dce3813887d46b940fa93262224
2022-05-12 22:39:25,456 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:25,456 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:25,457 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:25,541 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:39:25,542 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'B0J2SR70FD3PMFCF', 'x-amz-id-2': 'uQ+h2bf/I32KigUx1+DCQox2/4jEABT6sX+qXwlyT24pwFjscUeTu2fqRA0V85+6gSLlu2WAG4M=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:24 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:25,542 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:25,542 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:25,542 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:25,542 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:25,542 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:25,544 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:25,544 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless/'}
2022-05-12 22:39:25,544 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,544 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,544 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,545 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,545 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,545 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,545 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:25,545 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:25,545 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,545 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,545 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:25,545 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:25,546 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,546 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,546 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:25,546 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:25,546 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:25,546 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:25,546 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:25,546 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223925Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:25,547 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223925Z
20220512/eu-central-1/s3/aws4_request
0cba6512a0812fb21d13f5e96e2ad2d5317d74697d3a620bae0b297932abcfb9
2022-05-12 22:39:25,547 botocore.auth DEBUG    Signature:
8f5290f700fac159a280ba334da5ff159d054b897be2f00473d095aac33598d8
2022-05-12 22:39:25,547 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:25,547 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:25,548 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:25,629 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:25,630 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'B0JENNFSJG6G0KX4', 'x-amz-id-2': 'Y79VdpXggfIykoKB5u9KnOtMJsN5nLXTIV2eOc9xL5EfNI1aHaZCeAdGiUF6HKbanLTZe4MOVMI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:24 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:25,630 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:25,630 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:25,631 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:25,631 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:25,631 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:25,632 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:25,633 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:25,633 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,633 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,633 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,633 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,633 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,633 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,633 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:25,634 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:25,634 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,634 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,634 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:25,634 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:25,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:25,634 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:25,634 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:25,634 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:25,635 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:25,635 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223925Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:25,635 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223925Z
20220512/eu-central-1/s3/aws4_request
fd8a2b47f878cfab31acb477f57b5a453478070bc8822361985d46670a7570cd
2022-05-12 22:39:25,635 botocore.auth DEBUG    Signature:
9004b12b8ee2da3ad751d577144123ed45235ff391e0dea490d91dbb355c5062
2022-05-12 22:39:25,635 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:25,635 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:25,636 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:25,718 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:25,719 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'bbdVHmqGRnlvyQkDYmQq4fKzlmMo4YyXw6yC3kohJmmRTO7ylQ2Sc7EqU1lTWZoLFCW6LIrrbBI=', 'x-amz-request-id': 'B0JAF5E7BFV30ERW', 'Date': 'Thu, 12 May 2022 22:39:26 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:25,719 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:25,721 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:25,721 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:25,721 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:25,721 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'B0JAF5E7BFV30ERW', 'HostId': 'bbdVHmqGRnlvyQkDYmQq4fKzlmMo4YyXw6yC3kohJmmRTO7ylQ2Sc7EqU1lTWZoLFCW6LIrrbBI=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'bbdVHmqGRnlvyQkDYmQq4fKzlmMo4YyXw6yC3kohJmmRTO7ylQ2Sc7EqU1lTWZoLFCW6LIrrbBI=', 'x-amz-request-id': 'B0JAF5E7BFV30ERW', 'date': 'Thu, 12 May 2022 22:39:26 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:25,721 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:25,723 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:25,723 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless'}
2022-05-12 22:39:25,724 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,724 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,724 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,724 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,724 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,724 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,725 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:25,725 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:25,725 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,725 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,725 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:25,725 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:25,725 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,725 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,725 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:25,725 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:25,726 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:25,726 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:25,726 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:25,726 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223925Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:25,726 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223925Z
20220512/eu-central-1/s3/aws4_request
0a20bf42de27402fc073a0db1237dfdad65814de65788ca4fb8460f37677ddee
2022-05-12 22:39:25,726 botocore.auth DEBUG    Signature:
5fcfe8e719864144b2822e151f4bdef62aa67dce3813887d46b940fa93262224
2022-05-12 22:39:25,727 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:25,727 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:25,727 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:25,827 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:39:25,828 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'B0J3Y92TVN49S17Z', 'x-amz-id-2': 'tiK48ZdERgXSU/W99g80gPKnHPX3K1AZOW2n47Ab0XljgqPFf9TPYhiOivIgG26BO1w3FUzlJnQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:24 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:25,828 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:25,828 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:25,828 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:25,828 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:25,828 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:25,830 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:25,830 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless/'}
2022-05-12 22:39:25,830 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,830 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,831 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,831 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,831 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,831 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,831 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:25,831 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:25,831 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,831 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,831 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:25,832 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:25,832 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,832 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,832 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:25,832 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:25,832 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:25,832 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:25,833 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:25,833 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223925Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:25,833 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223925Z
20220512/eu-central-1/s3/aws4_request
0cba6512a0812fb21d13f5e96e2ad2d5317d74697d3a620bae0b297932abcfb9
2022-05-12 22:39:25,833 botocore.auth DEBUG    Signature:
8f5290f700fac159a280ba334da5ff159d054b897be2f00473d095aac33598d8
2022-05-12 22:39:25,833 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:25,833 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:25,834 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:25,916 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:25,916 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'B0J2AKEEM9RN63KM', 'x-amz-id-2': 'I7eeSrcl9pfoR6rDUzs+KtVp8sVWk7TeIBy37ND0FpI9FFLXt+N44A4zZtRNGoTT6542SgXaHao=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:24 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:25,917 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:25,917 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:25,917 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:25,917 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:25,917 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:25,919 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:25,919 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2'}
2022-05-12 22:39:25,920 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,920 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,920 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,920 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:25,920 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:25,920 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,920 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:25,920 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:25,921 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,921 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:25,921 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:25,921 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:25,921 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,921 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:25,921 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:25,922 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:25,922 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:25,922 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2
2022-05-12 22:39:25,922 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:25,922 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223925Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:25,923 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223925Z
20220512/eu-central-1/s3/aws4_request
20e9098bf39c079114045b4689f70c388b4cfeb4751a6afc63a522921e3d44ca
2022-05-12 22:39:25,923 botocore.auth DEBUG    Signature:
221ce47da31237bf7b895d4a39e115c15ca987fb903ed8204e4e4f5eeed7213f
2022-05-12 22:39:25,923 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:25,923 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:25,923 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:26,005 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2 HTTP/1.1" 404 0
2022-05-12 22:39:26,005 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'B0J8C3FCDJGV02BT', 'x-amz-id-2': 'PyVWgm2dT5K1loNtYgxlV9NjLgtK2vqUn/g30sgZRrKh8+nIpY98CVqKHPoAZPwxMC1AXx4/+40=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:24 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:26,005 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:26,005 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:26,006 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:26,006 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:26,006 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:26,007 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:26,008 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:26,008 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,008 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,008 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,008 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,008 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,008 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,008 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:26,008 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:26,009 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,009 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,009 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:26,009 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:26,009 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,009 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,009 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:26,009 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:26,009 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:26,009 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:26,010 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:26,010 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223926Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:26,010 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223926Z
20220512/eu-central-1/s3/aws4_request
6586b414f885a9938bf21184a41cf1bf95d0d87c2f186643b1bb22936157c712
2022-05-12 22:39:26,010 botocore.auth DEBUG    Signature:
e9df096a3a86cc208e8d03b89d29bbc87535c56ef9a8a1c6bb48287258cf4919
2022-05-12 22:39:26,010 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:26,010 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:26,011 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:26,093 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:26,093 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7osP2TcncMj77AnYKGOJ5um81KvEw6lBpbobkU4aJGY41TVtrTE8TNHokuK4mcg+KpLuEcaeBAE=', 'x-amz-request-id': '5PRZ2WCGXN545SK3', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:26,094 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:26,094 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:26,095 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:26,095 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:26,095 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '5PRZ2WCGXN545SK3', 'HostId': '7osP2TcncMj77AnYKGOJ5um81KvEw6lBpbobkU4aJGY41TVtrTE8TNHokuK4mcg+KpLuEcaeBAE=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '7osP2TcncMj77AnYKGOJ5um81KvEw6lBpbobkU4aJGY41TVtrTE8TNHokuK4mcg+KpLuEcaeBAE=', 'x-amz-request-id': '5PRZ2WCGXN545SK3', 'date': 'Thu, 12 May 2022 22:39:27 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:26,095 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:26,097 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:26,097 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2'}
2022-05-12 22:39:26,097 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,097 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,097 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,097 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,097 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,098 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,098 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:26,098 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:26,098 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,098 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,098 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:26,098 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:26,098 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,099 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,099 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:26,099 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:26,099 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:26,099 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2
2022-05-12 22:39:26,099 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:26,100 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223926Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:26,100 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223926Z
20220512/eu-central-1/s3/aws4_request
74ae771b37836d5ecee76e25e484636785d4fa5c549ba0c88065878b72390093
2022-05-12 22:39:26,100 botocore.auth DEBUG    Signature:
f40b573c7392693eb4985c0d62b24368fed4edaeeffa0eda102ea243365290fb
2022-05-12 22:39:26,100 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:26,100 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:26,101 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:26,181 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2 HTTP/1.1" 404 0
2022-05-12 22:39:26,182 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5PRM8HQESSKR8T55', 'x-amz-id-2': 'Vddo9N5KRyuPSqiHwJdM6sVT6PgQCdI5GUavS21nfJF5vOmoiaCOENyEZDNwz2OEw0Xeunv/C70=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:25 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:26,182 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:26,182 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:26,182 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:26,182 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:26,183 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:26,184 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:26,185 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:26,185 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,185 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,185 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,185 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,185 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,185 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,185 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:26,185 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:26,185 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,186 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,186 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:26,186 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:26,186 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,186 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,186 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:26,186 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:26,186 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:26,186 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:26,187 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:26,187 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223926Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:26,187 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223926Z
20220512/eu-central-1/s3/aws4_request
6586b414f885a9938bf21184a41cf1bf95d0d87c2f186643b1bb22936157c712
2022-05-12 22:39:26,187 botocore.auth DEBUG    Signature:
e9df096a3a86cc208e8d03b89d29bbc87535c56ef9a8a1c6bb48287258cf4919
2022-05-12 22:39:26,187 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:26,187 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:26,188 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:26,269 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:26,270 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1oMlChRWcC/VPn9OlpUp76dfvXOtGDFswuF82b1+Szo0IxIcdPXpXMvY33emJKaZ4b2yH9fV2WQ=', 'x-amz-request-id': '5PRK3XRNYEAH6DPD', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:26,270 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:26,271 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:26,271 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:26,271 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:26,271 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '5PRK3XRNYEAH6DPD', 'HostId': '1oMlChRWcC/VPn9OlpUp76dfvXOtGDFswuF82b1+Szo0IxIcdPXpXMvY33emJKaZ4b2yH9fV2WQ=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '1oMlChRWcC/VPn9OlpUp76dfvXOtGDFswuF82b1+Szo0IxIcdPXpXMvY33emJKaZ4b2yH9fV2WQ=', 'x-amz-request-id': '5PRK3XRNYEAH6DPD', 'date': 'Thu, 12 May 2022 22:39:27 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:26,271 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:26,273 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:26,273 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless'}
2022-05-12 22:39:26,273 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,273 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,274 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,274 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,274 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,274 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,274 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:26,274 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:26,274 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,274 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,274 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:26,275 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:26,275 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,275 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,275 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:26,275 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:26,275 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:26,275 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:26,276 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:26,276 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223926Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:26,276 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223926Z
20220512/eu-central-1/s3/aws4_request
f6b38e86e7ff611bef6f959fe65065d681f8efbb948303bfd0a0f3c696361134
2022-05-12 22:39:26,276 botocore.auth DEBUG    Signature:
8edb6ebe7bbcd0d16cb8aab03bfa3b2130ba45a835e82f08ccfc983161075308
2022-05-12 22:39:26,276 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:26,276 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:26,276 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:26,360 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:39:26,361 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5PRPY6FY2XRWB7FJ', 'x-amz-id-2': 'tNuK+r09ZjVwnoQYoNpeAWuDNOIXMMFLjjHLSwDsLycSrq4+SEiLd38h6gi8F+wSj8Ts1uaKmak=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:25 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:26,361 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:26,361 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:26,361 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:26,361 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:26,361 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:26,363 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:26,363 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless/'}
2022-05-12 22:39:26,363 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,363 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,363 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,363 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,363 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,364 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,364 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:26,364 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:26,364 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,364 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,364 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:26,365 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:26,365 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,365 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,365 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:26,365 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:26,365 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:26,365 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:26,366 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:26,366 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223926Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:26,366 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223926Z
20220512/eu-central-1/s3/aws4_request
c5c84264643ab7ec4f2b4653cf25bf4be35364a2581a439d0e2983f44e1705df
2022-05-12 22:39:26,366 botocore.auth DEBUG    Signature:
e3bc96f0a47fa5c8c97eade8f1084800b51dff19af1c67eb16f2b7f3fa487168
2022-05-12 22:39:26,366 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:26,367 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:26,367 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:26,448 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:26,449 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5PRS208M6QR09QG7', 'x-amz-id-2': 'zx1ZAR58EDuC5SC7by3UelHIH9WWan3BjAcoDFHdpi6qPPNRFBlOsvbpkhBASq0MZhPeFpLWGTc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:25 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:26,449 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:26,449 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:26,449 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:26,450 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:26,450 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:26,452 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:26,455 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:39:26,456 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:26,457 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:26,457 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:26,457 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:26,457 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:26,457 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:26,457 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:26,457 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:26,458 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:26,458 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:26,458 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:26,458 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:26,458 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:26,458 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:26,459 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:26,459 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:26,459 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:26,459 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:26,459 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:26,459 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:26,459 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:26,460 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:26,460 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_2/data_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223926Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:26,460 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223926Z
20220512/eu-central-1/s3/aws4_request
b031fd4a0515f2316f1bb875f14c5e88eafd3a5f0cdb2431ae494e5c8317b32a
2022-05-12 22:39:26,460 botocore.auth DEBUG    Signature:
10b0471dfc3ec65a6e1578a4d2729533764442838910306be56fb169f74f7ef6
2022-05-12 22:39:26,460 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:26,460 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:26,460 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:26,550 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_2/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:26,551 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'c1Y+usra/92fItVwPOE86czpFrhioL49q46N2knktARB0rq30n+9+PkI1a54dVke/BaCeguiXBA=', 'x-amz-request-id': '5PRYSZP3FF6QZ2F1', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:26,551 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:26,552 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:26,552 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:26,552 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:26,553 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '5PRYSZP3FF6QZ2F1', 'HostId': 'c1Y+usra/92fItVwPOE86czpFrhioL49q46N2knktARB0rq30n+9+PkI1a54dVke/BaCeguiXBA=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'c1Y+usra/92fItVwPOE86czpFrhioL49q46N2knktARB0rq30n+9+PkI1a54dVke/BaCeguiXBA=', 'x-amz-request-id': '5PRYSZP3FF6QZ2F1', 'date': 'Thu, 12 May 2022 22:39:27 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:39:26,553 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:26,555 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:26,555 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:26,556 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,556 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,556 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,556 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,556 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,556 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,556 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:26,557 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:26,557 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,557 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,557 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:26,557 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:26,557 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,557 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,557 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:26,557 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:26,557 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:26,558 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:26,558 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:26,558 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223926Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:26,558 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223926Z
20220512/eu-central-1/s3/aws4_request
6586b414f885a9938bf21184a41cf1bf95d0d87c2f186643b1bb22936157c712
2022-05-12 22:39:26,558 botocore.auth DEBUG    Signature:
e9df096a3a86cc208e8d03b89d29bbc87535c56ef9a8a1c6bb48287258cf4919
2022-05-12 22:39:26,558 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:26,559 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:26,559 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:26,639 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:26,639 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'E/aYw+uvDQZ94dLSf5A94Wd4tuna4DH1FHon7HXXUHLnDdeGdVIWtskveSFDi+tlKJmIteRks/k=', 'x-amz-request-id': '5PRSQ4J62HA1905E', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:26,640 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:26,640 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:26,640 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:26,641 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:26,641 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '5PRSQ4J62HA1905E', 'HostId': 'E/aYw+uvDQZ94dLSf5A94Wd4tuna4DH1FHon7HXXUHLnDdeGdVIWtskveSFDi+tlKJmIteRks/k=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'E/aYw+uvDQZ94dLSf5A94Wd4tuna4DH1FHon7HXXUHLnDdeGdVIWtskveSFDi+tlKJmIteRks/k=', 'x-amz-request-id': '5PRSQ4J62HA1905E', 'date': 'Thu, 12 May 2022 22:39:27 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:26,641 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:26,642 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:26,643 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless'}
2022-05-12 22:39:26,643 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,643 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,643 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,643 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,643 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,643 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,644 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:26,644 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:26,644 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,644 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,644 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:26,644 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:26,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:26,644 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:26,644 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:26,644 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:26,645 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:26,645 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223926Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:26,645 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223926Z
20220512/eu-central-1/s3/aws4_request
f6b38e86e7ff611bef6f959fe65065d681f8efbb948303bfd0a0f3c696361134
2022-05-12 22:39:26,645 botocore.auth DEBUG    Signature:
8edb6ebe7bbcd0d16cb8aab03bfa3b2130ba45a835e82f08ccfc983161075308
2022-05-12 22:39:26,645 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:26,645 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:26,646 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:26,742 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:39:26,742 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5PRZZN5DZZNS4SZ0', 'x-amz-id-2': 'Y9W8/z0Zx7qwJYlJY8SNsa8eX6rc83Gf5PRvEEhUdCJUM0JATVTqp+Um4qsYKa+JEwptEMH0uZU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:25 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:26,742 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:26,743 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:26,743 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:26,743 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:26,743 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:26,745 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:26,746 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless/'}
2022-05-12 22:39:26,746 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,746 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,746 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,746 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,746 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,747 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,747 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:26,747 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:26,747 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,747 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,747 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:26,747 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:26,747 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,748 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,748 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:26,748 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:26,748 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:26,748 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:26,748 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:26,748 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223926Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:26,748 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223926Z
20220512/eu-central-1/s3/aws4_request
c5c84264643ab7ec4f2b4653cf25bf4be35364a2581a439d0e2983f44e1705df
2022-05-12 22:39:26,749 botocore.auth DEBUG    Signature:
e3bc96f0a47fa5c8c97eade8f1084800b51dff19af1c67eb16f2b7f3fa487168
2022-05-12 22:39:26,749 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:26,749 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:26,749 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:26,836 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:26,836 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'goJxDklfKfXi3rkjKQYBa+48PGQWnaEm5rM48NptZfPorkECLPVgsNpbOImIgexGE5VU06tXIfA=', 'x-amz-request-id': '5PRQBAS3YD1K4RZY', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:27 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:26,836 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:26,837 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:26,837 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:26,837 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:26,837 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '5PRQBAS3YD1K4RZY', 'HostId': 'goJxDklfKfXi3rkjKQYBa+48PGQWnaEm5rM48NptZfPorkECLPVgsNpbOImIgexGE5VU06tXIfA=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'goJxDklfKfXi3rkjKQYBa+48PGQWnaEm5rM48NptZfPorkECLPVgsNpbOImIgexGE5VU06tXIfA=', 'x-amz-request-id': '5PRQBAS3YD1K4RZY', 'date': 'Thu, 12 May 2022 22:39:27 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:27 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 27, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:26,838 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:26,839 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:26,839 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless'}
2022-05-12 22:39:26,839 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,839 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,840 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,840 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,840 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,840 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,840 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:26,840 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:26,840 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,840 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,840 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:26,841 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:26,841 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,841 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,841 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:26,841 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:26,841 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:26,841 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:26,841 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:26,841 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223926Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:26,842 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223926Z
20220512/eu-central-1/s3/aws4_request
7d8029040ab44e1f5e2ff3c57ad87f7f0fabc11c49d224d1094879b732e9fa68
2022-05-12 22:39:26,842 botocore.auth DEBUG    Signature:
bdbcb1fc56e25f630cfc6a95c32f574a55724dbc787097d9bd1a5fd7c38ba64f
2022-05-12 22:39:26,842 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:26,842 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:26,842 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:26,927 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:26,927 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5PRZVBX7R0DAR78D', 'x-amz-id-2': 'GZ68ifG4P0btOOGMyv069Jml4/NJXxCKzgqUaI5OqRKSgVdCcDaxfUz5yC3YsSgRLIYTppHg88Y=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:25 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:26,928 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:26,928 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:26,928 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:26,928 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:26,928 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:26,930 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:26,930 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless/'}
2022-05-12 22:39:26,930 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,930 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,930 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,930 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:26,930 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:26,931 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,931 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:26,931 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:26,931 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,931 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:26,931 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:26,931 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:26,931 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,931 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:26,931 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:26,931 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:26,932 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:26,932 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:26,932 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:26,932 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223926Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:26,932 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223926Z
20220512/eu-central-1/s3/aws4_request
5862edb6e666edf04f697db1baa75ec238f57b9a06b3d51bbc57a48b77d1b0a3
2022-05-12 22:39:26,932 botocore.auth DEBUG    Signature:
8d9f06b631d479fc42744b821c1b0c8b7d24fe6ac1747409d8fabdc21b656e65
2022-05-12 22:39:26,932 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:26,933 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:26,933 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:27,016 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:27,016 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5PRMSB27CAJGHRVM', 'x-amz-id-2': 't8AzwhVCRq66aSfZq+isA6Oj3ph5P+vZzXz1LJsq3lnRLkcVppQmZGYZFus9g3CtoMHNdnnF3hE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:26 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:27,016 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:27,017 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:27,017 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:27,017 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:27,017 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:27,017 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:27,017 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:27,017 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:27,018 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,018 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:27,018 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:27,018 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:27,018 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:27,018 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223927Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:27,018 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223927Z
20220512/eu-central-1/s3/aws4_request
f4590a4b94851d169ccff50b3d0f9c699245b10c4b21291ddb957e9b8e7d7845
2022-05-12 22:39:27,018 botocore.auth DEBUG    Signature:
d13968cbe6ec54305b2fbed98d9438f15918b5367655ecc95c8f6a2ad264462d
2022-05-12 22:39:27,018 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:27,018 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:27,019 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:27,100 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:27,100 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hLdlYVK9Y60sX5/063EEaV4ue0lWDwI7tZik+UhWxE2cjXrsnvEoJLnGxuZ+AgA4gWvx4JsjEoM=', 'x-amz-request-id': 'B5ZC313PT6MGXEBY', 'Date': 'Thu, 12 May 2022 22:39:28 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:27,100 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:27,101 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:27,101 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:27,101 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:27,102 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'B5ZC313PT6MGXEBY', 'HostId': 'hLdlYVK9Y60sX5/063EEaV4ue0lWDwI7tZik+UhWxE2cjXrsnvEoJLnGxuZ+AgA4gWvx4JsjEoM=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'hLdlYVK9Y60sX5/063EEaV4ue0lWDwI7tZik+UhWxE2cjXrsnvEoJLnGxuZ+AgA4gWvx4JsjEoM=', 'x-amz-request-id': 'B5ZC313PT6MGXEBY', 'date': 'Thu, 12 May 2022 22:39:28 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:27,102 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:27,103 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:27,103 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless'}
2022-05-12 22:39:27,104 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,104 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,104 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,104 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,104 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,104 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,104 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:27,104 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:27,104 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,105 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,105 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:27,105 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:27,105 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,105 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,105 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:27,105 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:27,105 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:27,105 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:27,106 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:27,106 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223927Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:27,106 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223927Z
20220512/eu-central-1/s3/aws4_request
c60309237f6d8059348a5d888c788b10525eb4ca16323645caf880124bf7e0cf
2022-05-12 22:39:27,106 botocore.auth DEBUG    Signature:
1107f0dd491d305233cd2e831eefc80a9961b6934c6e0a9a917b11aac0586884
2022-05-12 22:39:27,106 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:27,106 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:27,107 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:27,186 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:27,187 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'B5ZCFY72GB7YJ72G', 'x-amz-id-2': 'joj24pP18E6NSC+rXGGDY5RAdyjCsN+5p52/KW7drh12dA9dkiLjE951ueF2HoHS3RuWViT+L3I=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:26 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:27,187 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:27,187 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:27,187 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:27,187 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:27,187 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:27,189 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:27,189 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless/'}
2022-05-12 22:39:27,189 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,189 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,189 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,190 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,190 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,190 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,190 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:27,190 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:27,190 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,190 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,190 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:27,190 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:27,190 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,191 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,191 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:27,191 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:27,191 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:27,191 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:27,191 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:27,191 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223927Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:27,191 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223927Z
20220512/eu-central-1/s3/aws4_request
f4b049b6f0feeef8db7f4975f252870f9595945d5dba26b52a5de32e0c984528
2022-05-12 22:39:27,191 botocore.auth DEBUG    Signature:
730b7c5500fef052e39d1c7f8d3fb7e7b548a2d7f81010865458b54be205e0d1
2022-05-12 22:39:27,192 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:27,192 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:27,192 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:27,283 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:27,283 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'B5Z8CZ2448FEZ6YP', 'x-amz-id-2': 'J7KzTzF0YIWj76lqxuL0Ff3wye58s/03jBCHVbycAJQ3YDH89e6A++ncT63QWXHc+mc++ESpzC0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:26 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:27,283 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:27,283 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:27,284 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:27,284 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:27,284 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:27,285 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:27,286 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2'}
2022-05-12 22:39:27,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,287 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,287 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:27,287 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:27,287 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,287 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,287 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:27,287 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:27,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:27,288 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:27,288 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:27,288 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2
2022-05-12 22:39:27,288 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:27,288 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223927Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:27,288 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223927Z
20220512/eu-central-1/s3/aws4_request
5d43145588737834ebec7af9097372ab855f8a0dbf8551a8872948422af77e89
2022-05-12 22:39:27,288 botocore.auth DEBUG    Signature:
a00d8d8261abe1cc418c5df103668343e936a69e3f74d41e3a9a44183bd661b5
2022-05-12 22:39:27,289 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:27,289 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:27,289 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:27,372 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2 HTTP/1.1" 404 0
2022-05-12 22:39:27,372 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'B5Z77T7CECST8K6K', 'x-amz-id-2': '47c3kNklk8aw7lR0s9fgn+PbWEDE81Qx4pu6wKI2mqQyG8t59akugQ5kJWR8IaKsSfZyIDpjnaQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:26 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:27,372 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:27,372 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:27,373 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:27,373 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:27,373 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:27,374 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:27,375 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:27,375 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,375 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,375 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,375 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,375 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,375 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,375 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:27,375 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:27,375 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,376 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,376 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:27,376 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:27,376 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,376 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,376 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:27,376 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:27,376 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:27,376 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:27,377 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:27,377 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223927Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:27,377 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223927Z
20220512/eu-central-1/s3/aws4_request
f4590a4b94851d169ccff50b3d0f9c699245b10c4b21291ddb957e9b8e7d7845
2022-05-12 22:39:27,377 botocore.auth DEBUG    Signature:
d13968cbe6ec54305b2fbed98d9438f15918b5367655ecc95c8f6a2ad264462d
2022-05-12 22:39:27,377 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:27,377 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:27,378 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:27,461 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:27,461 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'PkE79N9+1Vcs6IsSBiNcZNuLPfBTD4x6W6+PrN4Dwd0XsAlbUFDl8ATCyBWJSIL1WPY68++f+io=', 'x-amz-request-id': 'B5ZA8HQKT9RAN75E', 'Date': 'Thu, 12 May 2022 22:39:28 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:27,461 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:27,462 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:27,462 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:27,462 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:27,462 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'B5ZA8HQKT9RAN75E', 'HostId': 'PkE79N9+1Vcs6IsSBiNcZNuLPfBTD4x6W6+PrN4Dwd0XsAlbUFDl8ATCyBWJSIL1WPY68++f+io=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'PkE79N9+1Vcs6IsSBiNcZNuLPfBTD4x6W6+PrN4Dwd0XsAlbUFDl8ATCyBWJSIL1WPY68++f+io=', 'x-amz-request-id': 'B5ZA8HQKT9RAN75E', 'date': 'Thu, 12 May 2022 22:39:28 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:27,462 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:27,463 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:27,463 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2'}
2022-05-12 22:39:27,464 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,464 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,464 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,464 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,464 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,464 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,464 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:27,464 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:27,464 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,464 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,464 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:27,464 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:27,464 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,465 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,465 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:27,465 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:27,465 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:27,465 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2
2022-05-12 22:39:27,465 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:27,465 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223927Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:27,465 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223927Z
20220512/eu-central-1/s3/aws4_request
5d43145588737834ebec7af9097372ab855f8a0dbf8551a8872948422af77e89
2022-05-12 22:39:27,465 botocore.auth DEBUG    Signature:
a00d8d8261abe1cc418c5df103668343e936a69e3f74d41e3a9a44183bd661b5
2022-05-12 22:39:27,465 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:27,465 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:27,465 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:27,548 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2 HTTP/1.1" 404 0
2022-05-12 22:39:27,549 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'B5Z5DZEE2YH31KE4', 'x-amz-id-2': '/Uhqcwp32MqzmAlkWa7sV1m/GtT9Sz4y2slCPtwPb+WOaEcWl24NSWqMRwfYL+rh4MUsmMi0pmY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:26 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:27,549 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:27,549 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:27,549 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:27,549 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:27,550 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:27,551 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:27,552 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:27,552 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,552 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,552 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,552 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,552 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,553 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,553 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:27,553 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:27,553 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,553 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,553 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:27,553 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:27,553 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,553 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,554 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:27,554 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:27,554 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:27,554 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:27,554 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:27,555 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223927Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:27,555 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223927Z
20220512/eu-central-1/s3/aws4_request
f4590a4b94851d169ccff50b3d0f9c699245b10c4b21291ddb957e9b8e7d7845
2022-05-12 22:39:27,555 botocore.auth DEBUG    Signature:
d13968cbe6ec54305b2fbed98d9438f15918b5367655ecc95c8f6a2ad264462d
2022-05-12 22:39:27,555 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:27,555 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:27,556 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:27,638 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:27,639 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'G3K5F/Vifk9O41/bkjO95J+Wy51qeHo6wHHpUGr+DmCaGZ+7VSPt7qVWfzLs2SOlieFBZHA3k3c=', 'x-amz-request-id': 'B5Z2DCAT8NPKAHHT', 'Date': 'Thu, 12 May 2022 22:39:28 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:27,639 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:27,640 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:27,640 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:27,640 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:27,640 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'B5Z2DCAT8NPKAHHT', 'HostId': 'G3K5F/Vifk9O41/bkjO95J+Wy51qeHo6wHHpUGr+DmCaGZ+7VSPt7qVWfzLs2SOlieFBZHA3k3c=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'G3K5F/Vifk9O41/bkjO95J+Wy51qeHo6wHHpUGr+DmCaGZ+7VSPt7qVWfzLs2SOlieFBZHA3k3c=', 'x-amz-request-id': 'B5Z2DCAT8NPKAHHT', 'date': 'Thu, 12 May 2022 22:39:28 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:27,640 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:27,642 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:27,642 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless'}
2022-05-12 22:39:27,643 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,643 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,643 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,643 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,643 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,643 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,643 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:27,643 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:27,643 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,643 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,644 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:27,644 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:27,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:27,644 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:27,644 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:27,644 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:27,644 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:27,645 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223927Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:27,645 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223927Z
20220512/eu-central-1/s3/aws4_request
c60309237f6d8059348a5d888c788b10525eb4ca16323645caf880124bf7e0cf
2022-05-12 22:39:27,645 botocore.auth DEBUG    Signature:
1107f0dd491d305233cd2e831eefc80a9961b6934c6e0a9a917b11aac0586884
2022-05-12 22:39:27,645 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:27,645 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:27,645 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:27,727 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:27,728 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'B5Z1AG56784D6JJW', 'x-amz-id-2': 'z+4oHfeQN5tar5b9kci6cyyS1H/Ynqx4WQGzP8bjOLVZnQ864edxC81y+4YdJoSjMVy81ZJXJoo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:26 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:27,728 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:27,728 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:27,728 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:27,729 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:27,729 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:27,731 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:27,731 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless/'}
2022-05-12 22:39:27,731 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,731 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,732 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,732 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,732 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,732 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,732 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:27,732 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:27,732 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,732 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,733 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:27,733 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:27,733 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,733 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,733 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:27,733 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:27,733 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:27,733 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:27,734 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:27,734 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223927Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:27,734 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223927Z
20220512/eu-central-1/s3/aws4_request
f4b049b6f0feeef8db7f4975f252870f9595945d5dba26b52a5de32e0c984528
2022-05-12 22:39:27,734 botocore.auth DEBUG    Signature:
730b7c5500fef052e39d1c7f8d3fb7e7b548a2d7f81010865458b54be205e0d1
2022-05-12 22:39:27,734 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:27,734 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:27,735 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:27,816 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:27,817 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'B5Z1ZAW6SJCAKV7J', 'x-amz-id-2': 'gWG1PFlUh3IVz6950/qy+ZdSSgI9iMI675sWIYtdQOnsoTxACJ26HqKYVOoPpiTkGh49IURHPyo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:26 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:27,817 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:27,817 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:27,817 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:27,817 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:27,818 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:27,819 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:27,820 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:39:27,820 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:27,820 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:27,820 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:27,820 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:27,820 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:27,820 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:27,820 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:27,821 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:27,821 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:27,821 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:27,821 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:27,821 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:27,821 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:27,821 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:27,821 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:27,821 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:27,822 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:27,822 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:27,822 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:27,822 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:27,822 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:27,822 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:27,822 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_2/mask_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223927Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:27,822 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223927Z
20220512/eu-central-1/s3/aws4_request
f812b40e21809523a085509a9ff4dccd465abd60da3504001075480d5eaeba6e
2022-05-12 22:39:27,823 botocore.auth DEBUG    Signature:
54c12a961a886e4c19dc12a3fd9009e6c0d317d4227bc8a84fbbe22b40aa79c6
2022-05-12 22:39:27,823 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:27,823 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:27,823 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:27,916 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:27,916 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'WEXGRmUj1TilfjvQEtE/4TE57jDLmkNEsqqWBu8BNXB4DYVNkfwsHhNkjxBDfzNkKnbRcQDPckY=', 'x-amz-request-id': 'B5ZE2GM34XY7FQ0Y', 'Date': 'Thu, 12 May 2022 22:39:28 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:27,916 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:27,917 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:27,917 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:27,917 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:27,917 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'B5ZE2GM34XY7FQ0Y', 'HostId': 'WEXGRmUj1TilfjvQEtE/4TE57jDLmkNEsqqWBu8BNXB4DYVNkfwsHhNkjxBDfzNkKnbRcQDPckY=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'WEXGRmUj1TilfjvQEtE/4TE57jDLmkNEsqqWBu8BNXB4DYVNkfwsHhNkjxBDfzNkKnbRcQDPckY=', 'x-amz-request-id': 'B5ZE2GM34XY7FQ0Y', 'date': 'Thu, 12 May 2022 22:39:28 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:39:27,917 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:27,919 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:27,919 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:27,919 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,919 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,919 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,920 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:27,920 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:27,920 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,920 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:27,920 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:27,920 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,920 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:27,920 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:27,921 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:27,921 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,921 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:27,921 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:27,921 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:27,921 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:27,921 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:27,921 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:27,922 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223927Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:27,922 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223927Z
20220512/eu-central-1/s3/aws4_request
f4590a4b94851d169ccff50b3d0f9c699245b10c4b21291ddb957e9b8e7d7845
2022-05-12 22:39:27,922 botocore.auth DEBUG    Signature:
d13968cbe6ec54305b2fbed98d9438f15918b5367655ecc95c8f6a2ad264462d
2022-05-12 22:39:27,922 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:27,922 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:27,922 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:28,007 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:28,008 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qBRtlkKF353KU9EBT0TD69Y7ExiQLHfODAvhUzRbNXY4/QuRy/KRyJM36NPjmJFZaeBlldH+taY=', 'x-amz-request-id': 'B5Z3JAPKVARTWK9S', 'Date': 'Thu, 12 May 2022 22:39:28 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:28,008 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:28,009 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:28,009 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:28,009 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:28,009 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'B5Z3JAPKVARTWK9S', 'HostId': 'qBRtlkKF353KU9EBT0TD69Y7ExiQLHfODAvhUzRbNXY4/QuRy/KRyJM36NPjmJFZaeBlldH+taY=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'qBRtlkKF353KU9EBT0TD69Y7ExiQLHfODAvhUzRbNXY4/QuRy/KRyJM36NPjmJFZaeBlldH+taY=', 'x-amz-request-id': 'B5Z3JAPKVARTWK9S', 'date': 'Thu, 12 May 2022 22:39:28 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:28,009 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:28,011 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:28,011 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless'}
2022-05-12 22:39:28,011 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,011 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,011 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,011 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,011 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,012 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,012 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:28,012 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:28,012 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,012 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,012 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:28,012 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:28,012 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,012 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,012 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:28,012 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:28,012 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:28,012 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:28,013 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:28,013 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223928Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:28,013 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223928Z
20220512/eu-central-1/s3/aws4_request
e44c33cb60cead858aa8986ef5bf3bb7ceafe2fbc7d0fbddda21d4399382fb3b
2022-05-12 22:39:28,013 botocore.auth DEBUG    Signature:
ac24fb24cafc80a0f5e8b481d697c13bd827061065f129a8f075d7b5ccc38226
2022-05-12 22:39:28,013 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:28,013 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:28,014 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:28,097 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:28,097 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'QSXC5M1DKDP610T3', 'x-amz-id-2': 'CfBCkk4XKKZ/xktuhtELYWoU6P031MFmxlRoGDRlNahsNelTX4/9uHcDl/lzsSftb3xLWKA2HX8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:28,097 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:28,097 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:28,098 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:28,098 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:28,098 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:28,099 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:28,099 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless/'}
2022-05-12 22:39:28,100 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,100 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,100 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,100 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,100 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,100 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,100 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:28,100 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:28,100 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,100 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,101 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:28,101 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:28,101 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,101 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,101 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:28,101 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:28,101 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:28,101 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:28,102 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:28,102 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223928Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:28,102 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223928Z
20220512/eu-central-1/s3/aws4_request
f2eb3fba68abeceb70a6b722227d0a6b8b07d46de6f2a33a766851b54e214559
2022-05-12 22:39:28,102 botocore.auth DEBUG    Signature:
f1592c3cb97fc1ef2670490280602657948a163bec3f2371f5dff2130cead977
2022-05-12 22:39:28,102 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:28,102 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:28,103 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:28,188 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:28,189 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'VJUI8HX6X6s3cyRGxJcozRnJWzYDGdF+5q2NQ9C7DYwenrit5gqnwob1SuYXj4S5DCu1Hh/lvus=', 'x-amz-request-id': 'QSX1A9TJASMHWGYF', 'Date': 'Thu, 12 May 2022 22:39:29 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:28 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:28,189 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:28,190 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:28,190 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:28,190 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:28,191 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'QSX1A9TJASMHWGYF', 'HostId': 'VJUI8HX6X6s3cyRGxJcozRnJWzYDGdF+5q2NQ9C7DYwenrit5gqnwob1SuYXj4S5DCu1Hh/lvus=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'VJUI8HX6X6s3cyRGxJcozRnJWzYDGdF+5q2NQ9C7DYwenrit5gqnwob1SuYXj4S5DCu1Hh/lvus=', 'x-amz-request-id': 'QSX1A9TJASMHWGYF', 'date': 'Thu, 12 May 2022 22:39:29 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:28 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 28, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:28,191 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:28,192 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:28,193 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless'}
2022-05-12 22:39:28,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,194 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:28,194 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:28,194 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,194 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,194 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:28,194 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:28,194 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,194 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,194 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:28,194 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:28,195 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:28,195 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:28,195 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:28,195 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223928Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:28,195 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223928Z
20220512/eu-central-1/s3/aws4_request
d2b57aff715ce39fb178117da584a0f9b65c673e4b08bc642520d66a5b6e0ad1
2022-05-12 22:39:28,195 botocore.auth DEBUG    Signature:
5d11f0b81794aac9273622696937d691fde2a577f0cf78108ec1a926738b97f3
2022-05-12 22:39:28,196 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:28,196 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:28,196 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:28,281 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:39:28,281 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'QSXEWBQ9V4PK0BQ4', 'x-amz-id-2': 'r3uwDcwPf5gPlRhc1/HQ0wsYzpiCmbgkBbS8QyGyXLi/t1g3lxq6QRz7bxKrU4PXQSwUmUSr/pc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:28,282 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:28,282 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:28,282 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:28,282 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:28,282 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:28,285 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:28,285 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless/'}
2022-05-12 22:39:28,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,286 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,286 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:28,287 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:28,287 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,287 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,287 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:28,287 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:28,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:28,287 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:28,288 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:28,288 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:28,288 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:28,288 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223928Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:28,288 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223928Z
20220512/eu-central-1/s3/aws4_request
005d77871070f1870a0c0f7d15a31dc21107330deeaaa453cdd0f8436fc337ff
2022-05-12 22:39:28,288 botocore.auth DEBUG    Signature:
78add709872d0890b0aa2c6e1a7eb1ea7eabb5d95ecdfd019ab66c24fb46d842
2022-05-12 22:39:28,289 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:28,289 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:28,289 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:28,377 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:28,378 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'QSX3JY0B9XCRWE04', 'x-amz-id-2': 'a/gyRuUfRfazbMy4VpNhrWpt5n20HfB4lhHv0/4vpDoCoqLl1dRkTSl/s1LBKCxCTsfclLwvl+M=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:28,378 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:28,378 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:28,378 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:28,378 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:28,379 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:28,381 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:28,381 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:28,381 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,381 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,381 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,382 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,382 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,382 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,382 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:28,382 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:28,383 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,383 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,383 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:28,383 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:28,383 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,383 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,383 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:28,383 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:28,384 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:28,384 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:28,384 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:28,384 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223928Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:28,385 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223928Z
20220512/eu-central-1/s3/aws4_request
606e9e2cc983fdcec9b0cf32ba592409bef6a21fcc2716ee81b4a0429a332f70
2022-05-12 22:39:28,385 botocore.auth DEBUG    Signature:
e0c6e2114c411f2324ef4f9d880dfda7dae807b88784a1e6ee4ffc81fdeaf95c
2022-05-12 22:39:28,385 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:28,385 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:28,386 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:28,470 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:28,470 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'RuB4mXEEEb/psOvPO4awd3u/oKnmFdVbuFWmH/b9Di31ZlKMPT0hK3AaJ2ao4fpyKbB3xeUNmws=', 'x-amz-request-id': 'QSXBW3N1SAQ3HMGT', 'Date': 'Thu, 12 May 2022 22:39:29 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:28,471 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:28,471 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:28,472 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:28,472 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:28,472 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'QSXBW3N1SAQ3HMGT', 'HostId': 'RuB4mXEEEb/psOvPO4awd3u/oKnmFdVbuFWmH/b9Di31ZlKMPT0hK3AaJ2ao4fpyKbB3xeUNmws=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'RuB4mXEEEb/psOvPO4awd3u/oKnmFdVbuFWmH/b9Di31ZlKMPT0hK3AaJ2ao4fpyKbB3xeUNmws=', 'x-amz-request-id': 'QSXBW3N1SAQ3HMGT', 'date': 'Thu, 12 May 2022 22:39:29 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:28,472 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:28,473 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:28,474 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless'}
2022-05-12 22:39:28,474 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,474 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,474 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,474 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,474 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,474 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,475 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:28,475 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:28,475 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,475 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,475 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:28,475 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:28,475 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,475 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,475 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:28,475 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:28,475 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:28,475 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:28,476 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:28,476 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223928Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:28,476 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223928Z
20220512/eu-central-1/s3/aws4_request
d2b57aff715ce39fb178117da584a0f9b65c673e4b08bc642520d66a5b6e0ad1
2022-05-12 22:39:28,476 botocore.auth DEBUG    Signature:
5d11f0b81794aac9273622696937d691fde2a577f0cf78108ec1a926738b97f3
2022-05-12 22:39:28,476 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:28,476 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:28,476 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:28,592 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:39:28,592 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'QSXEF3TDYJJ98KFJ', 'x-amz-id-2': 'VEI8TM4/yPDCpWhqhpTf9v56GSm2+fu5pI1vydC9qruTffLgI1MB9IWsq7wFAw+CfujQUHNJtLM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:28,592 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:28,592 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:28,593 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:28,593 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:28,593 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:28,593 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:28,593 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless/'}
2022-05-12 22:39:28,593 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,593 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,593 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,593 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,593 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,594 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,594 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:28,594 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:28,594 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,594 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,594 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:28,594 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:28,594 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,594 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,594 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:28,594 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:28,594 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:28,594 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:28,594 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:28,594 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223928Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:28,594 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223928Z
20220512/eu-central-1/s3/aws4_request
005d77871070f1870a0c0f7d15a31dc21107330deeaaa453cdd0f8436fc337ff
2022-05-12 22:39:28,594 botocore.auth DEBUG    Signature:
78add709872d0890b0aa2c6e1a7eb1ea7eabb5d95ecdfd019ab66c24fb46d842
2022-05-12 22:39:28,594 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:28,594 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:28,594 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:28,675 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:28,675 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'QSX8A95HMCSW8XP2', 'x-amz-id-2': 'Tn47ehYLDrbfzavbLMUoJGkArKV//tg4qwfpbmcc882qxgnvHQ+GeGqgYZM+NvFs5tZWGID9wx4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:28,675 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:28,675 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:28,676 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:28,676 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:28,676 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:28,676 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:28,676 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2'}
2022-05-12 22:39:28,676 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,676 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,676 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,676 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,677 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,677 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,677 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:28,677 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:28,677 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,677 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,677 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:28,677 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:28,677 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,677 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,677 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:28,677 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:28,677 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:28,677 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2
2022-05-12 22:39:28,677 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:28,677 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223928Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:28,677 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223928Z
20220512/eu-central-1/s3/aws4_request
2599ee06e85cc548e8a06c34dd799b318a64c68169d41a87f539b1ee3ea48932
2022-05-12 22:39:28,677 botocore.auth DEBUG    Signature:
b83316f08c941217dc7f496506e298e9a7b10c5de5a999eb299c4865aaa23d8c
2022-05-12 22:39:28,677 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:28,677 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:28,677 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:28,764 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2 HTTP/1.1" 404 0
2022-05-12 22:39:28,764 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'QSXDTPD38X27AYYT', 'x-amz-id-2': 'zdDwMPB5+NP22bc+O1RByLOUhsrLDCikpLLz/mQnEp73CH20TigD10MgRGG1il/tPgBWJ7+jU/c=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:28,764 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:28,765 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:28,765 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:28,765 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:28,765 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:28,766 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:28,766 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,766 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:28,766 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:28,766 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:28,766 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:28,767 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:28,767 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223928Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:28,767 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223928Z
20220512/eu-central-1/s3/aws4_request
606e9e2cc983fdcec9b0cf32ba592409bef6a21fcc2716ee81b4a0429a332f70
2022-05-12 22:39:28,767 botocore.auth DEBUG    Signature:
e0c6e2114c411f2324ef4f9d880dfda7dae807b88784a1e6ee4ffc81fdeaf95c
2022-05-12 22:39:28,767 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:28,767 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:28,767 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:28,848 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:28,848 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'aAE3MV8AwVCmUTZchwVttTv6cVQFUe3nlucD3YfxG3JCq2c6fDW+MDJ0jZXE4CapLMmGho2pqoI=', 'x-amz-request-id': 'QSX26X5YQRHA650Q', 'Date': 'Thu, 12 May 2022 22:39:29 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:28,848 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:28,848 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:28,848 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:28,849 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:28,849 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'QSX26X5YQRHA650Q', 'HostId': 'aAE3MV8AwVCmUTZchwVttTv6cVQFUe3nlucD3YfxG3JCq2c6fDW+MDJ0jZXE4CapLMmGho2pqoI=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'aAE3MV8AwVCmUTZchwVttTv6cVQFUe3nlucD3YfxG3JCq2c6fDW+MDJ0jZXE4CapLMmGho2pqoI=', 'x-amz-request-id': 'QSX26X5YQRHA650Q', 'date': 'Thu, 12 May 2022 22:39:29 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:28,849 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:28,849 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:28,849 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2'}
2022-05-12 22:39:28,849 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,849 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,849 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,849 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,850 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,850 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,850 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:28,850 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:28,850 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,850 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,850 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:28,850 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:28,850 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,850 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,850 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:28,850 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:28,850 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2
2022-05-12 22:39:28,850 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2
2022-05-12 22:39:28,850 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:28,850 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223928Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:28,850 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223928Z
20220512/eu-central-1/s3/aws4_request
2599ee06e85cc548e8a06c34dd799b318a64c68169d41a87f539b1ee3ea48932
2022-05-12 22:39:28,850 botocore.auth DEBUG    Signature:
b83316f08c941217dc7f496506e298e9a7b10c5de5a999eb299c4865aaa23d8c
2022-05-12 22:39:28,850 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:28,850 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:28,850 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:28,932 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2 HTTP/1.1" 404 0
2022-05-12 22:39:28,932 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'QSX7W9CDKRGBFFM5', 'x-amz-id-2': 'gMbB3M429z1722Uf2y60jN/VOMfyWbp6dZEH4B0ldz5m0orEyW5Py551W6cYhB0EY2JLrB1+IOk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:27 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:28,932 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:28,932 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:28,932 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:28,932 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:28,932 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:28,933 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:28,933 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:28,933 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:28,933 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:28,933 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:28,933 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:28,934 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:28,934 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223928Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:28,934 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223928Z
20220512/eu-central-1/s3/aws4_request
606e9e2cc983fdcec9b0cf32ba592409bef6a21fcc2716ee81b4a0429a332f70
2022-05-12 22:39:28,934 botocore.auth DEBUG    Signature:
e0c6e2114c411f2324ef4f9d880dfda7dae807b88784a1e6ee4ffc81fdeaf95c
2022-05-12 22:39:28,934 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:28,934 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:28,934 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,014 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:29,015 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'W7A0puSAGKRqeBFTN0/ZRcaEUjfB2robNXupNypIpcbc9I6McWrB9bUx9F9+mR8R9qHHiFzKgHg=', 'x-amz-request-id': 'QSX427ST8ZHWXQKV', 'Date': 'Thu, 12 May 2022 22:39:29 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:29,015 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:29,015 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:29,015 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:29,015 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:29,015 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'QSX427ST8ZHWXQKV', 'HostId': 'W7A0puSAGKRqeBFTN0/ZRcaEUjfB2robNXupNypIpcbc9I6McWrB9bUx9F9+mR8R9qHHiFzKgHg=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'W7A0puSAGKRqeBFTN0/ZRcaEUjfB2robNXupNypIpcbc9I6McWrB9bUx9F9+mR8R9qHHiFzKgHg=', 'x-amz-request-id': 'QSX427ST8ZHWXQKV', 'date': 'Thu, 12 May 2022 22:39:29 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:29,015 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:29,016 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless'}
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:29,016 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,016 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:29,016 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:29,016 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:29,016 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:29,016 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,017 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223929Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:29,017 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/eu-central-1/s3/aws4_request
f26f36ad5fc96e182a5f06e9fcb583ea0667e2cefeb265c90dd2152310686815
2022-05-12 22:39:29,017 botocore.auth DEBUG    Signature:
d9ca9cee0e2d3877680ec970e5ebb1761df884f70c44d80e05375a8fa245adea
2022-05-12 22:39:29,017 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:29,017 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,017 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,099 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:39:29,099 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'Z32KZNERXWVYYNGJ', 'x-amz-id-2': 'xPIoJmblwhO3WnnPvIxtIqr7iIEdwS5jUyL8T5VEAg72AVGhJsHyp079GRfuz3GEKgyA0uk9BYQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:28 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:29,099 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:29,099 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:29,100 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:29,100 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:29,100 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:29,100 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:29,100 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless/'}
2022-05-12 22:39:29,100 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,100 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,100 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,101 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,101 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,101 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,101 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:29,101 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:29,101 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,101 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,101 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:29,101 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:29,101 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,101 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,101 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:29,101 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:29,101 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:29,101 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:29,101 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,101 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223929Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:29,101 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/eu-central-1/s3/aws4_request
b284596b8b12324f0332e1512ff0b871086749049654a92707a58818a06b66a0
2022-05-12 22:39:29,102 botocore.auth DEBUG    Signature:
8910cc6afd00a488b82d74689a5772e65ee6a0c02846c2ae3d4279a67de1bff8
2022-05-12 22:39:29,102 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:29,102 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,102 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,185 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:29,186 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'Z32QSJ70CRA234P9', 'x-amz-id-2': 'ge1Iecv7qOmFXia8I1t+p+jIJAKL+QASPhChS7cUlM0QJIOIVrhk3x4GQ4chy8FI3qGliumQa+Q=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:28 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:29,186 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:29,186 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:29,186 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:29,186 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:29,186 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:29,187 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:29,188 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:29,188 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:29,188 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:29,188 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:29,188 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:29,188 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:29,189 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,189 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_2/vector_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223929Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:29,189 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/eu-central-1/s3/aws4_request
4ec37f956d7749a96562bcf22aa070d3bef40da6bcc838c7e537f2524f7aea5b
2022-05-12 22:39:29,189 botocore.auth DEBUG    Signature:
63fbef65029ac104e02036c50af05396ddc4f436612080879f8bf601091d6ca9
2022-05-12 22:39:29,189 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:29,189 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,189 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,283 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_2/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:29,284 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'f/iAauDp/X/vQ14yc8mw6ACKQ61EGNrLgQ7TTSXdZidYFA0wO1wCufpVIznMtjPV9acN7lDiT2c=', 'x-amz-request-id': 'Z32XZ9B9NPRBPPAD', 'Date': 'Thu, 12 May 2022 22:39:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:29,284 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:29,284 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:29,284 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:29,284 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:29,284 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'Z32XZ9B9NPRBPPAD', 'HostId': 'f/iAauDp/X/vQ14yc8mw6ACKQ61EGNrLgQ7TTSXdZidYFA0wO1wCufpVIznMtjPV9acN7lDiT2c=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'f/iAauDp/X/vQ14yc8mw6ACKQ61EGNrLgQ7TTSXdZidYFA0wO1wCufpVIznMtjPV9acN7lDiT2c=', 'x-amz-request-id': 'Z32XZ9B9NPRBPPAD', 'date': 'Thu, 12 May 2022 22:39:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:39:29,285 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:29,287 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:29,287 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/'}
2022-05-12 22:39:29,287 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,287 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,287 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,287 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,288 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,288 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,288 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:29,288 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:29,288 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,288 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,288 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:29,288 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:29,288 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,289 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,289 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:29,289 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:29,289 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/
2022-05-12 22:39:29,289 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/
2022-05-12 22:39:29,289 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,289 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223929Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:29,289 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/eu-central-1/s3/aws4_request
0c7d443836ea13449fa1553b28101c90f8b1d37ac2cec08582abc5b66e8e95e1
2022-05-12 22:39:29,290 botocore.auth DEBUG    Signature:
b33f0d7d2c742ab1a0dff32ed8a1e3688cbbac79e792fe6ff294e56bc289829a
2022-05-12 22:39:29,290 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:29,290 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,290 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,376 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/ HTTP/1.1" 200 0
2022-05-12 22:39:29,377 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'E9XLUNAyx5zVl7u/WUa9/Ysv482aNoMXkxa+Zsf3sEEFYCcm+/3+MIpCHBISulw7kjHno0m1G50=', 'x-amz-request-id': 'Z32PXHBVNBTH5QHY', 'Date': 'Thu, 12 May 2022 22:39:30 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:29,377 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:29,377 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:29,378 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:29,378 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:29,378 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'Z32PXHBVNBTH5QHY', 'HostId': 'E9XLUNAyx5zVl7u/WUa9/Ysv482aNoMXkxa+Zsf3sEEFYCcm+/3+MIpCHBISulw7kjHno0m1G50=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'E9XLUNAyx5zVl7u/WUa9/Ysv482aNoMXkxa+Zsf3sEEFYCcm+/3+MIpCHBISulw7kjHno0m1G50=', 'x-amz-request-id': 'Z32PXHBVNBTH5QHY', 'date': 'Thu, 12 May 2022 22:39:30 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:29,378 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:29,379 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:29,380 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless'}
2022-05-12 22:39:29,380 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,380 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,380 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,380 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,380 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,381 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,381 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:29,381 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:29,381 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,381 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,381 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:29,381 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:29,381 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,381 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,381 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:29,381 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:29,382 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:29,382 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:29,382 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,382 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223929Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:29,382 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/eu-central-1/s3/aws4_request
f26f36ad5fc96e182a5f06e9fcb583ea0667e2cefeb265c90dd2152310686815
2022-05-12 22:39:29,382 botocore.auth DEBUG    Signature:
d9ca9cee0e2d3877680ec970e5ebb1761df884f70c44d80e05375a8fa245adea
2022-05-12 22:39:29,383 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:29,383 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,383 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,467 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:39:29,467 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'Z32X57M58DA09Z7W', 'x-amz-id-2': 'xSJixfXPAavlwrKkJtxyPsQ6GQ8GdW6I29S8NF8AZ766kWpwJ87CWk36ixx4nqEaRYJ1EZRVw/I=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:28 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:29,467 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:29,467 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:29,467 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:29,468 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:29,468 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:29,470 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:29,470 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless/'}
2022-05-12 22:39:29,471 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,471 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,471 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,471 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,471 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,471 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,471 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:29,471 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:29,471 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,472 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,472 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:29,472 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:29,472 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,472 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,472 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:29,472 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:29,472 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:29,472 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:29,473 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,473 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223929Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:29,473 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/eu-central-1/s3/aws4_request
b284596b8b12324f0332e1512ff0b871086749049654a92707a58818a06b66a0
2022-05-12 22:39:29,473 botocore.auth DEBUG    Signature:
8910cc6afd00a488b82d74689a5772e65ee6a0c02846c2ae3d4279a67de1bff8
2022-05-12 22:39:29,473 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:29,473 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,474 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,560 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:29,560 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'kK7j/lnA41Y5CvPvvuuMVnSY86Wjy1R7t+MtCoh6QOz3Nz35hdM9S7HzZ/ALbc02Z1FIEdOWm3c=', 'x-amz-request-id': 'Z32RB8NDGYT8ZDFM', 'Date': 'Thu, 12 May 2022 22:39:30 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:29,560 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:29,561 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:29,561 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:29,561 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:29,561 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'Z32RB8NDGYT8ZDFM', 'HostId': 'kK7j/lnA41Y5CvPvvuuMVnSY86Wjy1R7t+MtCoh6QOz3Nz35hdM9S7HzZ/ALbc02Z1FIEdOWm3c=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'kK7j/lnA41Y5CvPvvuuMVnSY86Wjy1R7t+MtCoh6QOz3Nz35hdM9S7HzZ/ALbc02Z1FIEdOWm3c=', 'x-amz-request-id': 'Z32RB8NDGYT8ZDFM', 'date': 'Thu, 12 May 2022 22:39:30 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:29,563 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:29,565 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:29,566 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:29,566 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:29,567 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:29,571 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:29,571 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:29,571 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:29,573 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:29,573 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:29,575 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:29,577 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:29,577 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:29,578 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:29,578 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:29,578 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:29,580 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:29,582 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:29,582 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:29,585 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:29,587 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:29,589 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:29,590 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:29,592 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:29,593 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:29,595 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:29,596 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:29,598 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:29,599 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:29,600 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:29,603 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:29,603 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless'}
2022-05-12 22:39:29,604 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:29,607 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:29,608 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:29,609 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,610 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:29,611 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless'}
2022-05-12 22:39:29,612 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:29,613 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,613 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless'}
2022-05-12 22:39:29,613 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,615 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,614 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,615 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,614 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless'}
2022-05-12 22:39:29,615 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,614 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,615 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,615 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,616 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,616 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,617 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,617 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,617 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,617 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,617 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:29,618 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,618 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,618 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,619 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,619 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,619 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:29,619 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,619 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,619 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,619 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,619 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,619 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:29,619 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,619 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,619 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:29,620 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:29,620 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:29,620 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:29,620 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,620 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,620 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,620 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:29,620 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,621 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,621 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:29,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:29,621 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:29,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,621 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:29,621 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:29,622 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:29,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:29,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,622 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:29,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,622 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:29,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,622 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:29,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,622 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:29,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:29,622 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:29,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:29,622 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:29,622 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:29,622 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:29,623 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:29,623 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:29,623 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223929Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:29,623 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:29,623 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,623 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:29,623 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/us-east-1/s3/aws4_request
d4218c1147ed45a017829c79dfca0d2f2b91a69652a4e44758e36302448c2bbe
2022-05-12 22:39:29,623 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:29,623 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223929Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:29,623 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:29,623 botocore.auth DEBUG    Signature:
35130e0dddc5e3688372b2d42fd584927e6703b981dc0222f559d2a70b470081
2022-05-12 22:39:29,623 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:29,623 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/us-east-1/s3/aws4_request
f0a6a25b7fbb30fcdae850ce5f4e1944da7d49ab9af5731bde19c5aa9d8db249
2022-05-12 22:39:29,623 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:29,624 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,624 botocore.auth DEBUG    Signature:
6222d323237af97779dfe1cdbe15a98a807700ee5cb1ca8b8e2ad5d64bfc732d
2022-05-12 22:39:29,624 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223929Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:29,624 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,624 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223929Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:29,624 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:29,624 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/us-east-1/s3/aws4_request
f0a6a25b7fbb30fcdae850ce5f4e1944da7d49ab9af5731bde19c5aa9d8db249
2022-05-12 22:39:29,624 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,624 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/us-east-1/s3/aws4_request
5eaf781f9227b8e9bc248e25c17a72a7b04fb0f0639b095f8380f256d3491b66
2022-05-12 22:39:29,624 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,624 botocore.auth DEBUG    Signature:
6222d323237af97779dfe1cdbe15a98a807700ee5cb1ca8b8e2ad5d64bfc732d
2022-05-12 22:39:29,625 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:29,625 botocore.auth DEBUG    Signature:
ea6fbe2bfdc9bfc79606dbbc26aadcd34619f57d907ca32f49b2fdff7b86744c
2022-05-12 22:39:29,625 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,625 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:29,625 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:29,625 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:29,625 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,625 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,626 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,626 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,626 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:29,626 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:30,570 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:39:30,570 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'N62WW4868HP912JB', 'x-amz-id-2': '7KE6GnZERb1x7dDZ8ZvKOMTDKiggVLIS3KUHCS9QwRVK84YZOpcmk8/Pa9VFDDJqMAir6Ds7D48=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:30,571 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:30,574 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:30,574 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:30,574 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:30,575 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:39:30,575 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,576 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'N62J68J1MZFE6RPD', 'x-amz-id-2': 'hvabQIgZD4cn9Si97CT8ER7wTW6O9EoHVdIMhWVLfQDlMvGGVj/9nnsbK23r38a5YvU+SU386qY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:30,576 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,576 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:30,577 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless HTTP/1.1" 400 0
2022-05-12 22:39:30,577 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,581 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:30,582 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless HTTP/1.1" 400 0
2022-05-12 22:39:30,582 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'N62SP6VBE52320WX', 'x-amz-id-2': 'QYRGbdp4h1bC+wJQehLOaHlAYUF/hcq6YuVChSDDD0Ddv1PxdfVbSrFgYnRS7YYmA/qIUvdwLtc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:30,582 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,582 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:30,583 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'N62RTJ7EDTX8RG5Q', 'x-amz-id-2': 'I8JeyUewXkV63J4LRScCXGHUcc3aV5+gjft6Vdnd3VG6Mv7VpECcOuV2grOcykoBVYTSHHRkHSs=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:30,583 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:30,584 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,584 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:30,584 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:30,586 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:30,586 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,586 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,587 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:30,587 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:30,587 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,587 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,587 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:30,587 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:30,587 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,588 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,588 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,589 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,589 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,589 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,590 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:39:30,590 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,590 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,590 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:30,590 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:30,590 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,590 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:30,590 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,590 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223930Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:30,590 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,590 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,590 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,590 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223930Z
20220512/us-east-1/s3/aws4_request
7b414e18dc5a8e05e26fdf8c6458716b1837c1bc9a6fd9f7914ac9548fedf5a8
2022-05-12 22:39:30,590 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,590 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,590 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,591 botocore.auth DEBUG    Signature:
3ebf743ae50dd35b6b3a5630bf47ad3f170fcbbeafe7989a671fb9b98ae926b7
2022-05-12 22:39:30,591 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:39:30,591 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,591 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,591 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,591 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:39:30,591 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,591 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,591 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:30,591 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:30,591 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,591 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:39:30,591 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:30,591 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223930Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:30,591 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:39:30,591 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:39:30,592 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:39:30,592 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223930Z
20220512/us-east-1/s3/aws4_request
7b414e18dc5a8e05e26fdf8c6458716b1837c1bc9a6fd9f7914ac9548fedf5a8
2022-05-12 22:39:30,592 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:39:30,592 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:30,592 botocore.auth DEBUG    Signature:
3ebf743ae50dd35b6b3a5630bf47ad3f170fcbbeafe7989a671fb9b98ae926b7
2022-05-12 22:39:30,592 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:30,592 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223930Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:30,592 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,592 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223930Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:30,592 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223930Z
20220512/us-east-1/s3/aws4_request
7b414e18dc5a8e05e26fdf8c6458716b1837c1bc9a6fd9f7914ac9548fedf5a8
2022-05-12 22:39:30,592 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:30,592 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223930Z
20220512/us-east-1/s3/aws4_request
7b414e18dc5a8e05e26fdf8c6458716b1837c1bc9a6fd9f7914ac9548fedf5a8
2022-05-12 22:39:30,592 botocore.auth DEBUG    Signature:
3ebf743ae50dd35b6b3a5630bf47ad3f170fcbbeafe7989a671fb9b98ae926b7
2022-05-12 22:39:30,592 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:30,593 botocore.auth DEBUG    Signature:
3ebf743ae50dd35b6b3a5630bf47ad3f170fcbbeafe7989a671fb9b98ae926b7
2022-05-12 22:39:30,593 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,593 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:39:30,593 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,593 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:30,593 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:30,593 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:30,593 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:30,593 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:39:30,593 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:39:31,774 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:39:31,774 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SNYSTX5D4VXVP162', 'x-amz-id-2': 'kZVTr7CGBj8aNkIA8HEb5KhEga3lkB5YzfFDKXqNcDX9T4PPoHhVxY4/lNRNuBZcTvn5AIkaq+E=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:31,774 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:31,775 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,775 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:31,775 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,775 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:31,775 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:31,775 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:31,776 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,776 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,776 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,776 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,776 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,776 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:31,776 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:39:31,776 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:31,777 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223931Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:31,777 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223931Z
20220512/eu-central-1/s3/aws4_request
12566f1d22887e22a704f7794bdf2a6557e028b1988f62490d5f8c00d065a611
2022-05-12 22:39:31,777 botocore.auth DEBUG    Signature:
65644ad90c9aa464e394e610d237c76085a6d14eb4463e2c9feb6ac0b6f829a7
2022-05-12 22:39:31,777 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,777 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:31,778 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:31,778 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:31,779 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:39:31,779 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SNYSC6HTDPCZZ1T1', 'x-amz-id-2': '0Mnqo7hDjBwdzMGib7iUeWNiFc+BO0c2I2LeRuD81Eh2vx7gte4vCYY1sTrscBf6edmyWyqfFR0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:31,780 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:31,780 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,780 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:31,780 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,780 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:31,781 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:31,781 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:31,781 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,781 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,781 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,781 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,781 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,781 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:31,781 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:39:31,782 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:31,782 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223931Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:31,782 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223931Z
20220512/eu-central-1/s3/aws4_request
12566f1d22887e22a704f7794bdf2a6557e028b1988f62490d5f8c00d065a611
2022-05-12 22:39:31,782 botocore.auth DEBUG    Signature:
65644ad90c9aa464e394e610d237c76085a6d14eb4463e2c9feb6ac0b6f829a7
2022-05-12 22:39:31,782 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,782 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:31,783 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:31,783 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:31,806 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:39:31,807 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SNYM8D0W71Q30B89', 'x-amz-id-2': 'oWIAq6sj1GtmKFHqqmSM1M+LsxGdp31V1xWz9uSlwfOE89Qs3QY7bimmpFih3iwW1KpKB2sMllw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:31,807 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:31,808 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,808 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:31,808 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,808 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:31,808 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:31,808 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:31,809 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,809 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,809 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,809 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,809 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,809 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:31,809 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:39:31,809 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:31,810 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223931Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:31,810 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223931Z
20220512/eu-central-1/s3/aws4_request
12566f1d22887e22a704f7794bdf2a6557e028b1988f62490d5f8c00d065a611
2022-05-12 22:39:31,810 botocore.auth DEBUG    Signature:
65644ad90c9aa464e394e610d237c76085a6d14eb4463e2c9feb6ac0b6f829a7
2022-05-12 22:39:31,810 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,810 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:31,810 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:31,811 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:31,811 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:39:31,812 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SNYWA9NNR599S573', 'x-amz-id-2': 'R8b9pazZx3fPds8IKE15vBhiyLXu1xx2/a5YcX6Tp5WKRCb7vPA3x1JH7H/CxLJTO27KjC5qvOY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:31,812 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:31,812 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,813 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:31,813 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,813 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:31,813 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:31,813 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:31,813 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,813 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,813 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,813 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,814 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,814 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:31,814 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:39:31,814 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:31,814 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223931Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:31,814 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223931Z
20220512/eu-central-1/s3/aws4_request
12566f1d22887e22a704f7794bdf2a6557e028b1988f62490d5f8c00d065a611
2022-05-12 22:39:31,814 botocore.auth DEBUG    Signature:
65644ad90c9aa464e394e610d237c76085a6d14eb4463e2c9feb6ac0b6f829a7
2022-05-12 22:39:31,814 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,815 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:31,815 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:31,815 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:32,585 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:39:32,586 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Ey4peSRQMV1G3uq+oBe554ljLhKwS/pudVJi4G7r7QnBi6YcOPSZsUIN+8ti/mW5pFaFITPJn3k=', 'x-amz-request-id': 'KRR24EH5RSQKRFMF', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,586 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,586 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:32,586 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,586 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:32,586 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:32,587 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:32,587 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:32,587 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:32,588 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:39:32,588 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,588 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '8IElTdIP8eTZn+cvtuXi+vZZEALUa1q18KZ/10kuJJEipHJ7kuEY5CiD+T5VR60zr+dWNJCXlnI=', 'x-amz-request-id': 'KRR7R01VMF6Q7KY4', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,589 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,589 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,589 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,589 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:39:32,589 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:32,590 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,590 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+qt1BzeAN3yGKNQOB0UcLCQuN43XcAvbkKoJf+ftrYIQQXdO1X6dxRILTz56kCYuFRKJb5YGhBU=', 'x-amz-request-id': 'KRR38WNC2RHPV7JE', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,590 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:39:32,591 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,591 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,591 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,592 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'cgN+1qz6opSrE3JR9pB5mM2rMOc6O3igPfeTFxgU3yzFNWgd+8Wb2HUey6Xa9YM7aHg3Le/nAK4=', 'x-amz-request-id': 'KRRE9T53M7CD9WAK', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,592 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:32,592 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:32,593 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:32,593 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,593 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:32,593 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless
2022-05-12 22:39:32,593 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,593 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:32,594 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:32,594 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,594 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:32,595 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,595 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:32,595 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,595 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:32,595 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:32,595 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:32,595 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
32f4b0b6ba4186889a22ce33baf9572417333644bf2acdec5c66a4e058b2ac33
2022-05-12 22:39:32,595 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:32,595 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:32,595 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,595 botocore.auth DEBUG    Signature:
21b70a3e7fbaab722b55377bba7f848a0a7f5a20fb3e9d348efeb0748b0554a2
2022-05-12 22:39:32,595 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:32,595 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:32,595 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,596 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,596 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:32,596 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:32,596 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,596 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,596 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,596 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:32,596 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,596 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,596 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,596 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,596 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,596 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,597 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:32,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,597 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:32,597 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,597 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,597 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:32,597 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,597 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,597 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless
2022-05-12 22:39:32,597 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:32,597 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
fe560f78f43060a3fdc33154ac833213376dced521ff615cdf589656b0c24176
2022-05-12 22:39:32,597 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,597 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless
2022-05-12 22:39:32,597 botocore.auth DEBUG    Signature:
d4586c9ee6a25efa388c057e0fd30a2fa6b8068739ca0c5499b751fa26f019d3
2022-05-12 22:39:32,597 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,598 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,598 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,598 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
fe560f78f43060a3fdc33154ac833213376dced521ff615cdf589656b0c24176
2022-05-12 22:39:32,598 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,598 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,598 botocore.auth DEBUG    Signature:
d4586c9ee6a25efa388c057e0fd30a2fa6b8068739ca0c5499b751fa26f019d3
2022-05-12 22:39:32,598 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
227f494a60b8a1c5baaf66ab76e1409692f1b9072dc0ca3994e096d734c34905
2022-05-12 22:39:32,598 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,598 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,598 botocore.auth DEBUG    Signature:
bd514708460c22e5ad1f62d81f5d19d92063bcae201d493da1cdf9db27c45850
2022-05-12 22:39:32,598 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,598 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,599 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,599 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,599 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,678 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:39:32,679 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRR1643TSN8SGCWF', 'x-amz-id-2': 'vSeqXaET4gJuG27O7Ngl2WpmYKJfcovMAeeAGzpTrsXXpOpjXFaiWKaGljl5FHblOChsbmlxyMA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,679 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,679 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:32,680 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,680 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRRF4AJTW3M9FX91', 'x-amz-id-2': '+gwMQZbk/FCnkIYyydPwXtWj9RK1GRmqrzgxyRAL9Z45GugOxyd5NrGLDEtAmjWzZHYYzsJ1k9o=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,680 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,681 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,681 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,681 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,681 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:32,681 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,682 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,682 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,682 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:32,684 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,684 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:32,684 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:39:32,685 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRRF693DX47T8162', 'x-amz-id-2': '2OcZpEkK9IaHCSzG41kW1yhGs+HPqFGDVVfHBERXnBltc/L02GSzdtp+iTLuXFoBe78sppJOFAo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,686 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless/'}
2022-05-12 22:39:32,686 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,687 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRRB9M726BMKP78T', 'x-amz-id-2': '2tZ50gHVgWkDXHarL0BixyPZ4JxS3QitnnFnh+pdsLRCShMVyEsCvNuNSd495pab6789ECIXk2M=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,687 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,687 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,688 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,688 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,688 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,688 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,688 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:32,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,688 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,688 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,688 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,689 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,689 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,689 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,689 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,689 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless/'}
2022-05-12 22:39:32,689 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:32,690 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,689 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless/'}
2022-05-12 22:39:32,690 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,689 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,690 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,690 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,690 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,690 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,690 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:32,690 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,690 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,690 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,690 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,690 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,690 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,690 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,691 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless/'}
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,691 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,691 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,691 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless/
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,692 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,692 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,692 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,692 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
ac2a730ba755665aa6c64c1c9056f1eabd4fad624738888e3324d5a585489c52
2022-05-12 22:39:32,692 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,692 botocore.auth DEBUG    Signature:
9c9eef4e6a1b6152caefa041e3f789ddb5544b397fda4939bf5757f0e23dc6de
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,692 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,692 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:32,693 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,693 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,693 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,693 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,693 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,693 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,693 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,693 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,693 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,693 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:32,693 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,693 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,693 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:32,693 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,693 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,694 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,694 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,694 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,694 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,694 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,694 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:32,694 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
72c29703240e77f56f01904a64bfa84871946987d0e5b17d8c99d6a4ed38b5b8
2022-05-12 22:39:32,694 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,694 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/
2022-05-12 22:39:32,694 botocore.auth DEBUG    Signature:
5cc8adc4eb463b3279d0b04ffd9286c0c3aebc086a255bbdce4c3f92574ae9e4
2022-05-12 22:39:32,694 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,694 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,694 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,694 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:32,694 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,694 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,694 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless/
2022-05-12 22:39:32,694 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
72c29703240e77f56f01904a64bfa84871946987d0e5b17d8c99d6a4ed38b5b8
2022-05-12 22:39:32,695 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,695 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,695 botocore.auth DEBUG    Signature:
5cc8adc4eb463b3279d0b04ffd9286c0c3aebc086a255bbdce4c3f92574ae9e4
2022-05-12 22:39:32,695 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,695 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,695 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
38c4cc96095566b4c5a854a2d54aac30e2b51f39568c83eb84bf3c70586705b7
2022-05-12 22:39:32,695 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,695 botocore.auth DEBUG    Signature:
7f892801176bde12af0050c9f5827edf30e9d461e69f055a09ef1e2bcbdeb008
2022-05-12 22:39:32,695 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,695 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,696 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,696 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,778 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:32,779 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qpnUFt6yf6XD30xOv5ntcCsMxwYgYJdTx5ZXVrNgShQlCnlw74ln5PwyUFHj2rHCVLNQIl8dn6s=', 'x-amz-request-id': 'KRR86FH3P3CEAXTW', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:30 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:32,779 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:32,779 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,780 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:32,780 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hzHRdfbwwWXh93Ms091hnTyzDZ2WnrRQcxGwffv0A5yfW4Yvq1p1iEA7joPdk72Oop3HQtlUhV4=', 'x-amz-request-id': 'KRR46ZX8TYMQ84B5', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:28 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:32,781 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,782 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NcN3xuDDafG0u4QDDdLXA55lXXdJYp2xpaJUh6jgtRxSO+jEDj02qK94oQ3ZYdj6k1T6o712PbA=', 'x-amz-request-id': 'KRR540B2ZNZHHBJX', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:28 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:32,782 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:32,783 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,783 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,783 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,784 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Rn7uu7rtFLb3yLtLerlGqrw5rg/ktyrH30wcsP1n/E15vH1XSKYDI5YqCLyfPo9E5DPnelDDCS4=', 'x-amz-request-id': 'KRR9QPM1STNNQ5DV', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:27 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:32,785 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,785 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,786 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,786 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,786 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,787 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'KRR86FH3P3CEAXTW', 'HostId': 'qpnUFt6yf6XD30xOv5ntcCsMxwYgYJdTx5ZXVrNgShQlCnlw74ln5PwyUFHj2rHCVLNQIl8dn6s=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'qpnUFt6yf6XD30xOv5ntcCsMxwYgYJdTx5ZXVrNgShQlCnlw74ln5PwyUFHj2rHCVLNQIl8dn6s=', 'x-amz-request-id': 'KRR86FH3P3CEAXTW', 'date': 'Thu, 12 May 2022 22:39:33 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:30 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 30, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:32,787 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,788 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,788 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,788 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,789 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,789 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,789 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'KRR46ZX8TYMQ84B5', 'HostId': 'hzHRdfbwwWXh93Ms091hnTyzDZ2WnrRQcxGwffv0A5yfW4Yvq1p1iEA7joPdk72Oop3HQtlUhV4=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'hzHRdfbwwWXh93Ms091hnTyzDZ2WnrRQcxGwffv0A5yfW4Yvq1p1iEA7joPdk72Oop3HQtlUhV4=', 'x-amz-request-id': 'KRR46ZX8TYMQ84B5', 'date': 'Thu, 12 May 2022 22:39:33 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:28 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 28, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:32,791 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,791 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'KRR540B2ZNZHHBJX', 'HostId': 'NcN3xuDDafG0u4QDDdLXA55lXXdJYp2xpaJUh6jgtRxSO+jEDj02qK94oQ3ZYdj6k1T6o712PbA=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'NcN3xuDDafG0u4QDDdLXA55lXXdJYp2xpaJUh6jgtRxSO+jEDj02qK94oQ3ZYdj6k1T6o712PbA=', 'x-amz-request-id': 'KRR540B2ZNZHHBJX', 'date': 'Thu, 12 May 2022 22:39:33 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:28 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 28, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:32,791 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,792 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,792 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl'}
2022-05-12 22:39:32,793 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,793 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'KRR9QPM1STNNQ5DV', 'HostId': 'Rn7uu7rtFLb3yLtLerlGqrw5rg/ktyrH30wcsP1n/E15vH1XSKYDI5YqCLyfPo9E5DPnelDDCS4=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Rn7uu7rtFLb3yLtLerlGqrw5rg/ktyrH30wcsP1n/E15vH1XSKYDI5YqCLyfPo9E5DPnelDDCS4=', 'x-amz-request-id': 'KRR9QPM1STNNQ5DV', 'date': 'Thu, 12 May 2022 22:39:33 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:27 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 27, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:32,794 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,795 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,796 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,797 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,797 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy'}
2022-05-12 22:39:32,797 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,802 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,801 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,801 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,798 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless/EXTENT.npy'}
2022-05-12 22:39:32,802 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,802 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless/DISTANCE.npy'}
2022-05-12 22:39:32,802 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,803 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,803 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,803 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,804 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,804 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,804 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,804 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,804 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,805 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,805 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,805 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,805 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,805 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,805 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:32,805 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,806 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,806 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,806 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,806 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,806 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,806 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,806 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,806 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy
2022-05-12 22:39:32,806 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,807 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,807 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,807 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,807 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,807 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,807 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,807 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,808 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,808 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,808 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy
2022-05-12 22:39:32,808 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,808 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:32,808 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,808 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy
2022-05-12 22:39:32,808 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,808 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:32,808 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy
2022-05-12 22:39:32,809 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,809 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
f92e752fe27fcb737d58c688d2c3dbaf8e3e6da9cb8bb7bce714763e3bbd78ac
2022-05-12 22:39:32,809 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,809 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy
2022-05-12 22:39:32,809 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,809 botocore.auth DEBUG    Signature:
ebb57f503592f33c481f58e7d73e8497de9141b87c9e5baa45ca453db7021b97
2022-05-12 22:39:32,809 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,809 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,809 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
9d45b9d9a81daa5403133ad4f2ed07da2706a7a0ed55d6e38f81a123e37d98eb
2022-05-12 22:39:32,809 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,809 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
5a9fc56ed5d49d8726b0d3fe86710c9ccd01436420ba9bae284a44ec222cd38b
2022-05-12 22:39:32,809 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,809 botocore.auth DEBUG    Signature:
b753e756b0c8a860f87ec349209cbccd85175f0f864f46095963252700031cd1
2022-05-12 22:39:32,809 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,809 botocore.auth DEBUG    Signature:
8916da6ab395578a3ef2083b3d4c1fa0593d26d4a2547910e1a9c2a866ee5e74
2022-05-12 22:39:32,809 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
5c4c4042edd49841165a0ed2e8bf2afd6a44d510b618cabe21d09fc70dee9efe
2022-05-12 22:39:32,809 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,810 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,810 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,810 botocore.auth DEBUG    Signature:
e069794c6f5ff950649856ae3e2bb9ea5997d9b566e81bdf224bc4380b97624d
2022-05-12 22:39:32,810 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,810 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,810 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,810 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,810 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,811 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,811 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,892 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 404 0
2022-05-12 22:39:32,892 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRR9G5T33G6HY82P', 'x-amz-id-2': 'gLYvsEgaXypc7c6rhkAbo7wW6jk/uiUeO2pJi0V6iJaOpF0KZC/K72kkmssE35AyB0OdD0jlreI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,893 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy HTTP/1.1" 404 0
2022-05-12 22:39:32,893 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,893 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRRA4RVFZSA1309Q', 'x-amz-id-2': 'eSXzJkABnyky4zA2+tuqzgwcWFG5Ndfz5G97hzRhqAVRDC/QsDQGY1djqI3f7SgBa9ZnvVe6GBI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,894 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,894 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless/DISTANCE.npy HTTP/1.1" 404 0
2022-05-12 22:39:32,894 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,895 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,896 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,895 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,895 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRRAG8VMV65THGZP', 'x-amz-id-2': 'kZnrpddWFZNS/pq2cIkDfys5Ldq57VGuDIL4Tu6HBNg+rQBKSIqskwkz9yF3mJPcVJVjN6QtCEg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,896 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,896 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,897 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,898 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,899 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,899 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,899 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless/EXTENT.npy HTTP/1.1" 404 0
2022-05-12 22:39:32,900 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl/'}
2022-05-12 22:39:32,900 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,900 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,901 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRR9BVFFGP79212N', 'x-amz-id-2': 'oaVCaDCyr39wdCs6ErK4V/w5SnNSoiPNV2yH5t8GQjubpD+4uB9gpgJVQu9r1EVLF4AehrSFOQs=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,901 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,903 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,903 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,903 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,903 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,904 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy/'}
2022-05-12 22:39:32,904 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,904 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,904 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,904 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,906 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,906 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,906 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/data_timeless/DISTANCE.npy/'}
2022-05-12 22:39:32,906 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:32,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,906 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:32,906 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,907 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,907 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:32,907 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,907 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,907 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,907 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_2/mask_timeless/EXTENT.npy/'}
2022-05-12 22:39:32,907 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:39:32,907 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,907 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,907 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,907 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,908 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy/
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,908 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,908 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy/
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,908 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,909 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,909 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy/
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,909 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:32,909 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,909 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:32,909 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,909 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy/
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,909 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:32,910 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,910 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy/
2022-05-12 22:39:32,910 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,910 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,910 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
63681406acc86e5450fc8b0218490762be157f89fbe51c7a61f59f9969b208e9
2022-05-12 22:39:32,910 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,910 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy/
2022-05-12 22:39:32,910 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:32,910 botocore.auth DEBUG    Signature:
cbd6faa60d6c24a9c8081abc89a3c978bad22dba8b676f9c4035810c349c38c4
2022-05-12 22:39:32,910 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,910 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy/
2022-05-12 22:39:32,910 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:32,910 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,910 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
2b796f7a30e6c5ff08438127c0f34fb402a1b6443327b1686884eeb9d3e6365b
2022-05-12 22:39:32,910 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,910 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:32,910 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,910 botocore.auth DEBUG    Signature:
d92aa889d1cf534d3bd40c6231ef2d3806e1959a02c64b21185a4eb7ff1ac75a
2022-05-12 22:39:32,910 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,911 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy/
2022-05-12 22:39:32,911 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,911 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,911 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
b8825b72af9747f72feb5590f971c6a2116b35edd121e45c9f477d7a93bc7f71
2022-05-12 22:39:32,911 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy/
2022-05-12 22:39:32,911 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,911 botocore.auth DEBUG    Signature:
49bdd422e02c59fe6df0edc0ca6e0f5d28e8a09736d2567e37c524a5cc6881c4
2022-05-12 22:39:32,911 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,912 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,912 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,912 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,912 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,912 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
7b248e05140fcc5ce3507f17bcdd020821b983cd827376c566d01788375a171a
2022-05-12 22:39:32,912 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,912 botocore.auth DEBUG    Signature:
37bcd71fdf5b408362c0ac43ffd1cca535d3896d6b4c0f440ae8365063a9b47e
2022-05-12 22:39:32,913 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:32,913 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,913 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,995 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy/ HTTP/1.1" 404 0
2022-05-12 22:39:32,996 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl/ HTTP/1.1" 404 0
2022-05-12 22:39:32,997 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRRBCCYCHC3M0DGY', 'x-amz-id-2': '91OoPN7pG9cevu05HF58L9YurYR2FRwxJckQyjIKbZOjvSasn+tPH+ze/JUkQUr+FkskKh/2z1I=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,997 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRRF5XTPP9BZP1H0', 'x-amz-id-2': '/gjoIq6W/qaVSdThDyjcVgF+LgCn9OMwtUcdwibONj7EKt8vVqZSeb/CxvX5aoDD/yo+KncA4Tw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,997 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,998 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:32,998 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,998 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/mask_timeless/EXTENT.npy/ HTTP/1.1" 404 0
2022-05-12 22:39:32,998 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:32,999 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,999 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRR1YNWTBDX0S8PD', 'x-amz-id-2': 'hgNcLV+fbGmLAnMbiiALQoB1QzLTxaRyEaAtHw6JyircJGAqU9pzurMC6qxIxcBZBV/IN4vgL5o=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:32,999 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:33,000 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:33,000 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:33,000 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:33,001 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:33,003 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:33,003 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:33,003 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:33,003 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:33,003 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_2/data_timeless/DISTANCE.npy/ HTTP/1.1" 404 0
2022-05-12 22:39:33,004 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:33,005 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:33,005 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'KRR5J2ZJW2ZM6E10', 'x-amz-id-2': 'KnII3lAZuRII4eZA+lVOAXiN/umd6olaSofOZ0xvp8qW7x9EZ00RTEaWdABkdBl5earkDsJ5OJM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:33,006 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:33,005 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:33,005 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:33,006 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:33,006 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:33,006 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:33,006 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:33,006 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:33,007 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:33,007 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:33,008 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:33,008 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:33,008 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:33,009 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:33,009 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:33,011 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,012 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,012 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:33,013 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:39:33,013 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:39:33,014 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:33,014 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:39:33,014 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:39:33,014 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:33,014 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:39:33,014 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:33,015 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:39:33,016 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:33,016 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:39:33,017 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,017 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:39:33,017 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:33,017 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,017 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:39:33,017 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,017 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:33,017 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:39:33,017 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:39:33,017 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:33,018 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:39:33,018 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:33,019 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:33,019 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:39:33,019 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:39:33,019 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:39:33,019 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:39:33,019 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:33,020 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:39:33,020 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:39:33,020 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,021 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,021 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,021 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,021 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,021 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:39:33,021 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:39:33,021 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:33,021 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,021 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:39:33,021 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:39:33,021 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,021 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,022 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:39:33,022 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:39:33,022 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,022 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:33,022 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:39:33,022 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,022 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:33,022 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:33,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,022 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,022 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:33,022 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,022 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:39:33,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:33,022 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,022 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,023 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,023 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:39:33,023 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,023 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,023 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,023 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:39:33,023 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:33,023 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:39:33,023 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,023 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:33,023 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:33,023 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,023 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,023 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,024 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,024 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,024 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,024 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,024 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'B0sS5nt7r9iMdSqG874dtg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:33,024 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:33,024 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,024 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:33,024 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:33,024 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:33,024 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,025 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,025 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,025 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:33,025 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:33,025 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:33,025 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:33,025 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,025 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:33,025 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:39:33,025 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:33,025 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:33,025 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223933Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:33,025 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,025 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223933Z
20220512/us-east-1/s3/aws4_request
6b0c7549b1251cdc70daab72aea282506f9f08d7c8db006528e832855589bf01
2022-05-12 22:39:33,025 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,025 botocore.auth DEBUG    Signature:
66583d046445d935865833218f90c6ef61808e3d6bb0a278e1994ad77f382d93
2022-05-12 22:39:33,025 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:33,025 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,026 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,026 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,026 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:33,026 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:33,026 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,026 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:33,026 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,026 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,026 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:33,026 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:39:33,026 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:33,027 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:33,027 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:33,027 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,027 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:33,027 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,027 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:33,027 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:33,027 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:33,027 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:33,027 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,027 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223933Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:33,027 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:33,027 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223933Z
20220512/us-east-1/s3/aws4_request
fe8ab1508d446e8d783fcfdf90a7ba2fc517ed01fa3278b359c576196964d862
2022-05-12 22:39:33,028 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,028 botocore.auth DEBUG    Signature:
77a72b744e856155882aaa68819d7f899eb671919b34c32bf9dd08d2323ce7c1
2022-05-12 22:39:33,028 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,028 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,028 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:33,028 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,028 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:33,028 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:33,028 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:33,029 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:33,029 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy
2022-05-12 22:39:33,029 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:33,029 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy
2022-05-12 22:39:33,029 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:33,029 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223933Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:33,029 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223933Z
20220512/us-east-1/s3/aws4_request
5653905c4f8304ce998ab6e4027a9664e94b7c1ab69a0413979a59a6fc98cdc4
2022-05-12 22:39:33,029 botocore.auth DEBUG    Signature:
441f50d297983703dd9595f32f6d0e08d676a48324005651d60086cd0ee013ba
2022-05-12 22:39:33,029 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,029 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,029 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:33,030 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:33,030 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:33,032 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,032 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:39:33,032 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:33,032 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,032 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:33,032 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'S/Wz7xyo6r7KThbY4TUDPg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:33,032 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,032 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:33,032 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,032 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,032 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:33,032 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:33,032 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:33,032 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy
2022-05-12 22:39:33,032 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy
2022-05-12 22:39:33,032 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:33,033 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223933Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:33,033 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223933Z
20220512/us-east-1/s3/aws4_request
3260b016a0f0d97543572a5a745bbcfdfa8913124123a5b00f40471dede1afcd
2022-05-12 22:39:33,033 botocore.auth DEBUG    Signature:
cbe774740c55a5e9e642c337a18fcdba7f5c7c828cc723ab2d1670657535fbfb
2022-05-12 22:39:33,033 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,033 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,033 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:33,033 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:33,033 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:33,493 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:33,570 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:39:33,571 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_2/mask_timeless/EXTENT.npy HTTP/1.1" 400 None
2022-05-12 22:39:33,571 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'A5Y8SAHFR0DT3221', 'x-amz-id-2': 'jNWB4TqMP72mGOcvQlfhOMnWbDDZvQ9kfgVM6IkMBj35l58icnwGJhqz+Ki/Kp4HMnXaDcLZT9g=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:33,571 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1A5Y8SAHFR0DT3221jNWB4TqMP72mGOcvQlfhOMnWbDDZvQ9kfgVM6IkMBj35l58icnwGJhqz+Ki/Kp4HMnXaDcLZT9g='
2022-05-12 22:39:33,574 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:33,574 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:33,574 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:33,574 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:33,574 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy
2022-05-12 22:39:33,574 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:33,574 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:39:33,574 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,574 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:33,575 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,575 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,575 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:33,575 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:33,575 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy
2022-05-12 22:39:33,575 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy
2022-05-12 22:39:33,575 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:33,575 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_2/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223933Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:33,575 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223933Z
20220512/eu-central-1/s3/aws4_request
97ae1a9616a444e75dfea2d4dbd7488f90da32bca29ebdb03c39ec1c8862ac94
2022-05-12 22:39:33,575 botocore.auth DEBUG    Signature:
f6d5b6ec8d6197b0a503415620eaa70f601f96ed41f094d55cbf402f699def20
2022-05-12 22:39:33,575 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,575 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,575 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:33,576 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:33,576 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:33,581 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:33,638 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:33,638 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:33,660 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:39:33,660 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_2/data_timeless/DISTANCE.npy HTTP/1.1" 400 None
2022-05-12 22:39:33,661 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'A5Y0RFEDH4TEK1S3', 'x-amz-id-2': 'Rhxjw4cQ0LtiD0AZ4Rv48BeS0+FybkBg0dPNB092+49NNe19xfq2dXbZeWg6H3kln5s+XpiT4XM=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:33,662 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1A5Y0RFEDH4TEK1S3Rhxjw4cQ0LtiD0AZ4Rv48BeS0+FybkBg0dPNB092+49NNe19xfq2dXbZeWg6H3kln5s+XpiT4XM='
2022-05-12 22:39:33,665 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:33,666 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:33,666 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:33,666 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:33,666 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy
2022-05-12 22:39:33,666 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:33,666 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:39:33,666 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,667 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:33,667 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,667 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,667 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:33,667 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:33,667 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy
2022-05-12 22:39:33,667 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy
2022-05-12 22:39:33,668 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:33,668 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_2/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223933Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:33,668 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223933Z
20220512/eu-central-1/s3/aws4_request
44c244592a4f845707910ff3f00bcd75172425a84d7a086d19db371a0bfb32fb
2022-05-12 22:39:33,668 botocore.auth DEBUG    Signature:
d16f113756ac300d34a4e6d4439374a36d9f5906642fb0d422247ce44ad7b93a
2022-05-12 22:39:33,668 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,668 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,668 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:33,669 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:33,669 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:33,717 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:39:33,718 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 400 None
2022-05-12 22:39:33,719 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:39:33,719 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'A5Y0V6H7TE0ST451', 'x-amz-id-2': 'R4ef60uYeckbrWfTCahMOP6fYiotxaCrR64flnDrN+roucvi7kfDK1Ufmn8m3O5jfoiOrxiu1dc=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:33,719 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy HTTP/1.1" 400 None
2022-05-12 22:39:33,720 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1A5Y0V6H7TE0ST451R4ef60uYeckbrWfTCahMOP6fYiotxaCrR64flnDrN+roucvi7kfDK1Ufmn8m3O5jfoiOrxiu1dc='
2022-05-12 22:39:33,721 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'A5YFKHWWMXQADQ3W', 'x-amz-id-2': '8Awo5enlUS9QLIYuhG/b7nlrlgVdKS1+R8OkyPFichJx/EmE74R3VDfKJgD+Vw8Uv5VNv0f8R4Q=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:33,724 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:33,724 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1A5YFKHWWMXQADQ3W8Awo5enlUS9QLIYuhG/b7nlrlgVdKS1+R8OkyPFichJx/EmE74R3VDfKJgD+Vw8Uv5VNv0f8R4Q='
2022-05-12 22:39:33,724 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:33,727 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:33,728 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:33,728 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:33,728 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:33,728 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:33,728 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:33,728 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:33,729 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:33,729 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:33,729 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:39:33,729 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:33,729 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,730 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:39:33,730 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:33,730 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,730 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,730 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:33,731 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,731 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,731 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:33,731 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:33,731 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:33,731 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:33,731 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:33,732 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:33,732 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:33,732 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:33,732 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:33,732 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:33,733 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223933Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:33,733 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:33,733 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223933Z
20220512/eu-central-1/s3/aws4_request
0f37cd5eb2dae350d2fcc931bfd3955061048edaac422a1cd5d7193bf868fb5b
2022-05-12 22:39:33,733 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223933Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:33,733 botocore.auth DEBUG    Signature:
460234efbdf04cf56f63a83fc3f035b650986e9f82e79ac2d485588a3a0e92a6
2022-05-12 22:39:33,733 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223933Z
20220512/eu-central-1/s3/aws4_request
fd2cb4c10ac80057c5c81dbc26836e1f59ac1db74f850c4b5ff8c0a3b9f5d605
2022-05-12 22:39:33,733 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,733 botocore.auth DEBUG    Signature:
d5676b6b8a15c895f6c55aae7a3582aca848f0cd89e1f979b032ccb329315dad
2022-05-12 22:39:33,733 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,733 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,734 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:33,734 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:33,734 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:33,734 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:33,734 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:33,734 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:33,734 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:34,490 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:34,496 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:34,498 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:34,521 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:34,579 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:39:34,583 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:39:34,594 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:39:34,669 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_2/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 200 0
2022-05-12 22:39:34,669 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'DfodVcSkI9xlJY3iFOe7Gb6S+A6X9Xag23tcE1Z9kne4FnPNwNnKi5ovyWyUm8D3KTXBGPQcECQ=', 'x-amz-request-id': 'YFKFQMG16WPW0WHG', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'ETag': '"074b12e67b7bafd88c752a86f3be1db6"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:34,670 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:34,670 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:34,670 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:34,670 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:34,671 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:34,671 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:39:34,671 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:39,413 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_2/mask_timeless/BOUNDARY.npy HTTP/1.1" 200 0
2022-05-12 22:39:39,413 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'dLzIY63NpxgWkI8tQflZ0uEBIh2TqqVdZYBhnb2UIgPs9q938tqC7z6AmIiiJrPOdIIFGSIOoic=', 'x-amz-request-id': 'YFKFB70M0FCWFGWC', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:39,413 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:39,414 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:39,414 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:39,414 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:39,414 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:39,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,522 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_2/mask_timeless/EXTENT.npy HTTP/1.1" 200 0
2022-05-12 22:39:40,523 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'oNesATR9mmGoj/ZSJ1O7khJPrSE+0y+sHFo9iANQFTudmpBEMijBKXdkCcR5VP8stCPNJF/30hw=', 'x-amz-request-id': 'YFKENZKQWEJ960E3', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:40,523 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:40,523 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:40,523 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:40,524 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:40,524 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:40,525 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:54,850 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_2/data_timeless/DISTANCE.npy HTTP/1.1" 200 0
2022-05-12 22:39:54,851 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'WEdtGFwDAphj/D5fvuT7cfA6/1ljX22faf5JLNbsOgVleGivQGbqH+lfv/BGS02Musyuo39YBFM=', 'x-amz-request-id': 'YFK3NB587WBJ7TRA', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'ETag': '"4bf5b3ef1ca8eabeca4e16d8e135033e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:54,851 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:54,851 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:54,852 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:54,852 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:54,852 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:54,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:54,863 eolearn.core.eoworkflow DEBUG    Removing intermediate result for SaveTask
2022-05-12 22:39:54,864 eolearn.core.eoworkflow DEBUG    Workflow finished with WorkflowResults(
  Dependency(SaveTask):
    EOPatch(
      data: {
        BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
        CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
      }
      mask: {
        CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
        IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
      }
      scalar: {}
      label: {}
      vector: {}
      data_timeless: {
        DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
      }
      mask_timeless: {
        BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
        EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
      }
      scalar_timeless: {}
      label_timeless: {}
      vector_timeless: {
        GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
      }
      meta_info: {}
      bbox: BBox(((229500.0, 1369500.0), (240500.0, 1380500.0)), crs=CRS('32630'))
      timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
    )
)
2022-05-12 22:39:54,864 root         DEBUG    EOWorkflow execution finished

Execution 2

Statistics
2022-05-12 22:21:52,329 eolearn.core.eoworkflow DEBUG    Computing LoadTask(*[], **{'eopatch_folder': '30PTU_2_2'})
2022-05-12 22:21:52,330 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:52,332 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,332 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:52,332 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,334 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:52,347 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:52,350 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,351 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,351 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,351 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,351 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,351 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,351 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:52,352 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,352 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,352 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_2/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:52,352 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:52,352 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,352 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,352 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:52,353 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:52,353 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:52,353 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,353 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,353 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:52,353 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_2%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222152Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:52,353 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222152Z
20220512/us-east-1/s3/aws4_request
3b3e94bc3beef10aec795f87dc85b043faef86a3f0f4c5e3ea65d320df30f1dd
2022-05-12 22:21:52,353 botocore.auth DEBUG    Signature:
89aaaae759a1e47dd3cf91b9cf1de2561c4941a19a12c24ae409cde97f93a12c
2022-05-12 22:21:52,354 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:52,354 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:52,354 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:52,355 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:53,696 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:21:53,696 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'W6EMZH3ARGWGHB3S', 'x-amz-id-2': 'SVjVvkOSx0nCfq7kD9LBMa2znY0F/ZaPvD8hR07XKnuuzbAkiKsO1PS2XZDCbQzGG15DwnGLKHs=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:21:53 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:53,696 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1W6EMZH3ARGWGHB3SSVjVvkOSx0nCfq7kD9LBMa2znY0F/ZaPvD8hR07XKnuuzbAkiKsO1PS2XZDCbQzGG15DwnGLKHs='
2022-05-12 22:21:53,699 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:53,699 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:53,699 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:53,699 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:53,700 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,700 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:53,706 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:53,706 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,706 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,706 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:53,706 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:53,707 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,707 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,707 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:53,707 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_2%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222153Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:53,707 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222153Z
20220512/eu-central-1/s3/aws4_request
410541be6588ceaea7777e5455d4c1afa9fd19b7049afa064e1093b72b4ef8ee
2022-05-12 22:21:53,707 botocore.auth DEBUG    Signature:
c4957088688ef64655d4c2da98a7466d4ef20eca502286ab98c83dde7e45ebdf
2022-05-12 22:21:53,707 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:53,707 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:53,708 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:53,708 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:54,656 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,657 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'FDzRZxg+dd5RUJoqBmxX1jEejcYL73xRMh3L1PupjUISHzdwo2kzc/UbovXOH/mNKKfgTF/gO04=', 'x-amz-request-id': 'XNTK5FPNKD43DND2', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,657 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_2/1000/urlfalseeopatches/30PTU_2_2/2022-05-12T11:03:24.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/bbox.pkl2022-05-12T11:03:44.000Z"fd0dd636bafca22ab0550406db7b3c8d"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/timestamp.pkl2022-05-12T11:03:44.000Z"bddd5da052edd05b16c1bacc1598871b"1858e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/data/eopatches/30PTU_2_2/mask/'
2022-05-12 22:21:54,658 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,658 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,658 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,658 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:54,658 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,658 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,658 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,658 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,658 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,658 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,658 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,659 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,659 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_2/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,659 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,659 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,659 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,659 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_2%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,659 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
10da4bb9c3d975e4ad3a0414035f91ddf80b15ece9ed539e3b94c6627aba8f1d
2022-05-12 22:21:54,659 botocore.auth DEBUG    Signature:
dcd40465ea4137b303654a636926dbdcfa0fd65c1f4ba5c24a5f31e747a6b670
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,659 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,659 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,744 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,745 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'rxYkhbZZBnsfPJty4jERbPIH0vqkc4dz+PTC/qt015uQzPeDD8/zRA1+Pghv8r55dXIpdELnqS4=', 'x-amz-request-id': 'XNTZ6WBC9X256406', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,745 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_2/data/1000/urlfalseeopatches/30PTU_2_2/data/2022-05-12T11:03:31.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/data/BANDS.npy2022-05-12T11:03:46.000Z"668364126ec132a7d0657c0e0d2fb724-26"212960128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/data/CLP.npy2022-05-12T11:03:44.000Z"64200b33409e5329ca46b5baf146334e-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,747 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_2/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,747 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,747 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,747 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_2%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,747 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
e5c43be3b4855e1f293da0f57a6dff8f4fcd4c0cc6544290f9667f6aa060960e
2022-05-12 22:21:54,747 botocore.auth DEBUG    Signature:
6e6fdc0aee89282ec257e15475023e0218b2c63a762a0ad9e0b2fc6f2b287f35
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,748 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,748 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,834 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,834 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'sNa6bAECYzjcBDAu5Njm6rQdBzwGItSuJm6gzzpgx5C0debev2Mw+ihO+Azw3BEYEbCq0kBtn0E=', 'x-amz-request-id': 'XNTM01PMYD18BV7A', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,834 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_2/mask/1000/urlfalseeopatches/30PTU_2_2/mask/2022-05-12T11:03:36.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/mask/CLM.npy2022-05-12T11:03:44.000Z"aacc9a9fd97d2a18e07a6a533e6436f0-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/mask/IS_DATA.npy2022-05-12T11:03:44.000Z"30cacf5f1ee7603a53f0d2a527451479-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,835 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,835 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,835 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,835 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,837 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,837 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,838 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,840 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,840 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,840 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,842 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,842 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,843 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,845 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,847 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,847 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,847 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,847 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,854 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,849 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,851 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,856 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,857 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,847 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,862 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,860 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,860 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,865 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,865 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,864 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,866 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,865 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,860 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,865 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,862 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,859 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,871 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,873 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,873 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,877 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,874 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,886 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,890 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:54,890 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:54,891 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,891 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data/CLP.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,891 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
6a9df6573caed378a0778e6af879eb91ed42a4b7396c4931ff88a679c9d26ce8
2022-05-12 22:21:54,891 botocore.auth DEBUG    Signature:
02b2a803b4e16e8c08a6d64e9a66f55e115eb175943924ad6b7d0df022ffbb66
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,891 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,892 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/bbox.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,895 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,895 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/bbox.pkl
2022-05-12 22:21:54,895 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/bbox.pkl
2022-05-12 22:21:54,895 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,895 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/bbox.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,895 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
b832df809d616757f4a9565d200321aa2cfaa705c542c1e2b2d8babfcad26e7e
2022-05-12 22:21:54,895 botocore.auth DEBUG    Signature:
3fdef6a88a17c4079a0283e910c7359ead01c6a0a10a6c8fbc89be4c0bbad46d
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,896 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,896 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,886 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/timestamp.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,898 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,898 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/timestamp.pkl
2022-05-12 22:21:54,898 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/timestamp.pkl
2022-05-12 22:21:54,898 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,898 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/timestamp.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,899 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
b550ba481d1b27b76188acbe3154e8ba98dff7f5ec83384eaddf86641763b6a7
2022-05-12 22:21:54,899 botocore.auth DEBUG    Signature:
e522ac9362994f9e0c5b305610194bef68e5a75501fff73bcf4152421f0b6436
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,899 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,899 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,899 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,900 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,900 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,900 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,900 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,900 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,900 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,900 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,901 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,902 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,902 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:54,902 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:54,903 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,903 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,903 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask/IS_DATA.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,903 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,903 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
cd576b078cb298d5103d7d183da6d24d18227cff2338e1151543e4fb5d9510a1
2022-05-12 22:21:54,903 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,903 botocore.auth DEBUG    Signature:
4098c2c7674dd615fa3b911290c490b22e7be6509f3e1a29eac388c74ae818c6
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,904 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,905 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,905 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:54,905 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:54,905 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,905 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,905 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
20de42ab10b1bf9e930a3e9de18896c6f17f1e4a098bf917904cb2a73a6fe66a
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,905 botocore.auth DEBUG    Signature:
9cbc49d081e4d3bc28ebf6bcab42f424afa8509a75b6bc7bfe31d8527bbf09a4
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,906 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,906 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,906 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,907 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,907 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,907 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,909 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,910 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,910 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,912 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:54,912 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:54,912 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,913 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask/CLM.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,913 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
8c137479fef7168058854f77b503a791c0ea5548109fccf62525b5fc0f98a155
2022-05-12 22:21:54,913 botocore.auth DEBUG    Signature:
8b2d050f7a6f0c5eed9bcdc7ec720c6e8e513ae752ee8b3a6da7f07556dcab10
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,913 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,914 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,914 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:55,627 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask/CLM.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,628 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K9DMSQYPPM7HQV', 'x-amz-id-2': 'Dm7tz6Q1u58ltnOTYQPzzQFim0HiWGPMtpNp++iizYvi8pxGJhWYVlCdjlgGGlSl6UwX7lA+Kg8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,628 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,630 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,631 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,631 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,632 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,632 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,632 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,632 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,641 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,641 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/bbox.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,643 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K97KX0KXWAFEAP', 'x-amz-id-2': '6Wmy8UGW3DSOsYwwDqiFpTc9h+RCPXbgqSIHGx4zHPlSmuD46MG/a/JE2tu6c3dzhfcneeMJ/7k=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,643 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,642 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data/CLP.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,642 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask/IS_DATA.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,645 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/timestamp.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,651 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,642 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,651 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K8VNB9Z55SEFV4', 'x-amz-id-2': 'oQeFY3nJsDU3Lca2XZXeP1m99RTP6L50POWUTg30kCX3RBwwKDvPUhjIflF6W49KLXHRPEBY0Es=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,654 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,652 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KAEK9FZ4827BZ1', 'x-amz-id-2': 'QEBUzHxVY2c8H9RXQQU+btwcFaH/rR3/eeXVnMeVKLSAvw7k3507FkEBg981ZmQaDO7r6UT+08U=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,657 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,642 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,652 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KCM00EYPQQARTH', 'x-amz-id-2': 'UVVRWOmM+RyxT6WwS87r5ot+k0mTIC4GLVIF6yMGvYOCXTVrtPkgkrBhCwBFSl4Y8WcGsP9OuJ0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,660 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,654 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,662 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,662 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,662 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,662 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,667 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,660 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K7QSSWCWCQ1TZT', 'x-amz-id-2': 'evyIQ1N7l2caNppreyAVS1JTxOHEbFToeuVqkhiGeFnJ/2YecHj8cd1tjHZ/qR9in3jLZa5BL5Y=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,667 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,659 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,654 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,667 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,671 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,670 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,670 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,671 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,671 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,663 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,671 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,671 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,671 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,671 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,672 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,673 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,674 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,675 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,676 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,676 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,676 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,676 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,675 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,676 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,676 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,676 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,676 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,676 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,677 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,677 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,677 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,677 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,677 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,677 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,677 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,677 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,677 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,677 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,678 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,678 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,678 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,678 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,678 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,678 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,678 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,679 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,679 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,679 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,679 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,679 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,679 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,679 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,679 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,679 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,679 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,679 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,680 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,680 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,680 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,680 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,680 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,680 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,680 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,680 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,680 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,680 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,680 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,680 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,680 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,681 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,681 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,681 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,681 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,681 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,681 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,681 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,681 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,681 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,681 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,681 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,682 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,682 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,682 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,682 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,682 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,682 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,682 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,682 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,682 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,683 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,683 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,683 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,683 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,683 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,683 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,683 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,683 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,683 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,684 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,684 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,684 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,684 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,684 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:56,631 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,631 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JWSRXNK602QBR2', 'x-amz-id-2': 'IYSgiG4vfYiWJNj1WrbzdQc6YH0lXNZySnoQ9zoWxNczHiJfGtxbjMAlbVDA8yX8TcjMLfdTozs=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,632 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,632 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,632 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,632 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,632 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,632 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,633 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,633 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,633 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,633 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,633 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,633 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,633 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,633 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,633 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,634 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,634 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,634 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,634 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,634 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,634 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,635 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,635 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,636 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,636 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,637 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JVHHV3N9HYD55Y', 'x-amz-id-2': 'fjGfffax5YHS1bDQnSAjAtqlhbOghPDNdR1ppOB8ExdWaphA05bXFrHWwhSE+V7PgUferbObPL0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,637 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,637 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,637 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,638 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,638 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,638 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,638 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,638 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,638 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,639 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,639 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,639 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,639 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,638 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,640 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,640 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JVEV4Z9VP928Q8', 'x-amz-id-2': '1eQDFrra6hw4BVfqAE/09sWpN+ZLz5tm3SfYCUsmqhOxoACusCNi5zDI+6xBEfEcpLaUJ9BkwSU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,640 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JM0HE0W38JQF4S', 'x-amz-id-2': '/esq3MVHMMIDsnxdSwl24bzr9/MM9ZXvVGkF18hMoSX+KnSM+qsLqonWvlr7uv+aPwvVnjM6vwQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,640 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,640 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,640 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,641 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,641 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,641 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,641 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,641 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,641 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,641 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,641 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,641 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,641 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,641 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,641 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,642 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,642 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,642 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,642 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,643 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,643 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,643 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,643 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,643 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,643 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,643 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,643 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,643 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,644 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,644 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,644 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,644 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,649 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,650 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JGSK3CZRYKMFHC', 'x-amz-id-2': '8/vPNcG7iBA4P06+1l29tZufLGPrCMkefGB3pluzh0zTZLAIlIcE9lpe7byQzT7QydX2jC1M5ss=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,650 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,650 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,650 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,650 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,650 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,651 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,651 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,651 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,651 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,651 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,651 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,652 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,652 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,652 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,653 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JMJER19SHHST8T', 'x-amz-id-2': '9YLtrccMLcmGsE1Y0HQvM7iZOq02pa0GUExa325OIP49eq8DlRL0yNYCdfbtO1uh3nNj3fw49WI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,653 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,653 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,653 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,653 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,653 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,653 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,653 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,653 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,653 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,654 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,654 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,654 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,654 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,654 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,654 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,654 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,654 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,654 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,605 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,605 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '5W0dVSdfIHghjxX0/MpuzGJFq5ZLc4hylbqvbT7iOTQMpTXEe8PWzieXVbyDYXaIhP7ebcklZe4=', 'x-amz-request-id': '4P7ZGB5X2EEK6RY9', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,605 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,606 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,606 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,606 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,606 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,606 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,606 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,606 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,606 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,606 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,606 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,606 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,606 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,606 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,606 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,606 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,607 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,607 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,607 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b24e46f932351e1bc73fe3878cf1a51b2c29acb440158f40dfaa9907a7d993ae
2022-05-12 22:21:57,607 botocore.auth DEBUG    Signature:
34edfa0cff41cb9f443cf16962dba45236da17c1bffceb284443ac5ec22edbe9
2022-05-12 22:21:57,607 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,607 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,607 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,607 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,610 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,611 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'fOoSfaixCtw+9hUmc7cBQ3W3sD/m/NkUM1Hv1Pca8USTaYPoePFravB0SOESJQNtQHdnsB0FqdE=', 'x-amz-request-id': '4P7TCYHK45B9W7WC', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,611 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,611 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,611 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,611 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,611 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,611 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,612 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,612 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,612 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,612 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,613 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,613 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
8e82857be27b63b23e15f6a0a1b932bc93dd010aa71c62a81e9ca5f241098c2c
2022-05-12 22:21:57,613 botocore.auth DEBUG    Signature:
e6e9c0823aef01121a27c8d72721eccd79072b538f84c26b24ddb538487de740
2022-05-12 22:21:57,613 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,613 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,613 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,613 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,615 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,616 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '3SMs4DeEOhpeMLlMNXuc82FH4vHRq95E4zzvR5e0116teSOtk0Z+SdjG10syqx1wpJcZYkAa5Es=', 'x-amz-request-id': '4P7GHRD5SYD8WR6R', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,616 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,616 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,616 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,616 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,616 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,616 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,617 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,617 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,617 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,617 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,617 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d910a08ccedb97b5924ca7b5756f03aa21762bce9da8ba7044601fb0702e195a
2022-05-12 22:21:57,617 botocore.auth DEBUG    Signature:
383794f4a4d04e38a4caecb143e87b7f89bf62f5687eec6e10ea8076d7c0dcb6
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,617 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,617 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,618 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,618 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'THp++l3GPvHthH8hi7h8zqYc3IHqqtBgt00gvxC67IbpXugFXEMXJqcxU8OdOuvPHX7Q3oG24QU=', 'x-amz-request-id': '4P7MSAXH0PRCDP8A', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,618 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,618 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,618 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,619 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,619 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/bbox.pkl
2022-05-12 22:21:57,619 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,619 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/bbox.pkl
2022-05-12 22:21:57,619 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/bbox.pkl
2022-05-12 22:21:57,619 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,619 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,619 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
8df6c9c42efa2bcc889b1c345cafcb391952284b494deebcb6896df2701e6427
2022-05-12 22:21:57,619 botocore.auth DEBUG    Signature:
bc6d16aa207deefdfa1f5dea317baf4d698fa364d924cbfe5d90bb07f98098cf
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,619 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,620 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,620 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,621 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'quiYhhuZtXqZeCRGFXCB0DPHPA21YEoLFC+bBmsJpqaxN2S3lCNQ278fBwVvKSDhwtWI7sVsVx4=', 'x-amz-request-id': '4P7XHF5F8GYGBNGP', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,621 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,621 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,621 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,621 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,621 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,621 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,622 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,622 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,622 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,622 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,622 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
6666116d85be96ee6be8a626465a508a8ca2be1ebbe1315d4ef99fea63b0c8c7
2022-05-12 22:21:57,622 botocore.auth DEBUG    Signature:
5d483022233e8e268e91349f3dd1da133143bc9110fd4cfa14e56138d92fd070
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,622 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,623 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,624 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,624 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7mTw3OtJbd5avfHCmFjFnbUUtQ4oSI7Z6hufykLaHKKrlTU4Va2N4X8cniLxgMsKS5w9Wrm39Mc=', 'x-amz-request-id': '4P7ZB1Z1VWZHCR7X', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,624 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,624 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,624 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,625 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,625 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/timestamp.pkl
2022-05-12 22:21:57,625 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,625 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/timestamp.pkl
2022-05-12 22:21:57,625 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/timestamp.pkl
2022-05-12 22:21:57,626 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,626 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,626 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
0c3279aa8ae85eb91a21c2e2afcd47d11c9a113b3867f074f143f72912dc3603
2022-05-12 22:21:57,626 botocore.auth DEBUG    Signature:
ca410b99a233f808aedd7f258a57587fe65db2263041b7f7a658ce813a1b1fb4
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,626 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,626 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,694 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask/CLM.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,694 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'pXNkuO8D5eMGnUDSeqvZnxdO9JXoNbo2TVUmGAd0QBm5JKQNcF+LfwLWC1zDrfwrYQfpsd5mMBg=', 'x-amz-request-id': '4P7K7AWGSRA0226R', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"aacc9a9fd97d2a18e07a6a533e6436f0-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,694 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,695 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,695 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,695 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,695 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,696 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,696 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,697 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,698 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,698 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,699 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,699 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,700 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jFwXkYigwJc2qCyzYtZeUMGAiryX4H2u1uFCRvFgS8JqX6H8fUY2+IOv28rRhU/UpxZgOvkCtwI=', 'x-amz-request-id': '4P7JDC850B0KV0G1', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '212960128'}
2022-05-12 22:21:57,700 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,699 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,700 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,700 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,711 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,701 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,712 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,712 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,701 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,712 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,711 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data/CLP.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,713 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qXznOJy2hEwzyICjNuJHYoMU7F4lyYIK4u248z3XxsY2uGl3nhI1Kegk3PQ89Q4920X9UJ79orU=', 'x-amz-request-id': '4P7TMPT689J5A1P9', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"64200b33409e5329ca46b5baf146334e-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,713 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,714 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,714 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,714 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,702 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,715 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,711 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask/IS_DATA.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,711 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/bbox.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,716 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'C+9yLdtBOhEUXtbc3Qp/xlE5tMNXRYnIB19I0ulHD8oSlYMn8RwtiNbqixEo/MfZt/mXIuJnxIc=', 'x-amz-request-id': '4P7XB034V3P6C4GE', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"fd0dd636bafca22ab0550406db7b3c8d"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,716 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,716 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,716 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,717 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/bbox.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,717 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,718 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,718 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,719 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,719 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,719 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
82f9f1f7f9c01195b2e20814bae9ce092628ac9c56457ac8f91e5a24963e0e4b
2022-05-12 22:21:57,719 botocore.auth DEBUG    Signature:
0ca49ff0686e45da85c4542dcb1365e937f21d8405e7cbc9ea4fe4baaa78b7be
2022-05-12 22:21:57,719 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,719 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,719 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,720 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,712 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,720 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,721 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,715 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'o4wfD8TXUgJovu9M3II2WI3mJnMPfIx/CPXfD1zNMVOsqEm9AEPwxMJup8kHTqrFz8Lx4EaWQ90=', 'x-amz-request-id': '4P7K3Q3VFGAPJBAT', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,712 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/timestamp.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,721 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/bbox.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,720 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,721 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,721 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,724 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,720 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,724 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,724 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=25>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,725 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,725 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,723 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/bbox.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,723 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,725 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,722 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'kCjn+lwOOru+YaRBzgWDhVHbALHNe7t7bKY+e+CQkZGFYphIGLzQC92aene+8N0gPDfegGdUtsA=', 'x-amz-request-id': '4P7VKYB3T3MS492Y', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"bddd5da052edd05b16c1bacc1598871b"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1858'}
2022-05-12 22:21:57,722 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,727 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,725 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,727 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,727 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,729 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,729 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,726 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,731 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,731 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,731 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,732 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,732 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,731 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,732 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=25>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,732 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,727 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,733 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,733 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,734 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
585445dd1949e1415da480fcbcacb5f25be92e9405ee9dfbdb0302c372fd91cd
2022-05-12 22:21:57,726 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,733 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,730 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/timestamp.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,735 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,735 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,733 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,737 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,733 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,738 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.auth DEBUG    Signature:
69c6d7f9f34e383832ab9e014dce3ed4a20ef42be1a93d65f2e2ccb6ccc0d132
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,737 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/timestamp.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,740 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/timestamp.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,725 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/bbox.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/bbox.pkl', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,734 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,743 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,740 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/timestamp.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/timestamp.pkl', 'fileobj': <_io.BufferedRandom name=29>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,743 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=27>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,739 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,747 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,737 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,733 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,739 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,749 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,743 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,747 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,745 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) about to wait for the following futures []
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,752 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,742 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,753 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,753 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=25>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,752 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) done waiting for dependent futures
2022-05-12 22:21:57,754 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=25165824-33554431'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,754 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,755 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,750 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,758 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,755 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,758 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
db84711fdd6e5bf1a1ac9aa216119be952e8c11f59f93ba00a7565d31f142c9b
2022-05-12 22:21:57,758 botocore.auth DEBUG    Signature:
9709741eb0020c9771886641551aae065a3bed87d08246b006578d3d48b4e65c
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/bbox.pkl
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,752 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,762 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,758 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=25>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,763 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,763 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,762 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,752 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,766 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,766 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/timestamp.pkl
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,766 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,766 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,767 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,767 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,767 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
6355db4095142078a3ba9acc41699dec76dc9245d4d437a507fd8bfe7d306542
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,761 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) about to wait for the following futures []
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/bbox.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,770 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,770 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,770 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,770 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
abe07cd03a0ddfd5d4e7ab2c47014546c9166efb79fc44db0979813467453068
2022-05-12 22:21:57,770 botocore.auth DEBUG    Signature:
dfa50fa4c89770626996b53f91d3c098e72bb35f2eee089af4340ca5b8671b2a
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,771 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,746 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,772 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,772 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,772 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,772 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
782e4708916ed7fc5c2a010f5639769526acb18ddfb01ed1d369837a4c4df790
2022-05-12 22:21:57,772 botocore.auth DEBUG    Signature:
fd5a2fd11a5ff68a1f15140275364265e4da384ef9f6ccf703eb2dabceb0e027
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,765 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,765 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,762 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,766 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=27>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,765 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,767 botocore.auth DEBUG    Signature:
b22a9cf5d622b4a22d90572c939809c9da721ee1a226309bdc8cecc9ea582d48
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,764 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,777 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:21:57,775 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) about to wait for the following futures []
2022-05-12 22:21:57,778 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) done waiting for dependent futures
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
60906edaf61745aeb31c5c84698406393619d1004c5efb3096dec5d4d40cb424
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,777 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,780 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=27>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-33554431', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,756 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) about to wait for the following futures []
2022-05-12 22:21:57,782 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) done waiting for dependent futures
2022-05-12 22:21:57,782 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=33554432-41943039'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 33554432, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,777 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,777 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,782 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,778 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,784 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/timestamp.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) done waiting for dependent futures
2022-05-12 22:21:57,785 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=41943040-50331647'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 41943040, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,779 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/bbox.pkl
2022-05-12 22:21:57,786 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/bbox.pkl
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,786 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 botocore.auth DEBUG    Signature:
960894b0278b7810c6d3b104901333bc890dd8a18105192cef7551b1c17a9bdd
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
7f00edc9b2957c65cd444e29de4f2621a0a50ea71a978bcf009ada1b885c90f3
2022-05-12 22:21:57,787 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,790 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
f77c22921cc376bc505ea6abaed24f2f64657fe31321adf4a8853050e50458d6
2022-05-12 22:21:57,778 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=50331648-58720255'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 50331648, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,788 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,788 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,791 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,774 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,789 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,789 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,790 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,790 botocore.auth DEBUG    Signature:
b61ef015cfd32c7d1d0ec35aba7f3c640da2a74e2c03d4794c2854756c5ca98e
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,788 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) about to wait for the following futures []
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,791 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,791 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,791 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,793 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,793 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,793 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,793 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b2b91bbd4fdabf4160bb7595b9d562c81066741c9819036cc2de98cace0b13c1
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,794 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,790 botocore.auth DEBUG    Signature:
c080255a3ec5dd5a8c13c373f1d53c3d47b12c619f5befb23f1e573ac8d6e174
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,792 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=27>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) about to wait for the following futures []
2022-05-12 22:21:57,793 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,793 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,791 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,795 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,796 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,792 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=33554432-41943039', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,795 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) done waiting for dependent futures
2022-05-12 22:21:57,795 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-33554431
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,797 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
17b0ad2e74dc57f3d117b3d22b135688306068c8ddf0dbef36cd3fb02134b88f
2022-05-12 22:21:57,794 botocore.auth DEBUG    Signature:
61919419c47bb7875885d580c8def439d79b1e9cf8f6895df84b3e3cd3296d7c
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,797 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,798 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
122e68727f79c58e3f61d7765e37b161e1c27fd9f59980b4dc017d2a24f7fe44
2022-05-12 22:21:57,798 botocore.auth DEBUG    Signature:
0564bea32ce25717d3a903a0a7cee2f4dbf00a728c8f7cca303170b7ac7045de
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,798 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/CLP.npy
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=67108864-75497471'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 67108864, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,797 botocore.auth DEBUG    Signature:
679728533908cef5bfc1842b4e132f5cdee3f8cf05026d617f379d54e7b82639
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,798 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,798 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,796 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,800 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,799 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,799 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,792 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) done waiting for dependent futures
2022-05-12 22:21:57,800 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,801 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=41943040-50331647', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,799 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,801 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,801 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,804 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,803 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,803 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
2af16f095822d55622f4f932bedaff9cec72481fc078c7aec35ec62d836322b7
2022-05-12 22:21:57,805 botocore.auth DEBUG    Signature:
fe9a4979ccf1fe6a9f5d68e2b2e63947c732a5346f8a369711581c85c616052f
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=33554432-41943039
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=58720256-67108863'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 58720256, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,803 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,803 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) about to wait for the following futures []
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,803 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,806 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,805 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,806 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
f9ec6422a048f7c417965b37019336b9f4d16e7ec814971869d5daf38cb1d5ba
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) done waiting for dependent futures
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
03436e638932bf48923ae10ac7760670b79f9410aabdc21b5e9b1d180f585e2a
2022-05-12 22:21:57,807 botocore.auth DEBUG    Signature:
03ef25b0e841eb1cbe7c5e0323a5ca246845ec09f391fd97e9f5ae4b34f01ebb
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,804 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,807 botocore.auth DEBUG    Signature:
19b324e3b26928550ee60efe0679e9dabb0779b9e144875ec1fe68abf8478802
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=75497472-83886079'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 75497472, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,808 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=50331648-58720255', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,809 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,809 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/timestamp.pkl
2022-05-12 22:21:57,808 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,809 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,809 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,809 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,811 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,810 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/timestamp.pkl
2022-05-12 22:21:57,811 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,811 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,810 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
369c66593fabf8997c879649e2989181d8be3b2595e76e2f0c3f8f3743371727
2022-05-12 22:21:57,811 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,812 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=67108864-75497471', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,810 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,811 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,811 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
84cd6366b1d35fdf3db721cd7209ca617d8bb5335dc7530977b31d4401620f98
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,812 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,813 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,812 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,813 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,814 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,811 botocore.auth DEBUG    Signature:
91416eec361454ec5991a0828d5c2fcfb225efb08e10ba22cfaa1f39686104fc
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,810 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,814 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,813 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,812 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,814 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,813 botocore.auth DEBUG    Signature:
b06a5bab20f67e83a7657bb8372478019bc923fdfc32d0f5efc8d5392ebb6bd8
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,815 urllib3.connectionpool DEBUG    Starting new HTTPS connection (5): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,815 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,815 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=41943040-50331647
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,815 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,816 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,816 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
43c7004ceebd79f039b984cf51ada1dac31f5934c16b5ce8fe510d3816ffdb8e
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,816 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
e4b93adec2c4111dc9d030da1c77515a873f94c648fc62776708ef0ea7821fcc
2022-05-12 22:21:57,817 botocore.auth DEBUG    Signature:
6d3e4e655a2e8e42e76a02b084554950c0c3925d023763d73aac297447067cfd
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:21:57,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,817 botocore.auth DEBUG    Signature:
19bb48d97b5f99fc3a2cb8a9a4fc3b392d36b4ade8ab7afba92eff6599eab335
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,817 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,818 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,819 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,818 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,818 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,820 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,819 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,819 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=58720256-67108863', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,821 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,819 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,817 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,821 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,819 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,821 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
1cbf3586450b1fa36177f56578ab6c2c14359d5e55cc99486bec9a1e81c2a3f5
2022-05-12 22:21:57,821 botocore.auth DEBUG    Signature:
0a225b9e345f23a330391b5a03e88eb7e9cf5d8284451eeb7207123e7092bf7f
2022-05-12 22:21:57,821 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,821 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=50331648-58720255
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,821 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,820 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,821 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,821 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,822 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,822 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
339158a8a0ff7e82d03d48b1f288c2894bfa3f6249feb9c541e0652be79f3fef
2022-05-12 22:21:57,822 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=67108864-75497471
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,822 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,822 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,822 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,822 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,822 botocore.auth DEBUG    Signature:
787bada7ac4fdd188c54c6337af8d50045a3bb0be659b21e708f5515aa2320b0
2022-05-12 22:21:57,822 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
ad9ee9fd2b5f6e4ce8b63644893809a77e205c3bfe7e1babcccc2d67d7ada890
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,822 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,823 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,822 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,823 botocore.auth DEBUG    Signature:
342d8f1353b85bc03a0076eee6be5db1e019f19630c2552bc47d329bd4072574
2022-05-12 22:21:57,824 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,823 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,823 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,823 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=75497472-83886079', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,824 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,824 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,824 urllib3.connectionpool DEBUG    Starting new HTTPS connection (6): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,824 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,824 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,824 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,824 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,824 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,824 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,825 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,825 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,825 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,825 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,826 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,826 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,826 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,826 urllib3.connectionpool DEBUG    Starting new HTTPS connection (7): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,826 urllib3.connectionpool DEBUG    Starting new HTTPS connection (8): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,826 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,826 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,826 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,827 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=58720256-67108863
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,827 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,827 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,827 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
8a553f6c30cea63b0d2bad473cd6e6a0a669117e66f9707be6427a091bb4ab8a
2022-05-12 22:21:57,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,827 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,827 botocore.auth DEBUG    Signature:
eb9af7ea8062cf450018fcbb12df516c1449f17c050f9477011070b192e275b5
2022-05-12 22:21:57,827 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,827 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,827 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,827 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:21:57,827 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,828 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,828 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,828 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,828 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=75497472-83886079
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,828 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,828 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,828 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
5de0e4474af0cc3ada03bdc606547772efdc9d9ddc872da1d74d1190b732d92a
2022-05-12 22:21:57,828 urllib3.connectionpool DEBUG    Starting new HTTPS connection (9): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,828 botocore.auth DEBUG    Signature:
b6731d0a006ca7b81108d5c1a83ee4d9fa835f573591028a8697e0a276635687
2022-05-12 22:21:57,829 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,829 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,829 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,829 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,829 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,829 urllib3.connectionpool DEBUG    Starting new HTTPS connection (10): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,901 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/bbox.pkl HTTP/1.1" 200 184
2022-05-12 22:21:57,902 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'wA+1J4eWLl3lUOkac9xC+p1eKzldeHgGL3PYLj6ZFeNsPqu2vUpcpBRdHZ1Fa+vcIxakEj6rJis=', 'x-amz-request-id': '4P7MJ207WZKD7DPV', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"fd0dd636bafca22ab0550406db7b3c8d"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,902 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,902 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,902 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,902 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 0}
2022-05-12 22:21:57,903 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,903 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,903 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,928 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/timestamp.pkl HTTP/1.1" 200 1858
2022-05-12 22:21:57,928 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'M724YPtv/NwAUf+fpiXuGDlKTK9FDRAkIgxrFuHrCLwqGWmtcAfgXR4Ze64VN96LRQvA3QRDE2I=', 'x-amz-request-id': '4P7GBAS5KZQE214B', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"bddd5da052edd05b16c1bacc1598871b"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1858'}
2022-05-12 22:21:57,928 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,929 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,929 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,929 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 0}
2022-05-12 22:21:57,929 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,929 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,929 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,930 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,972 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,972 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UB/7netSszPQjVCVkhJx1YLcXdDxupqv4Dk8sfJi3rMbiJ2xneeMKazxogR8etbGvuxRDm/1oW4=', 'x-amz-request-id': '4P7WG9XH4BAVQNCM', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"aacc9a9fd97d2a18e07a6a533e6436f0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,972 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,973 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,973 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,973 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,974 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,974 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'xNoV/vTdO8lzstRpnPocqBbRmYLb77tIWeJfZVqC9x+/a1yY5PvQasnzRVfbZDOo1RUpO7REWB8=', 'x-amz-request-id': '4P7GDCTF5JS3WJSG', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,974 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,975 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,975 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,975 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:58,000 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:58,000 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Zx14fIzoskBuLRA7n8wWaKMQaU2gheby/vARwo+yMiEEEcwkcWNqPJxelSTkNRidnCg7+z5Vzhk=', 'x-amz-request-id': '4P7ZWZ2YFY0ZT3RH', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:58,000 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:58,001 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:58,001 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:58,001 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:58,037 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:58,037 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'uQ6hAPXaUftQuAwMmVJvdTTL38rKfO6Y+JNi/uwipvRkh5fXGhY6HOivUt+/oP1Ody2c5oQ7NQw=', 'x-amz-request-id': '4P7Z521NXRXKYJXB', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"64200b33409e5329ca46b5baf146334e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:58,037 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:58,038 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:58,038 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:58,038 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:59,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:21:59,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:59,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:59,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:59,102 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 0}
2022-05-12 22:21:59,102 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:59,951 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:21:59,951 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:59,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:21:59,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:21:59,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 8388608}
2022-05-12 22:21:59,952 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:01,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:01,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:01,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:01,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:01,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 16777216}
2022-05-12 22:22:01,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:04,239 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:04,239 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:04,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:04,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:04,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 0}
2022-05-12 22:22:04,240 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:05,013 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:05,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:05,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:05,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:05,014 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 8650752}
2022-05-12 22:22:05,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:05,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:05,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:05,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:05,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:05,572 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 262144}
2022-05-12 22:22:05,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,851 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:07,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:07,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:07,852 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 262144}
2022-05-12 22:22:07,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,757 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,757 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'VgFipX+xAvg+LU/cXUZvH6D+BZIV6dMhm9Xq2/CPWrWYso6E+v9pYQPNEDAJ3e3HzY0j3Pt2ebo=', 'x-amz-request-id': '8ZJNH7SHV6FR5CBE', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"64200b33409e5329ca46b5baf146334e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,758 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,758 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,758 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,759 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,800 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,801 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '0RFGQC6ooWfJjmoskfQqDoLiHU9Nra6NQAdfQBghHyWaBCc2YSbFlelHQ8lagR/l0QyVij9splE=', 'x-amz-request-id': '8ZJQHEDDDJKW97QM', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 50331648-58720255/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,801 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,802 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,802 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,802 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,890 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/CLP.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:08,891 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'utmVQD9M2ijiXjdR8n+glqFXX8R1br7muGZAzNlVuZ+Jobg1fIkyaxb3WcHLqWE5G1zfqq1x59s=', 'x-amz-request-id': '8ZJPCTR7JEXHWZGK', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"64200b33409e5329ca46b5baf146334e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:08,891 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,891 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,891 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,891 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,916 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,917 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hHXGANM1a1LMgrykFwz/qS47yB7i5tByAYhSgLVmJIT86lxRzlJqWusstSm6JnZOqnaLCZNghv4=', 'x-amz-request-id': '8ZJX69YJSSWZGYDT', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 33554432-41943039/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,917 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,917 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,917 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,917 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:08,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:08,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:08,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:08,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 8912896}
2022-05-12 22:22:08,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,971 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,972 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '/95DQjDRUbZa9pbfKE3D39x6J9DTAOEbhYxvPPXkJjxDmW/nG/HSC7D6+4H6R6QE81pfB7KDYiE=', 'x-amz-request-id': '8ZJP44273BBG7S9B', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 58720256-67108863/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,972 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,973 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,973 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,974 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,008 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,009 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'tDaJV2xwZBUv/y1FlXW3KJxLUuD4x7TAEvzyQbvDLreSE2JyWEtTZyQF+5Lbgn0Kw33LgHG6fOU=', 'x-amz-request-id': '8ZJX3DBFTPWN34VF', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 67108864-75497471/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,009 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,010 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,011 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,011 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,081 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,081 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'GWlUknQevpvvpP/K8ynrQ9/+4SqwIrWTC4ccIv1EY0BgJa+PM62sRvMBrkIQKwJcNPxs7WRNbzI=', 'x-amz-request-id': '8ZJQPNN0G0TRSDHR', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"aacc9a9fd97d2a18e07a6a533e6436f0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,081 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,084 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,084 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,084 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,106 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,106 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NCjz3kD7C/xyTqwFwPnS3a89AMo9/xUGAsty7acb4eXOI+Pfp3/IA5dMBns57tjXqzCZk7g4Eq0=', 'x-amz-request-id': '8ZJMYEZYD784NE7F', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,106 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,106 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,107 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,107 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,186 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/mask/IS_DATA.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:09,187 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'KUUYmixTIkwQ8uW6olsyRBZKz4Bl7ylWtkDLEy26UCn2E6lWjXn32DgqC08g9NoiaqAO4UtsEpE=', 'x-amz-request-id': 'MCAJPT0TF68MMESM', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:09,187 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,187 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,187 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,187 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,410 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,411 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '9JfaP59D87uWTirkMzLk32XLBEc5IvPD69OVRyiqczpI9P3z8v2UUrjHj1yPPlDogL2cEsfPZUM=', 'x-amz-request-id': 'MCAY7KSZT6XBB1V8', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,411 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,411 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,411 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,412 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,645 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/mask/CLM.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:09,645 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'q4t6I98VuRbN1UvFMy8EJc7InZhWcYKfFhFHNMOnmWvl2rdrRwtGrgCcCTe2ic9sSBWpM0QvgdI=', 'x-amz-request-id': 'MCAGEEND9ANSY3SB', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"aacc9a9fd97d2a18e07a6a533e6436f0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:09,645 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,646 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,646 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,647 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,774 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:09,775 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:09,775 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:09,775 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:09,775 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 17039360}
2022-05-12 22:22:09,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:09,792 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,793 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2DQSSrzV2w/IeNMO4SwFtFlxO2o2mW/sT69wC4/UxSjlnvVZyVJTv2gg7rNWe9QULJ3dgJU+0/I=', 'x-amz-request-id': 'MCAGAM8J3NCRFK5S', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"64200b33409e5329ca46b5baf146334e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,793 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,793 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,794 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,794 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,806 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,806 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'y4SE5bqRyxqNMOqi64y2nRprXzmEGTvVvxgUlDJmkbUBrq/n5L+UVuOt1Gnnz7VhynuGdLJnnbA=', 'x-amz-request-id': 'MCAJW7QBQR3CPZQ2', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"aacc9a9fd97d2a18e07a6a533e6436f0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,807 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,808 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,808 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,808 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:10,797 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:10,797 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7xmhbar+4EycQ9Mm0b8I6MNi0IkCEt1xWYkU5Z8pjsZ2vWlYBulJfHfUY2w4dYKGbG6hnEHnO3g=', 'x-amz-request-id': 'YV0YED48E4D87M3Y', 'Date': 'Thu, 12 May 2022 22:22:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 41943040-50331647/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:10,797 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:10,798 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:10,798 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:10,798 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:12,530 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:12,531 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '6316G+cstLLe89DeLV4/VIIhp9I3BdkDXZcffY9/suUMqUaG9eZkfVRKYZdIr07IvWnfEiIGoS0=', 'x-amz-request-id': '8B78RGCM8JAV0CM9', 'Date': 'Thu, 12 May 2022 22:22:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 75497472-83886079/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:12,531 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:12,532 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:12,532 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:12,532 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:12,634 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:12,634 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hSj29+4JOF7OyOqTE+zizgDoXLdTD7V3bj9HukHG5DJZQ9kUhYSUM+omvWtzKbS6RiJg/4qqDsA=', 'x-amz-request-id': '8B783EGRJWWRKA89', 'Date': 'Thu, 12 May 2022 22:22:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:12,634 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:12,635 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:12,635 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:12,635 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:12,696 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:12,696 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'OQjHxQRC7ciNpV6+KZSbdBgcKkXDxHVc0yPA4hnGVmWSzbR058s2yvUdn0Q+2IlqrBxegUKIsiM=', 'x-amz-request-id': '8B71ZSZMF69Y62XK', 'Date': 'Thu, 12 May 2022 22:22:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-33554431/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:12,696 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:12,697 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:12,698 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:12,698 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:16,140 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:16,141 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Yd5XpGumVHaDjas0fIRnhQq47S5PiTY0nhQBjXfdAK6TLgFQHCj99fvBFp5QajmhxhPR29/T0XA=', 'x-amz-request-id': '8SZHXBY4KJ42MFB9', 'Date': 'Thu, 12 May 2022 22:22:16 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:16,141 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:16,142 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:16,142 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:16,142 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:21,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:21,842 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:21,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:21,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:21,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 0}
2022-05-12 22:22:21,843 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:22,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:22,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:22,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:22,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:22,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 8388608}
2022-05-12 22:22:22,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:23,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:23,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:23,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 524288}
2022-05-12 22:22:23,117 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:23,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:23,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:23,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 16777216}
2022-05-12 22:22:23,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:23,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:23,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:23,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 17301504}
2022-05-12 22:22:23,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,072 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:24,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:24,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:24,073 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 16777216}
2022-05-12 22:22:24,073 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50331648}) to executor  for transfer request: 0.
2022-05-12 22:22:24,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) about to wait for the following futures []
2022-05-12 22:22:24,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) done waiting for dependent futures
2022-05-12 22:22:24,331 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50331648}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 50331648}
2022-05-12 22:22:24,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:25,952 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:25,952 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:25,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:25,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:25,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 25165824}
2022-05-12 22:22:25,953 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:26,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:26,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:26,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:26,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:26,693 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 25165824}
2022-05-12 22:22:26,693 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:26,969 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41943040}) to executor  for transfer request: 0.
2022-05-12 22:22:26,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:26,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) about to wait for the following futures []
2022-05-12 22:22:26,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) done waiting for dependent futures
2022-05-12 22:22:26,970 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41943040}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 41943040}
2022-05-12 22:22:26,971 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:29,211 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58720256}) to executor  for transfer request: 0.
2022-05-12 22:22:29,211 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:29,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) about to wait for the following futures []
2022-05-12 22:22:29,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) done waiting for dependent futures
2022-05-12 22:22:29,212 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58720256}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 58720256}
2022-05-12 22:22:29,213 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:29,551 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75497472}) to executor  for transfer request: 0.
2022-05-12 22:22:29,551 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:29,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) about to wait for the following futures []
2022-05-12 22:22:29,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) done waiting for dependent futures
2022-05-12 22:22:29,552 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75497472}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 75497472}
2022-05-12 22:22:29,552 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:31,753 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:22:31,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:31,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:22:31,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:22:31,753 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 9175040}
2022-05-12 22:22:31,754 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:32,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:32,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:32,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:32,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:32,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 25165824}
2022-05-12 22:22:32,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,392 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:34,392 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:34,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:34,393 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 8388608}
2022-05-12 22:22:34,393 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,407 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33554432}) to executor  for transfer request: 0.
2022-05-12 22:22:34,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) about to wait for the following futures []
2022-05-12 22:22:34,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) done waiting for dependent futures
2022-05-12 22:22:34,408 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33554432}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 33554432}
2022-05-12 22:22:34,408 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:34,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:34,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:34,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 25165824}
2022-05-12 22:22:34,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:35,938 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:35,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:35,939 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:35,939 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:35,939 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 786432}
2022-05-12 22:22:35,939 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,065 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67108864}) to executor  for transfer request: 0.
2022-05-12 22:22:36,065 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) about to wait for the following futures []
2022-05-12 22:22:36,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) done waiting for dependent futures
2022-05-12 22:22:36,066 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67108864}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 67108864}
2022-05-12 22:22:36,067 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:36,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:36,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:36,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 8388608}
2022-05-12 22:22:36,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:37,575 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:37,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:37,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:37,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:37,576 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 17039360}
2022-05-12 22:22:37,576 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:37,607 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:37,607 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:37,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:37,608 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:37,608 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 17039360}
2022-05-12 22:22:37,608 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:38,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:38,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:38,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:38,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:38,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 8650752}
2022-05-12 22:22:38,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:40,645 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:40,645 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:40,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:40,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:40,646 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 25427968}
2022-05-12 22:22:40,646 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:41,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50593792}) to executor  for transfer request: 0.
2022-05-12 22:22:41,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:41,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) about to wait for the following futures []
2022-05-12 22:22:41,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) done waiting for dependent futures
2022-05-12 22:22:41,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50593792}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 50593792}
2022-05-12 22:22:41,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:42,151 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:42,151 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:42,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:42,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:42,151 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 262144}
2022-05-12 22:22:42,151 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:42,808 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42205184}) to executor  for transfer request: 0.
2022-05-12 22:22:42,809 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:42,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) about to wait for the following futures []
2022-05-12 22:22:42,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) done waiting for dependent futures
2022-05-12 22:22:42,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42205184}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 42205184}
2022-05-12 22:22:42,810 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:44,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:44,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:44,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:44,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:44,484 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 8650752}
2022-05-12 22:22:44,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:44,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75759616}) to executor  for transfer request: 0.
2022-05-12 22:22:44,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:44,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) about to wait for the following futures []
2022-05-12 22:22:44,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) done waiting for dependent futures
2022-05-12 22:22:44,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75759616}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 75759616}
2022-05-12 22:22:44,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:46,070 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:46,071 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:46,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:46,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:46,071 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 25427968}
2022-05-12 22:22:46,072 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:46,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:22:46,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:46,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:22:46,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:22:46,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 17563648}
2022-05-12 22:22:46,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:46,529 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:46,529 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:46,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:46,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:46,530 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 25427968}
2022-05-12 22:22:46,530 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,190 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67371008}) to executor  for transfer request: 0.
2022-05-12 22:22:47,190 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) about to wait for the following futures []
2022-05-12 22:22:47,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) done waiting for dependent futures
2022-05-12 22:22:47,191 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67371008}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 67371008}
2022-05-12 22:22:47,191 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:48,445 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:48,445 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:48,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:48,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:48,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 8650752}
2022-05-12 22:22:48,446 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:48,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33816576}) to executor  for transfer request: 0.
2022-05-12 22:22:48,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:48,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) about to wait for the following futures []
2022-05-12 22:22:48,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) done waiting for dependent futures
2022-05-12 22:22:48,913 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33816576}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 33816576}
2022-05-12 22:22:48,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:50,236 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:50,237 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:50,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:50,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:50,237 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 8912896}
2022-05-12 22:22:50,237 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:51,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50855936}) to executor  for transfer request: 0.
2022-05-12 22:22:51,792 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:51,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) about to wait for the following futures []
2022-05-12 22:22:51,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) done waiting for dependent futures
2022-05-12 22:22:51,792 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50855936}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 50855936}
2022-05-12 22:22:51,792 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:51,919 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42467328}) to executor  for transfer request: 0.
2022-05-12 22:22:51,919 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:51,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) about to wait for the following futures []
2022-05-12 22:22:51,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) done waiting for dependent futures
2022-05-12 22:22:51,920 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42467328}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 42467328}
2022-05-12 22:22:51,920 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:22:52,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:22:52,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:22:52,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 9437184}
2022-05-12 22:22:52,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,327 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:52,327 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:52,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:52,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 25427968}
2022-05-12 22:22:52,328 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,343 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:22:52,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:22:52,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:22:52,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1048576}
2022-05-12 22:22:52,344 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:52,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:52,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:52,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 17301504}
2022-05-12 22:22:52,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,736 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:53,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:53,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:53,736 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 16777216}
2022-05-12 22:22:53,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:55,345 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:55,345 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:55,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:55,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:55,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 8912896}
2022-05-12 22:22:55,346 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:55,724 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:22:55,724 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:55,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:22:55,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:22:55,725 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 25690112}
2022-05-12 22:22:55,725 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:58,125 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:22:58,125 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:58,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:22:58,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:22:58,126 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 17825792}
2022-05-12 22:22:58,126 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:59,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:59,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:59,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:59,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:59,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 524288}
2022-05-12 22:22:59,266 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,153 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67633152}) to executor  for transfer request: 0.
2022-05-12 22:23:00,153 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) about to wait for the following futures []
2022-05-12 22:23:00,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) done waiting for dependent futures
2022-05-12 22:23:00,154 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67633152}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 67633152}
2022-05-12 22:23:00,154 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:00,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:00,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:00,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 25690112}
2022-05-12 22:23:00,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:02,383 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:02,383 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:02,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:02,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:02,384 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 9175040}
2022-05-12 22:23:02,384 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:04,420 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76021760}) to executor  for transfer request: 0.
2022-05-12 22:23:04,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:04,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) about to wait for the following futures []
2022-05-12 22:23:04,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) done waiting for dependent futures
2022-05-12 22:23:04,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76021760}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 76021760}
2022-05-12 22:23:04,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:04,770 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42729472}) to executor  for transfer request: 0.
2022-05-12 22:23:04,770 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:04,770 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) about to wait for the following futures []
2022-05-12 22:23:04,770 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) done waiting for dependent futures
2022-05-12 22:23:04,771 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42729472}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 42729472}
2022-05-12 22:23:04,771 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:23:05,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:23:05,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:23:05,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 8912896}
2022-05-12 22:23:05,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:05,726 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:05,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:05,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 25690112}
2022-05-12 22:23:05,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,795 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34078720}) to executor  for transfer request: 0.
2022-05-12 22:23:05,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) about to wait for the following futures []
2022-05-12 22:23:05,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) done waiting for dependent futures
2022-05-12 22:23:05,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34078720}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 34078720}
2022-05-12 22:23:05,796 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:06,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58982400}) to executor  for transfer request: 0.
2022-05-12 22:23:06,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:06,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) about to wait for the following futures []
2022-05-12 22:23:06,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) done waiting for dependent futures
2022-05-12 22:23:06,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58982400}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 58982400}
2022-05-12 22:23:06,045 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:07,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:07,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:07,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 9699328}
2022-05-12 22:23:07,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,160 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:08,161 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,161 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:08,161 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:08,161 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 25952256}
2022-05-12 22:23:08,162 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,431 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:08,431 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,431 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:08,431 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:08,432 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 9175040}
2022-05-12 22:23:08,432 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:09,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51118080}) to executor  for transfer request: 0.
2022-05-12 22:23:09,148 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:09,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) about to wait for the following futures []
2022-05-12 22:23:09,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) done waiting for dependent futures
2022-05-12 22:23:09,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51118080}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 51118080}
2022-05-12 22:23:09,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:10,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:10,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:10,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:10,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:10,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1310720}
2022-05-12 22:23:10,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:11,320 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:11,321 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:11,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:11,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:11,321 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 18087936}
2022-05-12 22:23:11,321 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:11,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:11,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:11,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:11,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:11,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 25952256}
2022-05-12 22:23:11,869 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:11,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:11,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:11,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:11,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:11,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 9437184}
2022-05-12 22:23:11,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,821 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:12,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:12,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:12,822 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 17563648}
2022-05-12 22:23:12,822 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:14,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67895296}) to executor  for transfer request: 0.
2022-05-12 22:23:14,564 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:14,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) about to wait for the following futures []
2022-05-12 22:23:14,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) done waiting for dependent futures
2022-05-12 22:23:14,565 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67895296}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 67895296}
2022-05-12 22:23:14,565 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:14,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:14,975 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:14,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:14,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:14,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 786432}
2022-05-12 22:23:14,976 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:17,439 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42991616}) to executor  for transfer request: 0.
2022-05-12 22:23:17,439 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:17,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) about to wait for the following futures []
2022-05-12 22:23:17,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) done waiting for dependent futures
2022-05-12 22:23:17,439 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42991616}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 42991616}
2022-05-12 22:23:17,440 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:20,496 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76283904}) to executor  for transfer request: 0.
2022-05-12 22:23:20,496 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) about to wait for the following futures []
2022-05-12 22:23:20,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) done waiting for dependent futures
2022-05-12 22:23:20,497 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76283904}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 76283904}
2022-05-12 22:23:20,498 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:20,808 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:20,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:20,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:20,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 25690112}
2022-05-12 22:23:20,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:21,428 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:21,428 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:21,429 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:21,429 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:21,429 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 9437184}
2022-05-12 22:23:21,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:23,045 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:23,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:23,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 9175040}
2022-05-12 22:23:23,046 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,375 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:23,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:23,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:23,376 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 17301504}
2022-05-12 22:23:23,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,525 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:23,525 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:23,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:23,526 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 18350080}
2022-05-12 22:23:23,526 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,606 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51380224}) to executor  for transfer request: 0.
2022-05-12 22:23:23,606 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) about to wait for the following futures []
2022-05-12 22:23:23,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) done waiting for dependent futures
2022-05-12 22:23:23,606 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51380224}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 51380224}
2022-05-12 22:23:23,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:24,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59244544}) to executor  for transfer request: 0.
2022-05-12 22:23:24,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:24,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) about to wait for the following futures []
2022-05-12 22:23:24,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) done waiting for dependent futures
2022-05-12 22:23:24,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59244544}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 59244544}
2022-05-12 22:23:24,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:24,683 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:24,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:24,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:24,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:24,684 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 26214400}
2022-05-12 22:23:24,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:24,691 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:24,691 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:24,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:24,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:24,692 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 9961472}
2022-05-12 22:23:24,692 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:25,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:25,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:25,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 17825792}
2022-05-12 22:23:25,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:26,805 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34340864}) to executor  for transfer request: 0.
2022-05-12 22:23:26,805 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:26,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) about to wait for the following futures []
2022-05-12 22:23:26,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) done waiting for dependent futures
2022-05-12 22:23:26,805 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34340864}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 34340864}
2022-05-12 22:23:26,806 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,527 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:27,527 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:27,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:27,528 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 26214400}
2022-05-12 22:23:27,528 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:28,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:28,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:28,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:28,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:28,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 1048576}
2022-05-12 22:23:28,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,405 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:30,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:30,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:30,406 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 9699328}
2022-05-12 22:23:30,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:31,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43253760}) to executor  for transfer request: 0.
2022-05-12 22:23:31,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:31,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) about to wait for the following futures []
2022-05-12 22:23:31,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) done waiting for dependent futures
2022-05-12 22:23:31,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43253760}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 43253760}
2022-05-12 22:23:31,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:32,094 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:32,095 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:32,095 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:32,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:32,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:32,095 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 26476544}
2022-05-12 22:23:32,096 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:35,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:35,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:35,887 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 25952256}
2022-05-12 22:23:35,887 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,960 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:35,960 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:35,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:35,961 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 9699328}
2022-05-12 22:23:35,961 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:36,114 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76546048}) to executor  for transfer request: 0.
2022-05-12 22:23:36,114 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:36,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) about to wait for the following futures []
2022-05-12 22:23:36,115 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) done waiting for dependent futures
2022-05-12 22:23:36,115 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76546048}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 76546048}
2022-05-12 22:23:36,115 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:36,504 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:23:36,504 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:36,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:23:36,505 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:23:36,505 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 524288}
2022-05-12 22:23:36,505 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:37,536 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:37,536 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:37,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:37,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:37,537 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 10223616}
2022-05-12 22:23:37,537 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:37,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:37,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:37,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:37,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:37,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 18087936}
2022-05-12 22:23:37,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,522 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:38,522 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:38,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:38,523 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 26476544}
2022-05-12 22:23:38,523 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,580 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:38,580 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:38,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:38,581 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 9437184}
2022-05-12 22:23:38,581 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59506688}) to executor  for transfer request: 0.
2022-05-12 22:23:38,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) about to wait for the following futures []
2022-05-12 22:23:38,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) done waiting for dependent futures
2022-05-12 22:23:38,761 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59506688}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 59506688}
2022-05-12 22:23:38,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:23:39,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:23:39,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:23:39,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 18612224}
2022-05-12 22:23:39,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34603008}) to executor  for transfer request: 0.
2022-05-12 22:23:39,397 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) about to wait for the following futures []
2022-05-12 22:23:39,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) done waiting for dependent futures
2022-05-12 22:23:39,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34603008}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 34603008}
2022-05-12 22:23:39,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:41,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43515904}) to executor  for transfer request: 0.
2022-05-12 22:23:41,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:41,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) about to wait for the following futures []
2022-05-12 22:23:41,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) done waiting for dependent futures
2022-05-12 22:23:41,767 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43515904}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 43515904}
2022-05-12 22:23:41,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,097 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:44,097 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:44,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:44,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 25952256}
2022-05-12 22:23:44,098 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,120 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:44,120 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:44,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:44,121 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 1310720}
2022-05-12 22:23:44,122 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,167 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:44,167 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:44,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:44,168 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1572864}
2022-05-12 22:23:44,168 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:45,910 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:23:45,910 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:45,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:23:45,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:23:45,911 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 0}
2022-05-12 22:23:45,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:46,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:46,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:46,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:46,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:46,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 9961472}
2022-05-12 22:23:46,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:46,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:46,273 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:46,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:46,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:46,273 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 9961472}
2022-05-12 22:23:46,273 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:46,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:46,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:46,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:46,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:46,954 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 18350080}
2022-05-12 22:23:46,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:48,146 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51642368}) to executor  for transfer request: 0.
2022-05-12 22:23:48,147 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:48,147 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) about to wait for the following futures []
2022-05-12 22:23:48,147 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) done waiting for dependent futures
2022-05-12 22:23:48,147 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51642368}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 51642368}
2022-05-12 22:23:48,148 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:51,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:23:51,295 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:51,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:23:51,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:23:51,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 18874368}
2022-05-12 22:23:51,296 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:53,508 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76808192}) to executor  for transfer request: 0.
2022-05-12 22:23:53,508 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:53,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) about to wait for the following futures []
2022-05-12 22:23:53,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) done waiting for dependent futures
2022-05-12 22:23:53,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76808192}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 76808192}
2022-05-12 22:23:53,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:53,746 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:53,746 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:53,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:53,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:53,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 10223616}
2022-05-12 22:23:53,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:54,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:23:54,516 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:54,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:23:54,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:23:54,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 10485760}
2022-05-12 22:23:54,517 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,192 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59768832}) to executor  for transfer request: 0.
2022-05-12 22:23:55,192 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) about to wait for the following futures []
2022-05-12 22:23:55,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) done waiting for dependent futures
2022-05-12 22:23:55,192 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59768832}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 59768832}
2022-05-12 22:23:55,193 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:56,092 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34865152}) to executor  for transfer request: 0.
2022-05-12 22:23:56,092 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:56,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) about to wait for the following futures []
2022-05-12 22:23:56,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) done waiting for dependent futures
2022-05-12 22:23:56,093 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34865152}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 34865152}
2022-05-12 22:23:56,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:57,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:57,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:57,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:57,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:57,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1835008}
2022-05-12 22:23:57,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:57,728 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:23:57,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:57,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:23:57,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:23:57,729 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 262144}
2022-05-12 22:23:57,729 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,021 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:58,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:58,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:58,022 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 17563648}
2022-05-12 22:23:58,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:58,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:58,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:58,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 1572864}
2022-05-12 22:23:58,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,377 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43778048}) to executor  for transfer request: 0.
2022-05-12 22:23:58,377 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) about to wait for the following futures []
2022-05-12 22:23:58,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) done waiting for dependent futures
2022-05-12 22:23:58,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43778048}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 43778048}
2022-05-12 22:23:58,378 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:59,193 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:23:59,193 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:59,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:23:59,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:23:59,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 18612224}
2022-05-12 22:23:59,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:59,210 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:59,210 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:59,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:59,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:59,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 10223616}
2022-05-12 22:23:59,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:01,056 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:24:01,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:01,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:24:01,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:24:01,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 26214400}
2022-05-12 22:24:01,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:02,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:24:02,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:02,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:24:02,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:24:02,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 9699328}
2022-05-12 22:24:02,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:04,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51904512}) to executor  for transfer request: 0.
2022-05-12 22:24:04,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:04,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) about to wait for the following futures []
2022-05-12 22:24:04,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) done waiting for dependent futures
2022-05-12 22:24:04,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51904512}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 51904512}
2022-05-12 22:24:04,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:04,379 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:24:04,379 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:04,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:24:04,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:24:04,379 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 26214400}
2022-05-12 22:24:04,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:05,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:05,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:05,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:05,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:05,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 19136512}
2022-05-12 22:24:05,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:06,752 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:06,752 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:06,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:06,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:06,753 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 10485760}
2022-05-12 22:24:06,753 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:06,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68157440}) to executor  for transfer request: 0.
2022-05-12 22:24:06,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:06,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) about to wait for the following futures []
2022-05-12 22:24:06,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) done waiting for dependent futures
2022-05-12 22:24:06,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68157440}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 68157440}
2022-05-12 22:24:06,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:07,764 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77070336}) to executor  for transfer request: 0.
2022-05-12 22:24:07,764 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:07,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) about to wait for the following futures []
2022-05-12 22:24:07,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) done waiting for dependent futures
2022-05-12 22:24:07,764 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77070336}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 77070336}
2022-05-12 22:24:07,765 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:08,556 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35127296}) to executor  for transfer request: 0.
2022-05-12 22:24:08,556 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:08,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) about to wait for the following futures []
2022-05-12 22:24:08,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) done waiting for dependent futures
2022-05-12 22:24:08,557 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35127296}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 35127296}
2022-05-12 22:24:08,557 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:08,590 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:08,590 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:08,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:08,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:08,591 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2097152}
2022-05-12 22:24:08,591 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,190 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:09,191 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:09,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:09,191 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 10747904}
2022-05-12 22:24:09,191 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,223 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:09,223 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,223 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:09,223 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:09,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 18874368}
2022-05-12 22:24:09,224 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,845 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60030976}) to executor  for transfer request: 0.
2022-05-12 22:24:09,846 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) about to wait for the following futures []
2022-05-12 22:24:09,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) done waiting for dependent futures
2022-05-12 22:24:09,846 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60030976}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 60030976}
2022-05-12 22:24:09,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:10,015 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:24:10,016 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:10,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:24:10,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:24:10,016 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 524288}
2022-05-12 22:24:10,017 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:10,573 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44040192}) to executor  for transfer request: 0.
2022-05-12 22:24:10,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:10,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) about to wait for the following futures []
2022-05-12 22:24:10,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) done waiting for dependent futures
2022-05-12 22:24:10,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44040192}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 44040192}
2022-05-12 22:24:10,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,851 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:24:12,851 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:24:12,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:24:12,852 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 1835008}
2022-05-12 22:24:12,852 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:14,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:14,290 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:14,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:14,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:14,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 10485760}
2022-05-12 22:24:14,291 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:15,023 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:24:15,023 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:15,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:24:15,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:24:15,024 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 9961472}
2022-05-12 22:24:15,024 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:18,631 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:18,631 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:18,631 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:18,631 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:18,632 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 10747904}
2022-05-12 22:24:18,632 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:24:20,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:24:20,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:24:20,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 786432}
2022-05-12 22:24:20,117 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77332480}) to executor  for transfer request: 0.
2022-05-12 22:24:20,639 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) about to wait for the following futures []
2022-05-12 22:24:20,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) done waiting for dependent futures
2022-05-12 22:24:20,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77332480}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 77332480}
2022-05-12 22:24:20,640 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,828 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:24:20,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:24:20,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:24:20,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 26476544}
2022-05-12 22:24:20,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:21,030 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:24:21,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:21,030 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:21,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:24:21,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:24:21,031 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 26476544}
2022-05-12 22:24:21,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:21,970 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68419584}) to executor  for transfer request: 0.
2022-05-12 22:24:21,971 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:21,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) about to wait for the following futures []
2022-05-12 22:24:21,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) done waiting for dependent futures
2022-05-12 22:24:21,971 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68419584}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 68419584}
2022-05-12 22:24:21,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:21,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44302336}) to executor  for transfer request: 0.
2022-05-12 22:24:21,998 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:21,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) about to wait for the following futures []
2022-05-12 22:24:21,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) done waiting for dependent futures
2022-05-12 22:24:21,998 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44302336}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 44302336}
2022-05-12 22:24:21,999 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:22,284 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:22,284 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:22,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:22,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:22,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2359296}
2022-05-12 22:24:22,285 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:23,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:23,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:23,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:23,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:23,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 2097152}
2022-05-12 22:24:23,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:23,592 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:23,592 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:23,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:23,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:23,592 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 11010048}
2022-05-12 22:24:23,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,156 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60293120}) to executor  for transfer request: 0.
2022-05-12 22:24:24,156 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) about to wait for the following futures []
2022-05-12 22:24:24,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) done waiting for dependent futures
2022-05-12 22:24:24,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60293120}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 60293120}
2022-05-12 22:24:24,157 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:24,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:24,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:24,393 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 19136512}
2022-05-12 22:24:24,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:25,391 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35389440}) to executor  for transfer request: 0.
2022-05-12 22:24:25,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:25,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) about to wait for the following futures []
2022-05-12 22:24:25,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) done waiting for dependent futures
2022-05-12 22:24:25,392 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35389440}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 35389440}
2022-05-12 22:24:25,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,170 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:26,170 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:26,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:26,171 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 10747904}
2022-05-12 22:24:26,171 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:27,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52166656}) to executor  for transfer request: 0.
2022-05-12 22:24:27,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:27,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) about to wait for the following futures []
2022-05-12 22:24:27,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) done waiting for dependent futures
2022-05-12 22:24:27,140 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52166656}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 52166656}
2022-05-12 22:24:27,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,223 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:24:28,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:24:28,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:24:28,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 17825792}
2022-05-12 22:24:28,224 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:24:30,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:24:30,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:24:30,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 1048576}
2022-05-12 22:24:30,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:31,331 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:31,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:31,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:31,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:31,331 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2621440}
2022-05-12 22:24:31,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:32,122 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44564480}) to executor  for transfer request: 0.
2022-05-12 22:24:32,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:32,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) about to wait for the following futures []
2022-05-12 22:24:32,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) done waiting for dependent futures
2022-05-12 22:24:32,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44564480}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 44564480}
2022-05-12 22:24:32,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:33,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:33,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:33,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:33,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:33,109 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 11010048}
2022-05-12 22:24:33,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:33,115 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:33,115 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:33,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:33,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:33,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 2359296}
2022-05-12 22:24:33,116 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:33,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:24:33,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:33,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:24:33,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:24:33,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 11272192}
2022-05-12 22:24:33,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:33,863 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35651584}) to executor  for transfer request: 0.
2022-05-12 22:24:33,863 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:33,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) about to wait for the following futures []
2022-05-12 22:24:33,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) done waiting for dependent futures
2022-05-12 22:24:33,864 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35651584}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 35651584}
2022-05-12 22:24:33,864 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,762 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77594624}) to executor  for transfer request: 0.
2022-05-12 22:24:36,762 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) about to wait for the following futures []
2022-05-12 22:24:36,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) done waiting for dependent futures
2022-05-12 22:24:36,763 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77594624}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 77594624}
2022-05-12 22:24:36,763 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:36,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:36,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:36,916 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 11010048}
2022-05-12 22:24:36,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:37,167 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52428800}) to executor  for transfer request: 0.
2022-05-12 22:24:37,167 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:37,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) about to wait for the following futures []
2022-05-12 22:24:37,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) done waiting for dependent futures
2022-05-12 22:24:37,168 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52428800}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 52428800}
2022-05-12 22:24:37,168 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:37,239 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:24:37,239 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:37,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:24:37,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:24:37,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 26738688}
2022-05-12 22:24:37,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:37,973 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:37,973 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:37,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:37,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:37,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 19398656}
2022-05-12 22:24:37,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:39,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68681728}) to executor  for transfer request: 0.
2022-05-12 22:24:39,611 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:39,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) about to wait for the following futures []
2022-05-12 22:24:39,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) done waiting for dependent futures
2022-05-12 22:24:39,611 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68681728}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 68681728}
2022-05-12 22:24:39,611 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:40,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:24:40,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:40,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:24:40,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:24:40,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 11272192}
2022-05-12 22:24:40,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:40,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:24:40,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:40,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:24:40,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:24:40,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 1310720}
2022-05-12 22:24:40,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:40,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60555264}) to executor  for transfer request: 0.
2022-05-12 22:24:40,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:40,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) about to wait for the following futures []
2022-05-12 22:24:40,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) done waiting for dependent futures
2022-05-12 22:24:40,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60555264}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 60555264}
2022-05-12 22:24:40,794 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:41,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:24:41,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:41,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:24:41,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:24:41,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 18087936}
2022-05-12 22:24:41,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44826624}) to executor  for transfer request: 0.
2022-05-12 22:24:42,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) about to wait for the following futures []
2022-05-12 22:24:42,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) done waiting for dependent futures
2022-05-12 22:24:42,331 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44826624}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 44826624}
2022-05-12 22:24:42,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:24:42,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:24:42,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:24:42,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2883584}
2022-05-12 22:24:42,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:45,334 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:45,335 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:45,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:45,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:45,336 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 2621440}
2022-05-12 22:24:45,336 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:48,653 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45088768}) to executor  for transfer request: 0.
2022-05-12 22:24:48,653 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:48,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) about to wait for the following futures []
2022-05-12 22:24:48,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) done waiting for dependent futures
2022-05-12 22:24:48,654 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45088768}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 45088768}
2022-05-12 22:24:48,654 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:48,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35913728}) to executor  for transfer request: 0.
2022-05-12 22:24:48,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:48,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) about to wait for the following futures []
2022-05-12 22:24:48,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) done waiting for dependent futures
2022-05-12 22:24:48,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35913728}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 35913728}
2022-05-12 22:24:48,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:49,819 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77856768}) to executor  for transfer request: 0.
2022-05-12 22:24:49,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:49,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) about to wait for the following futures []
2022-05-12 22:24:49,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) done waiting for dependent futures
2022-05-12 22:24:49,820 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77856768}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 77856768}
2022-05-12 22:24:49,821 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:51,391 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52690944}) to executor  for transfer request: 0.
2022-05-12 22:24:51,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:51,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) about to wait for the following futures []
2022-05-12 22:24:51,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) done waiting for dependent futures
2022-05-12 22:24:51,392 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52690944}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 52690944}
2022-05-12 22:24:51,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,566 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:24:52,566 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:24:52,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:24:52,567 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 19660800}
2022-05-12 22:24:52,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,846 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:52,846 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:52,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:52,847 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 19398656}
2022-05-12 22:24:52,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,073 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:24:53,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:24:53,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:24:53,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 11272192}
2022-05-12 22:24:53,074 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,367 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:24:53,367 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:24:53,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:24:53,368 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 11534336}
2022-05-12 22:24:53,368 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,714 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:24:53,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,714 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:24:53,714 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:24:53,714 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 1572864}
2022-05-12 22:24:53,715 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:24:53,954 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:24:53,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:24:53,954 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 18350080}
2022-05-12 22:24:53,955 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:54,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:24:54,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:54,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:24:54,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:24:54,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 10223616}
2022-05-12 22:24:54,117 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:54,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:24:54,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:54,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:24:54,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:24:54,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 11534336}
2022-05-12 22:24:54,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:54,597 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68943872}) to executor  for transfer request: 0.
2022-05-12 22:24:54,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:54,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) about to wait for the following futures []
2022-05-12 22:24:54,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) done waiting for dependent futures
2022-05-12 22:24:54,598 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68943872}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 68943872}
2022-05-12 22:24:54,598 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:56,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60817408}) to executor  for transfer request: 0.
2022-05-12 22:24:56,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:56,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) about to wait for the following futures []
2022-05-12 22:24:56,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) done waiting for dependent futures
2022-05-12 22:24:56,682 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60817408}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 60817408}
2022-05-12 22:24:56,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:57,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45350912}) to executor  for transfer request: 0.
2022-05-12 22:24:57,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:57,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) about to wait for the following futures []
2022-05-12 22:24:57,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) done waiting for dependent futures
2022-05-12 22:24:57,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45350912}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 45350912}
2022-05-12 22:24:57,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36175872}) to executor  for transfer request: 0.
2022-05-12 22:24:58,921 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) about to wait for the following futures []
2022-05-12 22:24:58,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) done waiting for dependent futures
2022-05-12 22:24:58,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36175872}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 36175872}
2022-05-12 22:24:58,922 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:59,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:24:59,885 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:59,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:24:59,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:24:59,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 2883584}
2022-05-12 22:24:59,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:01,146 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:25:01,146 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:01,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:25:01,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:25:01,146 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3145728}
2022-05-12 22:25:01,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,593 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:25:02,593 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:25:02,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:25:02,594 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 1835008}
2022-05-12 22:25:02,594 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,960 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:25:02,961 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:25:02,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:25:02,961 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 19922944}
2022-05-12 22:25:02,961 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,229 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:04,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:04,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:04,230 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 11796480}
2022-05-12 22:25:04,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52953088}) to executor  for transfer request: 0.
2022-05-12 22:25:04,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) about to wait for the following futures []
2022-05-12 22:25:04,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) done waiting for dependent futures
2022-05-12 22:25:04,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52953088}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 52953088}
2022-05-12 22:25:04,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:05,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:25:05,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:05,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:25:05,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:25:05,463 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 11534336}
2022-05-12 22:25:05,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:05,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78118912}) to executor  for transfer request: 0.
2022-05-12 22:25:05,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:05,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) about to wait for the following futures []
2022-05-12 22:25:05,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) done waiting for dependent futures
2022-05-12 22:25:05,476 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78118912}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 78118912}
2022-05-12 22:25:05,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:05,661 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:05,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:05,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:05,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:05,662 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 11796480}
2022-05-12 22:25:05,663 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:07,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:25:07,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:07,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:25:07,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:25:07,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 27000832}
2022-05-12 22:25:07,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:08,281 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69206016}) to executor  for transfer request: 0.
2022-05-12 22:25:08,281 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:08,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) about to wait for the following futures []
2022-05-12 22:25:08,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) done waiting for dependent futures
2022-05-12 22:25:08,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69206016}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 69206016}
2022-05-12 22:25:08,282 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:10,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45613056}) to executor  for transfer request: 0.
2022-05-12 22:25:10,834 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:10,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) about to wait for the following futures []
2022-05-12 22:25:10,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) done waiting for dependent futures
2022-05-12 22:25:10,834 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45613056}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 45613056}
2022-05-12 22:25:10,835 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:11,018 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36438016}) to executor  for transfer request: 0.
2022-05-12 22:25:11,019 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:11,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) about to wait for the following futures []
2022-05-12 22:25:11,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) done waiting for dependent futures
2022-05-12 22:25:11,020 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36438016}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 36438016}
2022-05-12 22:25:11,020 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:11,640 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:25:11,640 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:11,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:25:11,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:25:11,641 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 19660800}
2022-05-12 22:25:11,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:25:12,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:25:12,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:25:12,476 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 18612224}
2022-05-12 22:25:12,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:12,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:12,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:12,682 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 12058624}
2022-05-12 22:25:12,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:25:12,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:25:12,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:25:12,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 3145728}
2022-05-12 22:25:12,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:13,950 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:13,950 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:13,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:13,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:13,951 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 11796480}
2022-05-12 22:25:13,951 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:14,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61079552}) to executor  for transfer request: 0.
2022-05-12 22:25:14,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:14,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) about to wait for the following futures []
2022-05-12 22:25:14,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) done waiting for dependent futures
2022-05-12 22:25:14,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61079552}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 61079552}
2022-05-12 22:25:14,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:15,040 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53215232}) to executor  for transfer request: 0.
2022-05-12 22:25:15,040 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:15,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) about to wait for the following futures []
2022-05-12 22:25:15,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) done waiting for dependent futures
2022-05-12 22:25:15,041 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53215232}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 53215232}
2022-05-12 22:25:15,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:16,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78381056}) to executor  for transfer request: 0.
2022-05-12 22:25:16,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:16,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) about to wait for the following futures []
2022-05-12 22:25:16,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) done waiting for dependent futures
2022-05-12 22:25:16,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78381056}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 78381056}
2022-05-12 22:25:16,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:17,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:17,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:17,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 12058624}
2022-05-12 22:25:17,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:25:17,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:25:17,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:25:17,740 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 2097152}
2022-05-12 22:25:17,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,246 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:25:18,246 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:25:18,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:25:18,247 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17039360}
2022-05-12 22:25:18,247 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:25:18,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:25:18,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:25:18,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 20185088}
2022-05-12 22:25:18,543 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:18,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:18,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:18,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3407872}
2022-05-12 22:25:18,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:20,904 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:20,904 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:20,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:20,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:20,905 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 12058624}
2022-05-12 22:25:20,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:21,091 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:21,091 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:21,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:21,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:21,091 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 12320768}
2022-05-12 22:25:21,092 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:21,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45875200}) to executor  for transfer request: 0.
2022-05-12 22:25:21,646 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:21,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) about to wait for the following futures []
2022-05-12 22:25:21,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) done waiting for dependent futures
2022-05-12 22:25:21,646 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45875200}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 45875200}
2022-05-12 22:25:21,647 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:25,639 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36700160}) to executor  for transfer request: 0.
2022-05-12 22:25:25,640 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:25,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) about to wait for the following futures []
2022-05-12 22:25:25,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) done waiting for dependent futures
2022-05-12 22:25:25,640 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36700160}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 36700160}
2022-05-12 22:25:25,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:26,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53477376}) to executor  for transfer request: 0.
2022-05-12 22:25:26,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:26,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) about to wait for the following futures []
2022-05-12 22:25:26,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) done waiting for dependent futures
2022-05-12 22:25:26,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53477376}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 53477376}
2022-05-12 22:25:26,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:26,437 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61341696}) to executor  for transfer request: 0.
2022-05-12 22:25:26,437 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:26,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) about to wait for the following futures []
2022-05-12 22:25:26,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) done waiting for dependent futures
2022-05-12 22:25:26,438 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61341696}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 61341696}
2022-05-12 22:25:26,438 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:27,957 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:27,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:27,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:27,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:27,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 12320768}
2022-05-12 22:25:27,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:28,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:25:28,685 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:28,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:25:28,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:25:28,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 18874368}
2022-05-12 22:25:28,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:28,709 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:25:28,709 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:28,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:25:28,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:25:28,710 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 2359296}
2022-05-12 22:25:28,711 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:28,805 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69468160}) to executor  for transfer request: 0.
2022-05-12 22:25:28,805 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:28,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) about to wait for the following futures []
2022-05-12 22:25:28,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) done waiting for dependent futures
2022-05-12 22:25:28,806 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69468160}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 69468160}
2022-05-12 22:25:28,806 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:29,471 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78643200}) to executor  for transfer request: 0.
2022-05-12 22:25:29,471 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:29,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) about to wait for the following futures []
2022-05-12 22:25:29,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) done waiting for dependent futures
2022-05-12 22:25:29,472 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78643200}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 78643200}
2022-05-12 22:25:29,472 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:30,797 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:30,797 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:30,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:30,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:30,797 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 12582912}
2022-05-12 22:25:30,798 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:31,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:31,302 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:31,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:31,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:31,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 12320768}
2022-05-12 22:25:31,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:31,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:25:31,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:31,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:25:31,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:25:31,736 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 19922944}
2022-05-12 22:25:31,737 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:32,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:32,395 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:32,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:32,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:32,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 20447232}
2022-05-12 22:25:32,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:32,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:32,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:32,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:32,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:32,761 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 3407872}
2022-05-12 22:25:32,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:33,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:25:33,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:33,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:25:33,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:25:33,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 786432}
2022-05-12 22:25:33,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:35,768 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:35,768 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:35,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:35,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:35,769 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 12582912}
2022-05-12 22:25:35,769 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:35,964 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53739520}) to executor  for transfer request: 0.
2022-05-12 22:25:35,964 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:35,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) about to wait for the following futures []
2022-05-12 22:25:35,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) done waiting for dependent futures
2022-05-12 22:25:35,964 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53739520}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 53739520}
2022-05-12 22:25:35,965 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,322 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46137344}) to executor  for transfer request: 0.
2022-05-12 22:25:36,322 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) about to wait for the following futures []
2022-05-12 22:25:36,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) done waiting for dependent futures
2022-05-12 22:25:36,323 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46137344}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 46137344}
2022-05-12 22:25:36,323 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:37,344 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61603840}) to executor  for transfer request: 0.
2022-05-12 22:25:37,345 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:37,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) about to wait for the following futures []
2022-05-12 22:25:37,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) done waiting for dependent futures
2022-05-12 22:25:37,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61603840}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 61603840}
2022-05-12 22:25:37,346 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:38,247 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:25:38,247 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:38,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:25:38,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:25:38,248 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 2621440}
2022-05-12 22:25:38,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:38,547 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:25:38,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:38,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:25:38,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:25:38,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 19136512}
2022-05-12 22:25:38,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:38,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36962304}) to executor  for transfer request: 0.
2022-05-12 22:25:38,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:38,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) about to wait for the following futures []
2022-05-12 22:25:38,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) done waiting for dependent futures
2022-05-12 22:25:38,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36962304}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 36962304}
2022-05-12 22:25:38,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:39,481 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:25:39,482 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:39,482 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:25:39,482 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:25:39,482 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 12845056}
2022-05-12 22:25:39,483 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:40,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:25:40,360 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:40,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:25:40,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:25:40,360 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 27262976}
2022-05-12 22:25:40,361 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:43,386 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78905344}) to executor  for transfer request: 0.
2022-05-12 22:25:43,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:43,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) about to wait for the following futures []
2022-05-12 22:25:43,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) done waiting for dependent futures
2022-05-12 22:25:43,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78905344}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 78905344}
2022-05-12 22:25:43,387 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,085 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69730304}) to executor  for transfer request: 0.
2022-05-12 22:25:44,085 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) about to wait for the following futures []
2022-05-12 22:25:44,086 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) done waiting for dependent futures
2022-05-12 22:25:44,086 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69730304}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 69730304}
2022-05-12 22:25:44,086 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:44,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:44,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:44,127 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 12582912}
2022-05-12 22:25:44,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:45,153 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:25:45,153 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:45,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:25:45,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:25:45,153 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 3670016}
2022-05-12 22:25:45,154 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:46,260 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:25:46,261 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:46,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:25:46,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:25:46,261 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 10485760}
2022-05-12 22:25:46,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:46,658 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:25:46,658 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:46,659 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:25:46,659 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:25:46,659 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 12845056}
2022-05-12 22:25:46,659 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:47,608 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:25:47,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:47,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:25:47,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:25:47,609 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 20709376}
2022-05-12 22:25:47,610 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:47,995 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46399488}) to executor  for transfer request: 0.
2022-05-12 22:25:47,995 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:47,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) about to wait for the following futures []
2022-05-12 22:25:47,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) done waiting for dependent futures
2022-05-12 22:25:47,995 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46399488}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 46399488}
2022-05-12 22:25:47,996 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:48,861 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37224448}) to executor  for transfer request: 0.
2022-05-12 22:25:48,861 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:48,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) about to wait for the following futures []
2022-05-12 22:25:48,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) done waiting for dependent futures
2022-05-12 22:25:48,862 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37224448}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 37224448}
2022-05-12 22:25:48,862 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:49,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:25:49,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:49,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:25:49,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:25:49,496 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 2883584}
2022-05-12 22:25:49,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,090 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61865984}) to executor  for transfer request: 0.
2022-05-12 22:25:50,091 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) about to wait for the following futures []
2022-05-12 22:25:50,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) done waiting for dependent futures
2022-05-12 22:25:50,091 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61865984}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 61865984}
2022-05-12 22:25:50,092 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:25:50,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:25:50,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:25:50,360 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 20185088}
2022-05-12 22:25:50,361 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:51,705 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:25:51,705 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:51,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:25:51,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:25:51,706 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 19398656}
2022-05-12 22:25:51,706 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:53,717 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54001664}) to executor  for transfer request: 0.
2022-05-12 22:25:53,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:53,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) about to wait for the following futures []
2022-05-12 22:25:53,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) done waiting for dependent futures
2022-05-12 22:25:53,717 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54001664}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 54001664}
2022-05-12 22:25:53,717 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:54,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:25:54,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:54,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:25:54,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:25:54,881 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 12845056}
2022-05-12 22:25:54,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:55,400 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:25:55,400 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:55,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:25:55,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:25:55,401 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 13107200}
2022-05-12 22:25:55,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:55,772 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79167488}) to executor  for transfer request: 0.
2022-05-12 22:25:55,772 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:55,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) about to wait for the following futures []
2022-05-12 22:25:55,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) done waiting for dependent futures
2022-05-12 22:25:55,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79167488}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 79167488}
2022-05-12 22:25:55,773 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:57,522 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69992448}) to executor  for transfer request: 0.
2022-05-12 22:25:57,522 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:57,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) about to wait for the following futures []
2022-05-12 22:25:57,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) done waiting for dependent futures
2022-05-12 22:25:57,523 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69992448}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 69992448}
2022-05-12 22:25:57,523 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:57,683 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:25:57,683 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:57,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:25:57,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:25:57,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 3145728}
2022-05-12 22:25:57,684 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:59,230 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46661632}) to executor  for transfer request: 0.
2022-05-12 22:25:59,230 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:59,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) about to wait for the following futures []
2022-05-12 22:25:59,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) done waiting for dependent futures
2022-05-12 22:25:59,231 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46661632}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 46661632}
2022-05-12 22:25:59,231 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:02,285 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:26:02,285 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:02,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:26:02,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:26:02,286 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 20971520}
2022-05-12 22:26:02,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:02,287 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62128128}) to executor  for transfer request: 0.
2022-05-12 22:26:02,287 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:02,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) about to wait for the following futures []
2022-05-12 22:26:02,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) done waiting for dependent futures
2022-05-12 22:26:02,288 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62128128}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 62128128}
2022-05-12 22:26:02,288 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:03,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:03,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:03,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:03,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:03,744 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 13369344}
2022-05-12 22:26:03,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,063 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:26:04,064 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:26:04,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:26:04,064 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 13107200}
2022-05-12 22:26:04,064 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:05,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:26:05,925 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:05,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:26:05,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:26:05,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 20447232}
2022-05-12 22:26:05,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:06,872 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:26:06,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:06,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:26:06,873 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:26:06,873 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 3932160}
2022-05-12 22:26:06,873 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:07,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:26:07,330 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:07,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:26:07,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:26:07,331 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 13107200}
2022-05-12 22:26:07,331 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:07,705 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37486592}) to executor  for transfer request: 0.
2022-05-12 22:26:07,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:07,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) about to wait for the following futures []
2022-05-12 22:26:07,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) done waiting for dependent futures
2022-05-12 22:26:07,707 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37486592}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 37486592}
2022-05-12 22:26:07,707 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,218 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79429632}) to executor  for transfer request: 0.
2022-05-12 22:26:08,218 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) about to wait for the following futures []
2022-05-12 22:26:08,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) done waiting for dependent futures
2022-05-12 22:26:08,219 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79429632}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 79429632}
2022-05-12 22:26:08,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,546 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54263808}) to executor  for transfer request: 0.
2022-05-12 22:26:08,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) about to wait for the following futures []
2022-05-12 22:26:08,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) done waiting for dependent futures
2022-05-12 22:26:08,546 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54263808}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 54263808}
2022-05-12 22:26:08,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:26:09,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:26:09,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:26:09,253 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 19660800}
2022-05-12 22:26:09,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46923776}) to executor  for transfer request: 0.
2022-05-12 22:26:09,373 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) about to wait for the following futures []
2022-05-12 22:26:09,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) done waiting for dependent futures
2022-05-12 22:26:09,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46923776}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 46923776}
2022-05-12 22:26:09,374 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:26:10,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:10,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:26:10,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:26:10,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 3407872}
2022-05-12 22:26:10,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,967 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:10,967 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:10,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:10,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:10,968 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 13631488}
2022-05-12 22:26:10,968 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:12,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70254592}) to executor  for transfer request: 0.
2022-05-12 22:26:12,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:12,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) about to wait for the following futures []
2022-05-12 22:26:12,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) done waiting for dependent futures
2022-05-12 22:26:12,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70254592}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 70254592}
2022-05-12 22:26:12,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:15,745 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:26:15,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:15,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:26:15,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:26:15,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3670016}
2022-05-12 22:26:15,746 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:17,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79691776}) to executor  for transfer request: 0.
2022-05-12 22:26:17,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:17,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) about to wait for the following futures []
2022-05-12 22:26:17,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) done waiting for dependent futures
2022-05-12 22:26:17,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79691776}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 79691776}
2022-05-12 22:26:17,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:18,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:18,646 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:18,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:18,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:18,647 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 13369344}
2022-05-12 22:26:18,647 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:19,705 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47185920}) to executor  for transfer request: 0.
2022-05-12 22:26:19,705 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:19,705 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) about to wait for the following futures []
2022-05-12 22:26:19,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) done waiting for dependent futures
2022-05-12 22:26:19,706 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47185920}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 47185920}
2022-05-12 22:26:19,706 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,056 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:20,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:20,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:20,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 13369344}
2022-05-12 22:26:20,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,298 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:20,299 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,299 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:20,299 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:20,299 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 13893632}
2022-05-12 22:26:20,300 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:26:20,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:26:20,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:26:20,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 20709376}
2022-05-12 22:26:20,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,640 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54525952}) to executor  for transfer request: 0.
2022-05-12 22:26:20,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) about to wait for the following futures []
2022-05-12 22:26:20,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) done waiting for dependent futures
2022-05-12 22:26:20,641 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54525952}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 54525952}
2022-05-12 22:26:20,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:21,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:26:21,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:21,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:26:21,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:26:21,131 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 27525120}
2022-05-12 22:26:21,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:21,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62390272}) to executor  for transfer request: 0.
2022-05-12 22:26:21,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:21,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) about to wait for the following futures []
2022-05-12 22:26:21,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) done waiting for dependent futures
2022-05-12 22:26:21,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62390272}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 62390272}
2022-05-12 22:26:21,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:21,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:26:21,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:21,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:26:21,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:26:21,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 3670016}
2022-05-12 22:26:21,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:23,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:26:23,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:23,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:26:23,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:26:23,724 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 19922944}
2022-05-12 22:26:23,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:23,951 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:26:23,951 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:23,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:26:23,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:26:23,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 4194304}
2022-05-12 22:26:23,952 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:24,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:26:24,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:24,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:26:24,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:26:24,036 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 21233664}
2022-05-12 22:26:24,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:24,861 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70516736}) to executor  for transfer request: 0.
2022-05-12 22:26:24,861 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:24,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) about to wait for the following futures []
2022-05-12 22:26:24,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) done waiting for dependent futures
2022-05-12 22:26:24,862 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70516736}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 70516736}
2022-05-12 22:26:24,862 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:26:27,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:26:27,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:26:27,476 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 14155776}
2022-05-12 22:26:27,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:28,484 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47448064}) to executor  for transfer request: 0.
2022-05-12 22:26:28,484 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:28,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) about to wait for the following futures []
2022-05-12 22:26:28,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) done waiting for dependent futures
2022-05-12 22:26:28,484 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47448064}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 47448064}
2022-05-12 22:26:28,485 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:28,794 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37748736}) to executor  for transfer request: 0.
2022-05-12 22:26:28,794 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:28,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) about to wait for the following futures []
2022-05-12 22:26:28,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) done waiting for dependent futures
2022-05-12 22:26:28,794 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37748736}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 37748736}
2022-05-12 22:26:28,795 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:29,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79953920}) to executor  for transfer request: 0.
2022-05-12 22:26:29,236 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:29,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) about to wait for the following futures []
2022-05-12 22:26:29,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) done waiting for dependent futures
2022-05-12 22:26:29,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79953920}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 79953920}
2022-05-12 22:26:29,237 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,420 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:26:30,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:26:30,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:26:30,421 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 10747904}
2022-05-12 22:26:30,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,582 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:30,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:30,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:30,584 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 13631488}
2022-05-12 22:26:30,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,756 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54788096}) to executor  for transfer request: 0.
2022-05-12 22:26:30,756 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,756 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) about to wait for the following futures []
2022-05-12 22:26:30,756 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) done waiting for dependent futures
2022-05-12 22:26:30,756 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54788096}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 54788096}
2022-05-12 22:26:30,757 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:32,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:32,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:32,410 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 13631488}
2022-05-12 22:26:32,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:34,777 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62652416}) to executor  for transfer request: 0.
2022-05-12 22:26:34,778 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:34,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) about to wait for the following futures []
2022-05-12 22:26:34,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) done waiting for dependent futures
2022-05-12 22:26:34,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62652416}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 62652416}
2022-05-12 22:26:34,779 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:35,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:26:35,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:35,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:26:35,141 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:26:35,141 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 14417920}
2022-05-12 22:26:35,141 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:35,774 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:26:35,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:35,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:26:35,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:26:35,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 3932160}
2022-05-12 22:26:35,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47710208}) to executor  for transfer request: 0.
2022-05-12 22:26:37,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:37,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) about to wait for the following futures []
2022-05-12 22:26:37,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) done waiting for dependent futures
2022-05-12 22:26:37,179 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47710208}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 47710208}
2022-05-12 22:26:37,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:26:39,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:26:39,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:26:39,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 20185088}
2022-05-12 22:26:39,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,741 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55050240}) to executor  for transfer request: 0.
2022-05-12 22:26:39,741 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) about to wait for the following futures []
2022-05-12 22:26:39,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) done waiting for dependent futures
2022-05-12 22:26:39,742 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55050240}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 55050240}
2022-05-12 22:26:39,742 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:26:39,885 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:26:39,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:26:39,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 21495808}
2022-05-12 22:26:39,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,936 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:26:39,936 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:26:39,937 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:26:39,937 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 20971520}
2022-05-12 22:26:39,937 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,227 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70778880}) to executor  for transfer request: 0.
2022-05-12 22:26:40,228 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) about to wait for the following futures []
2022-05-12 22:26:40,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) done waiting for dependent futures
2022-05-12 22:26:40,229 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70778880}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 70778880}
2022-05-12 22:26:40,229 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,363 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80216064}) to executor  for transfer request: 0.
2022-05-12 22:26:40,363 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) about to wait for the following futures []
2022-05-12 22:26:40,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) done waiting for dependent futures
2022-05-12 22:26:40,364 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80216064}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 80216064}
2022-05-12 22:26:40,364 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,891 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:26:40,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:26:40,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:26:40,892 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 4456448}
2022-05-12 22:26:40,893 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:42,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:42,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:42,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:42,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:42,597 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 13893632}
2022-05-12 22:26:42,598 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:46,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:26:46,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:46,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:26:46,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:26:46,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 4194304}
2022-05-12 22:26:46,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:47,764 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62914560}) to executor  for transfer request: 0.
2022-05-12 22:26:47,764 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:47,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) about to wait for the following futures []
2022-05-12 22:26:47,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) done waiting for dependent futures
2022-05-12 22:26:47,764 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62914560}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 62914560}
2022-05-12 22:26:47,765 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:48,556 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:26:48,556 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:48,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:26:48,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:26:48,556 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 14680064}
2022-05-12 22:26:48,557 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:49,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:49,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:49,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:49,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:49,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 13893632}
2022-05-12 22:26:49,045 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:49,675 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:49,675 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:49,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:49,676 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:49,676 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 4718592}
2022-05-12 22:26:49,676 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:49,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55312384}) to executor  for transfer request: 0.
2022-05-12 22:26:49,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:49,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) about to wait for the following futures []
2022-05-12 22:26:49,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) done waiting for dependent futures
2022-05-12 22:26:49,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55312384}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 55312384}
2022-05-12 22:26:49,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:50,112 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71041024}) to executor  for transfer request: 0.
2022-05-12 22:26:50,112 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:50,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) about to wait for the following futures []
2022-05-12 22:26:50,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) done waiting for dependent futures
2022-05-12 22:26:50,112 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71041024}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 71041024}
2022-05-12 22:26:50,113 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:51,566 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38010880}) to executor  for transfer request: 0.
2022-05-12 22:26:51,566 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:51,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) about to wait for the following futures []
2022-05-12 22:26:51,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) done waiting for dependent futures
2022-05-12 22:26:51,567 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38010880}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 38010880}
2022-05-12 22:26:51,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:52,777 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:26:52,777 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:52,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:26:52,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:26:52,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 21757952}
2022-05-12 22:26:52,778 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:54,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80478208}) to executor  for transfer request: 0.
2022-05-12 22:26:54,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:54,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) about to wait for the following futures []
2022-05-12 22:26:54,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) done waiting for dependent futures
2022-05-12 22:26:54,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80478208}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 80478208}
2022-05-12 22:26:54,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:54,789 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71303168}) to executor  for transfer request: 0.
2022-05-12 22:26:54,789 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:54,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) about to wait for the following futures []
2022-05-12 22:26:54,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) done waiting for dependent futures
2022-05-12 22:26:54,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71303168}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 71303168}
2022-05-12 22:26:54,790 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:56,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:26:56,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:56,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:26:56,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:26:56,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 21233664}
2022-05-12 22:26:56,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:57,286 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:26:57,287 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:57,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:26:57,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:26:57,287 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 14155776}
2022-05-12 22:26:57,288 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:57,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:26:57,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:57,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:26:57,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:26:57,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 20447232}
2022-05-12 22:26:57,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:58,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63176704}) to executor  for transfer request: 0.
2022-05-12 22:26:58,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:58,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) about to wait for the following futures []
2022-05-12 22:26:58,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) done waiting for dependent futures
2022-05-12 22:26:58,146 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63176704}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 63176704}
2022-05-12 22:26:58,147 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:58,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:26:58,514 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:58,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:26:58,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:26:58,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 4456448}
2022-05-12 22:26:58,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:58,957 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:26:58,958 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:58,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:26:58,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:26:58,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3932160}
2022-05-12 22:26:58,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:02,399 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55574528}) to executor  for transfer request: 0.
2022-05-12 22:27:02,399 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:02,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) about to wait for the following futures []
2022-05-12 22:27:02,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) done waiting for dependent futures
2022-05-12 22:27:02,400 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55574528}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 55574528}
2022-05-12 22:27:02,400 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:02,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71565312}) to executor  for transfer request: 0.
2022-05-12 22:27:02,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:02,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) about to wait for the following futures []
2022-05-12 22:27:02,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) done waiting for dependent futures
2022-05-12 22:27:02,908 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71565312}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 71565312}
2022-05-12 22:27:02,909 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:03,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:27:03,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:03,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:27:03,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:27:03,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 14942208}
2022-05-12 22:27:03,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:04,091 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80740352}) to executor  for transfer request: 0.
2022-05-12 22:27:04,091 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:04,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) about to wait for the following futures []
2022-05-12 22:27:04,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) done waiting for dependent futures
2022-05-12 22:27:04,092 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80740352}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 80740352}
2022-05-12 22:27:04,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:04,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47972352}) to executor  for transfer request: 0.
2022-05-12 22:27:04,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:04,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) about to wait for the following futures []
2022-05-12 22:27:04,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) done waiting for dependent futures
2022-05-12 22:27:04,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47972352}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 47972352}
2022-05-12 22:27:04,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:04,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:27:04,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:04,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:27:04,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:27:04,496 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 14155776}
2022-05-12 22:27:04,497 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:06,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:27:06,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:06,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:27:06,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:27:06,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 4980736}
2022-05-12 22:27:06,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:08,199 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:27:08,199 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:08,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:27:08,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:27:08,200 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 4718592}
2022-05-12 22:27:08,200 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:09,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:27:09,029 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:09,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:27:09,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:27:09,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 22020096}
2022-05-12 22:27:09,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:09,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63438848}) to executor  for transfer request: 0.
2022-05-12 22:27:09,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:09,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) about to wait for the following futures []
2022-05-12 22:27:09,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) done waiting for dependent futures
2022-05-12 22:27:09,926 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63438848}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 63438848}
2022-05-12 22:27:09,927 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:10,043 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:27:10,043 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:10,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:27:10,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:27:10,044 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 14417920}
2022-05-12 22:27:10,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:11,531 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:27:11,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:11,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:27:11,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:27:11,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 20709376}
2022-05-12 22:27:11,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:12,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38273024}) to executor  for transfer request: 0.
2022-05-12 22:27:12,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:12,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) about to wait for the following futures []
2022-05-12 22:27:12,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) done waiting for dependent futures
2022-05-12 22:27:12,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38273024}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 38273024}
2022-05-12 22:27:12,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:12,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:27:12,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:12,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:27:12,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:27:12,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 1048576}
2022-05-12 22:27:12,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,654 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:27:13,654 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,655 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:27:13,655 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:27:13,655 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 21495808}
2022-05-12 22:27:13,655 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71827456}) to executor  for transfer request: 0.
2022-05-12 22:27:13,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) about to wait for the following futures []
2022-05-12 22:27:13,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) done waiting for dependent futures
2022-05-12 22:27:13,811 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71827456}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 71827456}
2022-05-12 22:27:13,811 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:15,995 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:27:15,996 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:15,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:27:15,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:27:15,996 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 15204352}
2022-05-12 22:27:15,997 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,191 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:27:16,191 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:27:16,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:27:16,192 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 5242880}
2022-05-12 22:27:16,192 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81002496}) to executor  for transfer request: 0.
2022-05-12 22:27:16,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) about to wait for the following futures []
2022-05-12 22:27:16,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) done waiting for dependent futures
2022-05-12 22:27:16,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81002496}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 81002496}
2022-05-12 22:27:16,462 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,656 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48234496}) to executor  for transfer request: 0.
2022-05-12 22:27:16,656 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) about to wait for the following futures []
2022-05-12 22:27:16,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) done waiting for dependent futures
2022-05-12 22:27:16,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48234496}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 48234496}
2022-05-12 22:27:16,657 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:20,689 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:27:20,689 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:20,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:27:20,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:27:20,690 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 4980736}
2022-05-12 22:27:20,690 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:20,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:27:20,834 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:20,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:27:20,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:27:20,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 27787264}
2022-05-12 22:27:20,835 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:21,740 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72089600}) to executor  for transfer request: 0.
2022-05-12 22:27:21,740 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:21,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) about to wait for the following futures []
2022-05-12 22:27:21,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) done waiting for dependent futures
2022-05-12 22:27:21,741 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72089600}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 72089600}
2022-05-12 22:27:21,741 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:21,892 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:27:21,892 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:21,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:27:21,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:27:21,893 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 14680064}
2022-05-12 22:27:21,893 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:22,331 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:27:22,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:22,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:27:22,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:27:22,332 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 14417920}
2022-05-12 22:27:22,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:23,230 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:27:23,230 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:23,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:27:23,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:27:23,231 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 22282240}
2022-05-12 22:27:23,231 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:23,936 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63700992}) to executor  for transfer request: 0.
2022-05-12 22:27:23,936 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:23,937 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) about to wait for the following futures []
2022-05-12 22:27:23,937 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) done waiting for dependent futures
2022-05-12 22:27:23,937 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63700992}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 63700992}
2022-05-12 22:27:23,937 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:27:25,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:27:25,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:27:25,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 15466496}
2022-05-12 22:27:25,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:26,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:27:26,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:26,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:27:26,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:27:26,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 11010048}
2022-05-12 22:27:26,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:27,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:27:27,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:27,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:27:27,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:27:27,760 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 20971520}
2022-05-12 22:27:27,760 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,478 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81264640}) to executor  for transfer request: 0.
2022-05-12 22:27:28,478 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) about to wait for the following futures []
2022-05-12 22:27:28,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) done waiting for dependent futures
2022-05-12 22:27:28,479 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81264640}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 81264640}
2022-05-12 22:27:28,479 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48496640}) to executor  for transfer request: 0.
2022-05-12 22:27:28,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) about to wait for the following futures []
2022-05-12 22:27:28,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) done waiting for dependent futures
2022-05-12 22:27:28,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48496640}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 48496640}
2022-05-12 22:27:28,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:30,284 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72351744}) to executor  for transfer request: 0.
2022-05-12 22:27:30,284 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:30,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) about to wait for the following futures []
2022-05-12 22:27:30,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) done waiting for dependent futures
2022-05-12 22:27:30,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72351744}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 72351744}
2022-05-12 22:27:30,285 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:30,365 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:27:30,365 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:30,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:27:30,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:27:30,366 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 5505024}
2022-05-12 22:27:30,366 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:32,261 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:27:32,261 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:32,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:27:32,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:27:32,262 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 14942208}
2022-05-12 22:27:32,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:33,403 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:27:33,403 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:33,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:27:33,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:27:33,404 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 5242880}
2022-05-12 22:27:33,404 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,188 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:27:34,188 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:27:34,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:27:34,188 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 15728640}
2022-05-12 22:27:34,189 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55836672}) to executor  for transfer request: 0.
2022-05-12 22:27:34,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) about to wait for the following futures []
2022-05-12 22:27:34,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) done waiting for dependent futures
2022-05-12 22:27:34,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55836672}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 55836672}
2022-05-12 22:27:34,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63963136}) to executor  for transfer request: 0.
2022-05-12 22:27:37,315 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,315 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) about to wait for the following futures []
2022-05-12 22:27:37,315 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) done waiting for dependent futures
2022-05-12 22:27:37,315 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63963136}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 63963136}
2022-05-12 22:27:37,316 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:27:40,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:27:40,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:27:40,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 21757952}
2022-05-12 22:27:40,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,207 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81526784}) to executor  for transfer request: 0.
2022-05-12 22:27:40,207 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) about to wait for the following futures []
2022-05-12 22:27:40,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) done waiting for dependent futures
2022-05-12 22:27:40,208 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81526784}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 81526784}
2022-05-12 22:27:40,208 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,670 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48758784}) to executor  for transfer request: 0.
2022-05-12 22:27:40,670 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) about to wait for the following futures []
2022-05-12 22:27:40,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) done waiting for dependent futures
2022-05-12 22:27:40,671 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48758784}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 48758784}
2022-05-12 22:27:40,671 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:27:40,841 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:27:40,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:27:40,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 14680064}
2022-05-12 22:27:40,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,882 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72613888}) to executor  for transfer request: 0.
2022-05-12 22:27:40,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) about to wait for the following futures []
2022-05-12 22:27:40,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) done waiting for dependent futures
2022-05-12 22:27:40,883 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72613888}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 72613888}
2022-05-12 22:27:40,883 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,910 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:27:40,911 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:27:40,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:27:40,911 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4194304}
2022-05-12 22:27:40,912 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,485 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:27:41,486 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:27:41,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:27:41,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 5767168}
2022-05-12 22:27:41,487 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,573 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:27:41,573 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:27:41,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:27:41,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 15204352}
2022-05-12 22:27:41,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:27:41,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:27:41,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:27:41,649 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 11272192}
2022-05-12 22:27:41,650 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:42,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:27:42,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:42,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:27:42,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:27:42,371 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 5505024}
2022-05-12 22:27:42,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:27:45,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:45,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:27:45,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:27:45,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 15990784}
2022-05-12 22:27:45,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:46,484 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64225280}) to executor  for transfer request: 0.
2022-05-12 22:27:46,484 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:46,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) about to wait for the following futures []
2022-05-12 22:27:46,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) done waiting for dependent futures
2022-05-12 22:27:46,485 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64225280}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 64225280}
2022-05-12 22:27:46,485 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:46,923 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:27:46,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:46,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:27:46,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:27:46,924 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 22544384}
2022-05-12 22:27:46,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:47,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:27:47,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:47,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:27:47,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:27:47,179 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 21233664}
2022-05-12 22:27:47,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:48,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72876032}) to executor  for transfer request: 0.
2022-05-12 22:27:48,841 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:48,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) about to wait for the following futures []
2022-05-12 22:27:48,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) done waiting for dependent futures
2022-05-12 22:27:48,841 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72876032}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 72876032}
2022-05-12 22:27:48,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:52,456 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38535168}) to executor  for transfer request: 0.
2022-05-12 22:27:52,457 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:52,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) about to wait for the following futures []
2022-05-12 22:27:52,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) done waiting for dependent futures
2022-05-12 22:27:52,457 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38535168}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 38535168}
2022-05-12 22:27:52,457 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:52,865 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:27:52,866 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:52,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:27:52,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:27:52,866 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 15466496}
2022-05-12 22:27:52,866 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:52,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81788928}) to executor  for transfer request: 0.
2022-05-12 22:27:52,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:52,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) about to wait for the following futures []
2022-05-12 22:27:52,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) done waiting for dependent futures
2022-05-12 22:27:52,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81788928}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 81788928}
2022-05-12 22:27:52,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:53,528 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49020928}) to executor  for transfer request: 0.
2022-05-12 22:27:53,528 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:53,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) about to wait for the following futures []
2022-05-12 22:27:53,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) done waiting for dependent futures
2022-05-12 22:27:53,529 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49020928}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 49020928}
2022-05-12 22:27:53,529 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:54,202 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:27:54,202 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:54,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:27:54,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:27:54,203 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 6029312}
2022-05-12 22:27:54,203 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:27:55,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:27:55,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:27:55,484 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 16252928}
2022-05-12 22:27:55,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,593 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:27:56,593 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:27:56,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:27:56,593 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 11534336}
2022-05-12 22:27:56,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:27:56,611 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:27:56,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:27:56,611 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 5767168}
2022-05-12 22:27:56,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:27:56,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:27:56,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:27:56,948 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 21495808}
2022-05-12 22:27:56,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56098816}) to executor  for transfer request: 0.
2022-05-12 22:27:56,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) about to wait for the following futures []
2022-05-12 22:27:56,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) done waiting for dependent futures
2022-05-12 22:27:56,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56098816}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 56098816}
2022-05-12 22:27:56,970 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:58,719 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73138176}) to executor  for transfer request: 0.
2022-05-12 22:27:58,719 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:58,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) about to wait for the following futures []
2022-05-12 22:27:58,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) done waiting for dependent futures
2022-05-12 22:27:58,720 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73138176}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 73138176}
2022-05-12 22:27:58,720 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:59,373 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64487424}) to executor  for transfer request: 0.
2022-05-12 22:27:59,373 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:59,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) about to wait for the following futures []
2022-05-12 22:27:59,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) done waiting for dependent futures
2022-05-12 22:27:59,374 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64487424}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 64487424}
2022-05-12 22:27:59,374 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:01,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:28:01,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:01,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:28:01,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:28:01,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 22806528}
2022-05-12 22:28:01,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:03,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:28:03,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:03,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:28:03,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:28:03,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 14942208}
2022-05-12 22:28:03,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:04,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:28:04,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:04,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:28:04,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:28:04,269 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 15728640}
2022-05-12 22:28:04,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:04,983 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:28:04,983 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:04,983 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:04,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:28:04,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:28:04,984 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 16515072}
2022-05-12 22:28:04,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:28:05,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:28:05,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:28:05,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 6291456}
2022-05-12 22:28:05,048 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:07,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82051072}) to executor  for transfer request: 0.
2022-05-12 22:28:07,564 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:07,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) about to wait for the following futures []
2022-05-12 22:28:07,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) done waiting for dependent futures
2022-05-12 22:28:07,565 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82051072}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 82051072}
2022-05-12 22:28:07,565 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,602 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73400320}) to executor  for transfer request: 0.
2022-05-12 22:28:08,602 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:08,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) about to wait for the following futures []
2022-05-12 22:28:08,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) done waiting for dependent futures
2022-05-12 22:28:08,603 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73400320}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 73400320}
2022-05-12 22:28:08,603 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:09,349 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:28:09,349 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:09,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:28:09,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:28:09,350 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 6029312}
2022-05-12 22:28:09,350 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:09,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:28:09,377 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:09,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:28:09,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:28:09,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 15990784}
2022-05-12 22:28:09,378 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:09,808 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49283072}) to executor  for transfer request: 0.
2022-05-12 22:28:09,809 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:09,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) about to wait for the following futures []
2022-05-12 22:28:09,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) done waiting for dependent futures
2022-05-12 22:28:09,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49283072}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 49283072}
2022-05-12 22:28:09,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:10,862 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:28:10,863 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:10,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:28:10,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:28:10,863 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 21757952}
2022-05-12 22:28:10,864 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,057 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:28:12,057 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:12,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:28:12,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:28:12,058 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 22020096}
2022-05-12 22:28:12,058 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,449 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64749568}) to executor  for transfer request: 0.
2022-05-12 22:28:12,449 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:12,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) about to wait for the following futures []
2022-05-12 22:28:12,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) done waiting for dependent futures
2022-05-12 22:28:12,450 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64749568}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 64749568}
2022-05-12 22:28:12,450 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:15,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:28:15,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:15,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:28:15,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:28:15,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 23068672}
2022-05-12 22:28:15,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:15,799 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38797312}) to executor  for transfer request: 0.
2022-05-12 22:28:15,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:15,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) about to wait for the following futures []
2022-05-12 22:28:15,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) done waiting for dependent futures
2022-05-12 22:28:15,800 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38797312}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 38797312}
2022-05-12 22:28:15,800 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73662464}) to executor  for transfer request: 0.
2022-05-12 22:28:16,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) about to wait for the following futures []
2022-05-12 22:28:16,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) done waiting for dependent futures
2022-05-12 22:28:16,252 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73662464}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 73662464}
2022-05-12 22:28:16,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,503 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:28:16,504 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:28:16,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:28:16,504 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 28049408}
2022-05-12 22:28:16,505 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:17,214 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:28:17,214 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:17,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:28:17,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:28:17,215 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4456448}
2022-05-12 22:28:17,215 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:17,604 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82313216}) to executor  for transfer request: 0.
2022-05-12 22:28:17,604 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:17,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) about to wait for the following futures []
2022-05-12 22:28:17,605 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) done waiting for dependent futures
2022-05-12 22:28:17,605 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82313216}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 82313216}
2022-05-12 22:28:17,605 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:18,039 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:28:18,040 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:18,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:28:18,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:28:18,040 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 6553600}
2022-05-12 22:28:18,041 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:18,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:28:18,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:18,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:28:18,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:28:18,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 16252928}
2022-05-12 22:28:18,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:18,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:28:18,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:18,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:28:18,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:28:18,787 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 11796480}
2022-05-12 22:28:18,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,746 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:28:19,746 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:28:19,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:28:19,746 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 15204352}
2022-05-12 22:28:19,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:28:19,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:28:19,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:28:19,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 6291456}
2022-05-12 22:28:19,810 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:20,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49545216}) to executor  for transfer request: 0.
2022-05-12 22:28:20,796 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:20,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) about to wait for the following futures []
2022-05-12 22:28:20,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) done waiting for dependent futures
2022-05-12 22:28:20,797 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49545216}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 49545216}
2022-05-12 22:28:20,797 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:21,057 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56360960}) to executor  for transfer request: 0.
2022-05-12 22:28:21,057 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:21,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) about to wait for the following futures []
2022-05-12 22:28:21,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) done waiting for dependent futures
2022-05-12 22:28:21,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56360960}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 56360960}
2022-05-12 22:28:21,058 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,977 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73924608}) to executor  for transfer request: 0.
2022-05-12 22:28:22,978 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:22,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) about to wait for the following futures []
2022-05-12 22:28:22,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) done waiting for dependent futures
2022-05-12 22:28:22,978 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73924608}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 73924608}
2022-05-12 22:28:22,979 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:23,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:28:23,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:23,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:28:23,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:28:23,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 22020096}
2022-05-12 22:28:23,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,103 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:28:25,103 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:28:25,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:28:25,104 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17301504}
2022-05-12 22:28:25,105 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65011712}) to executor  for transfer request: 0.
2022-05-12 22:28:25,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) about to wait for the following futures []
2022-05-12 22:28:25,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) done waiting for dependent futures
2022-05-12 22:28:25,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65011712}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 65011712}
2022-05-12 22:28:25,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,764 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:28:25,764 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,764 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:28:25,765 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) about to wait for the following futures []
2022-05-12 22:28:25,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:28:25,765 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) done waiting for dependent futures
2022-05-12 22:28:25,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 16515072}
2022-05-12 22:28:25,766 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=83886080-92274687'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 83886080, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:28:25,766 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:25,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:25,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:25,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:25,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:25,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:25,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:28:25,767 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:28:25,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:25,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:25,767 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=83886080-92274687', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:28:25,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:25,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:28:25,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:25,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:25,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:28:25,768 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:28:25,768 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:28:25,768 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:28:25,768 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:28:25,768 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=83886080-92274687
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222825Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:28:25,768 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222825Z
20220512/eu-central-1/s3/aws4_request
bfe49f7cca32a90964041588ed87337741688093ad6ddbbff012e12dbffaed85
2022-05-12 22:28:25,768 botocore.auth DEBUG    Signature:
2312f569d677278d3173600480f5e0bffdb03584fcbdc064efb451072981f487
2022-05-12 22:28:25,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:25,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:25,768 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:28:25,769 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:28:25,988 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:28:25,989 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '74Ancxy/ue8LVBA6YaN8CT9Cy5Zu3xZkVR10WjhkLxzqw/PE3xA9M7A9RoxhxE2e1xLdtYJ0wW8=', 'x-amz-request-id': 'WRYNZ1ZVD9JT6Q4N', 'Date': 'Thu, 12 May 2022 22:28:26 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 83886080-92274687/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:28:25,989 botocore.parsers DEBUG    Response body:

2022-05-12 22:28:25,990 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:28:25,990 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:28:25,990 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:28:26,434 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:28:26,434 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:26,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:28:26,435 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:28:26,435 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 6553600}
2022-05-12 22:28:26,435 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:28,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39059456}) to executor  for transfer request: 0.
2022-05-12 22:28:28,683 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:28,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) about to wait for the following futures []
2022-05-12 22:28:28,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) done waiting for dependent futures
2022-05-12 22:28:28,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39059456}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 39059456}
2022-05-12 22:28:28,684 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:29,768 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82575360}) to executor  for transfer request: 0.
2022-05-12 22:28:29,768 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,768 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) about to wait for the following futures []
2022-05-12 22:28:29,768 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) done waiting for dependent futures
2022-05-12 22:28:29,768 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82575360}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 82575360}
2022-05-12 22:28:29,769 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:30,438 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:28:30,438 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:30,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:28:30,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:28:30,439 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 23330816}
2022-05-12 22:28:30,439 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:33,277 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:28:33,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:33,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:28:33,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:28:33,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 6815744}
2022-05-12 22:28:33,278 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:33,406 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49807360}) to executor  for transfer request: 0.
2022-05-12 22:28:33,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:33,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) about to wait for the following futures []
2022-05-12 22:28:33,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) done waiting for dependent futures
2022-05-12 22:28:33,406 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49807360}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 49807360}
2022-05-12 22:28:33,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:33,573 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83886080}) to executor  for transfer request: 0.
2022-05-12 22:28:33,573 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:33,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) about to wait for the following futures []
2022-05-12 22:28:33,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) done waiting for dependent futures
2022-05-12 22:28:33,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83886080}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 83886080}
2022-05-12 22:28:33,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,484 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:28:34,485 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:28:34,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:28:34,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 12058624}
2022-05-12 22:28:34,486 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74186752}) to executor  for transfer request: 0.
2022-05-12 22:28:34,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) about to wait for the following futures []
2022-05-12 22:28:34,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) done waiting for dependent futures
2022-05-12 22:28:34,787 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74186752}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 74186752}
2022-05-12 22:28:34,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65273856}) to executor  for transfer request: 0.
2022-05-12 22:28:35,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) about to wait for the following futures []
2022-05-12 22:28:35,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) done waiting for dependent futures
2022-05-12 22:28:35,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65273856}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 65273856}
2022-05-12 22:28:35,630 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:37,158 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:28:37,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:37,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:28:37,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:28:37,159 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 6815744}
2022-05-12 22:28:37,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:38,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:28:38,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:38,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:28:38,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:28:38,167 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 15466496}
2022-05-12 22:28:38,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:38,794 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:28:38,794 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:38,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:28:38,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:28:38,795 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17563648}
2022-05-12 22:28:38,795 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:39,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39321600}) to executor  for transfer request: 0.
2022-05-12 22:28:39,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:39,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) about to wait for the following futures []
2022-05-12 22:28:39,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) done waiting for dependent futures
2022-05-12 22:28:39,512 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39321600}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 39321600}
2022-05-12 22:28:39,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82837504}) to executor  for transfer request: 0.
2022-05-12 22:28:40,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,427 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) about to wait for the following futures []
2022-05-12 22:28:40,427 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) done waiting for dependent futures
2022-05-12 22:28:40,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82837504}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 82837504}
2022-05-12 22:28:40,428 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:41,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:28:41,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:41,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:28:41,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:28:41,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 7077888}
2022-05-12 22:28:41,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:43,213 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:28:43,213 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:43,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:28:43,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:28:43,214 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 12320768}
2022-05-12 22:28:43,214 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:43,313 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84148224}) to executor  for transfer request: 0.
2022-05-12 22:28:43,313 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:43,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) about to wait for the following futures []
2022-05-12 22:28:43,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) done waiting for dependent futures
2022-05-12 22:28:43,314 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84148224}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 84148224}
2022-05-12 22:28:43,314 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:43,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:28:43,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:43,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:28:43,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:28:43,597 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 22282240}
2022-05-12 22:28:43,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:28:44,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:28:44,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:28:44,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 22282240}
2022-05-12 22:28:44,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,067 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56623104}) to executor  for transfer request: 0.
2022-05-12 22:28:44,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) about to wait for the following futures []
2022-05-12 22:28:44,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) done waiting for dependent futures
2022-05-12 22:28:44,068 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56623104}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 56623104}
2022-05-12 22:28:44,069 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,618 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74448896}) to executor  for transfer request: 0.
2022-05-12 22:28:44,618 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) about to wait for the following futures []
2022-05-12 22:28:44,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) done waiting for dependent futures
2022-05-12 22:28:44,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74448896}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 74448896}
2022-05-12 22:28:44,619 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:46,279 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50069504}) to executor  for transfer request: 0.
2022-05-12 22:28:46,279 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:46,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:46,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) about to wait for the following futures []
2022-05-12 22:28:46,280 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) about to wait for the following futures []
2022-05-12 22:28:46,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) done waiting for dependent futures
2022-05-12 22:28:46,280 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) done waiting for dependent futures
2022-05-12 22:28:46,280 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50069504}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 50069504}
2022-05-12 22:28:46,280 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=92274688-100663295'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 92274688, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:28:46,280 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:46,280 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:46,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:46,280 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:46,280 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:46,280 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:46,280 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:46,281 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:28:46,281 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:28:46,281 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:46,281 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:46,281 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=92274688-100663295', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:28:46,281 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:46,281 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:28:46,281 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:46,281 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:46,281 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:28:46,281 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:28:46,281 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:28:46,281 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:28:46,281 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:28:46,281 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=92274688-100663295
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222846Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:28:46,281 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222846Z
20220512/eu-central-1/s3/aws4_request
a0c0479d8252a97173d71af15f5311449f3ec16af35c6e620608fd85706352be
2022-05-12 22:28:46,281 botocore.auth DEBUG    Signature:
d981130e2d8d1a083bcdc92491f9535b1bbbbf07357504c43e69693473aabda0
2022-05-12 22:28:46,282 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:46,282 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:46,282 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:28:46,282 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:28:46,491 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:28:46,491 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HaUAlr/9aFbRXi8ucOnSGgIrSy5EazTX7EkcVXfXceCbt0/Tymg5JwBTEr6nim6BW5d9BtUZi2Y=', 'x-amz-request-id': 'CGVS1GV4MK5BWPFN', 'Date': 'Thu, 12 May 2022 22:28:47 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 92274688-100663295/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:28:46,491 botocore.parsers DEBUG    Response body:

2022-05-12 22:28:46,492 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:28:46,492 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:28:46,492 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:28:46,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:28:46,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:46,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:28:46,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:28:46,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 23592960}
2022-05-12 22:28:46,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:47,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65536000}) to executor  for transfer request: 0.
2022-05-12 22:28:47,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:47,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) about to wait for the following futures []
2022-05-12 22:28:47,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) done waiting for dependent futures
2022-05-12 22:28:47,179 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65536000}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 65536000}
2022-05-12 22:28:47,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:47,354 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:28:47,354 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:47,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:28:47,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:28:47,354 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 7077888}
2022-05-12 22:28:47,355 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:49,469 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:28:49,469 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:49,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:28:49,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:28:49,470 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 15728640}
2022-05-12 22:28:49,470 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:51,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74711040}) to executor  for transfer request: 0.
2022-05-12 22:28:51,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:51,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) about to wait for the following futures []
2022-05-12 22:28:51,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) done waiting for dependent futures
2022-05-12 22:28:51,858 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74711040}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 74711040}
2022-05-12 22:28:51,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:52,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:28:52,637 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:52,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:28:52,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:28:52,637 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17825792}
2022-05-12 22:28:52,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:52,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39583744}) to executor  for transfer request: 0.
2022-05-12 22:28:52,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:52,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) about to wait for the following futures []
2022-05-12 22:28:52,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) done waiting for dependent futures
2022-05-12 22:28:52,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39583744}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 39583744}
2022-05-12 22:28:52,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:54,214 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:28:54,214 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:54,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:28:54,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:28:54,215 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 22544384}
2022-05-12 22:28:54,216 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:54,619 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84410368}) to executor  for transfer request: 0.
2022-05-12 22:28:54,619 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:54,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) about to wait for the following futures []
2022-05-12 22:28:54,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) done waiting for dependent futures
2022-05-12 22:28:54,620 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84410368}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 84410368}
2022-05-12 22:28:54,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:54,911 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:54,911 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:54,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:54,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:54,912 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 7340032}
2022-05-12 22:28:54,912 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:55,623 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:55,623 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:55,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:55,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:55,623 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 7340032}
2022-05-12 22:28:55,624 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83099648}) to executor  for transfer request: 0.
2022-05-12 22:28:56,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) about to wait for the following futures []
2022-05-12 22:28:56,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) done waiting for dependent futures
2022-05-12 22:28:56,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83099648}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 83099648}
2022-05-12 22:28:56,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:28:56,253 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:28:56,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:28:56,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4718592}
2022-05-12 22:28:56,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,642 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:28:57,642 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:28:57,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:28:57,643 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 23855104}
2022-05-12 22:28:57,643 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,764 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92274688}) to executor  for transfer request: 0.
2022-05-12 22:28:57,765 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) about to wait for the following futures []
2022-05-12 22:28:57,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) done waiting for dependent futures
2022-05-12 22:28:57,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92274688}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 92274688}
2022-05-12 22:28:57,766 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,787 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56885248}) to executor  for transfer request: 0.
2022-05-12 22:28:57,787 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) about to wait for the following futures []
2022-05-12 22:28:57,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) done waiting for dependent futures
2022-05-12 22:28:57,788 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56885248}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 56885248}
2022-05-12 22:28:57,788 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:58,386 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65798144}) to executor  for transfer request: 0.
2022-05-12 22:28:58,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:58,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) about to wait for the following futures []
2022-05-12 22:28:58,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) done waiting for dependent futures
2022-05-12 22:28:58,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65798144}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 65798144}
2022-05-12 22:28:58,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:59,091 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:28:59,091 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:59,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:28:59,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:28:59,091 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 12582912}
2022-05-12 22:28:59,092 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:59,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74973184}) to executor  for transfer request: 0.
2022-05-12 22:28:59,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:59,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) about to wait for the following futures []
2022-05-12 22:28:59,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) done waiting for dependent futures
2022-05-12 22:28:59,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74973184}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 74973184}
2022-05-12 22:28:59,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:01,142 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:29:01,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:01,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:29:01,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:29:01,143 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 7602176}
2022-05-12 22:29:01,143 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:01,232 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:29:01,232 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:01,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:29:01,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:29:01,233 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 28311552}
2022-05-12 22:29:01,233 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84672512}) to executor  for transfer request: 0.
2022-05-12 22:29:02,908 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:02,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) about to wait for the following futures []
2022-05-12 22:29:02,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) done waiting for dependent futures
2022-05-12 22:29:02,908 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84672512}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 84672512}
2022-05-12 22:29:02,909 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:03,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83361792}) to executor  for transfer request: 0.
2022-05-12 22:29:03,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:03,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) about to wait for the following futures []
2022-05-12 22:29:03,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) done waiting for dependent futures
2022-05-12 22:29:03,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83361792}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 83361792}
2022-05-12 22:29:03,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:03,835 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39845888}) to executor  for transfer request: 0.
2022-05-12 22:29:03,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:03,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) about to wait for the following futures []
2022-05-12 22:29:03,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) done waiting for dependent futures
2022-05-12 22:29:03,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39845888}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 39845888}
2022-05-12 22:29:03,835 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,188 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:29:07,188 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:29:07,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:29:07,189 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 22806528}
2022-05-12 22:29:07,189 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,288 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75235328}) to executor  for transfer request: 0.
2022-05-12 22:29:07,289 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,289 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) about to wait for the following futures []
2022-05-12 22:29:07,289 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) about to wait for the following futures []
2022-05-12 22:29:07,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) done waiting for dependent futures
2022-05-12 22:29:07,289 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) done waiting for dependent futures
2022-05-12 22:29:07,289 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75235328}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 75235328}
2022-05-12 22:29:07,289 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=100663296-109051903'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 100663296, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:07,289 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:07,290 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:07,290 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=100663296-109051903', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:07,290 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:07,290 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:07,290 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:07,290 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:07,291 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=100663296-109051903
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222907Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:07,291 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222907Z
20220512/eu-central-1/s3/aws4_request
a338a45486042e22b10a0c1d82d5ddb87efc61c697659e1050f44d76f7c1339a
2022-05-12 22:29:07,291 botocore.auth DEBUG    Signature:
f71b89b302bc4c09ec105581e50b1a4cb0b16de8ff638dfd5af7e8e02bfb062a
2022-05-12 22:29:07,291 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:07,291 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:07,291 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:07,291 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:07,291 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,481 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:07,482 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '5b3Xdn+UdHcF/I3kt2BG8qMEMFhijIPlkIoKOPlvPrwulljBk6Vw0Q8mI1D1wKZ4OVo48aliLho=', 'x-amz-request-id': 'WM5SX05157QS3V8S', 'Date': 'Thu, 12 May 2022 22:29:08 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 100663296-109051903/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:07,482 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:07,482 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:07,483 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:07,483 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:07,503 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92536832}) to executor  for transfer request: 0.
2022-05-12 22:29:07,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) about to wait for the following futures []
2022-05-12 22:29:07,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) done waiting for dependent futures
2022-05-12 22:29:07,504 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92536832}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 92536832}
2022-05-12 22:29:07,504 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:29:09,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:29:09,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:29:09,243 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 24117248}
2022-05-12 22:29:09,243 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,375 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:29:09,375 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:29:09,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:29:09,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18087936}
2022-05-12 22:29:09,375 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:10,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66060288}) to executor  for transfer request: 0.
2022-05-12 22:29:10,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:10,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) about to wait for the following futures []
2022-05-12 22:29:10,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) done waiting for dependent futures
2022-05-12 22:29:10,881 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66060288}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 66060288}
2022-05-12 22:29:10,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:10,962 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:29:10,963 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:10,963 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:29:10,963 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:29:10,963 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 7864320}
2022-05-12 22:29:10,964 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:11,299 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84934656}) to executor  for transfer request: 0.
2022-05-12 22:29:11,299 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:11,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) about to wait for the following futures []
2022-05-12 22:29:11,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) done waiting for dependent futures
2022-05-12 22:29:11,300 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84934656}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 84934656}
2022-05-12 22:29:11,300 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:12,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:29:12,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:12,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:29:12,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:29:12,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 7602176}
2022-05-12 22:29:12,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:13,021 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83623936}) to executor  for transfer request: 0.
2022-05-12 22:29:13,021 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:13,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:13,022 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) about to wait for the following futures []
2022-05-12 22:29:13,022 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) done waiting for dependent futures
2022-05-12 22:29:13,022 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=109051904-117440511'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 109051904, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:13,022 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:13,022 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:13,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) about to wait for the following futures []
2022-05-12 22:29:13,022 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:13,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) done waiting for dependent futures
2022-05-12 22:29:13,023 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:13,023 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83623936}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 83623936}
2022-05-12 22:29:13,023 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:13,024 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:13,024 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:13,024 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:13,024 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:13,025 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:13,025 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:13,025 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=109051904-117440511', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:13,025 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:13,025 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:13,025 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:13,025 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:13,025 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:13,025 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:13,025 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:13,025 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:13,026 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:13,026 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=109051904-117440511
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222913Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:13,026 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222913Z
20220512/eu-central-1/s3/aws4_request
58c309a9d8f35e612edef6c274cace3ddad91bd7c4f8465677ad2443e809a692
2022-05-12 22:29:13,026 botocore.auth DEBUG    Signature:
c6906237c1db5c1b77270d436268c56f3ebdd9305006b758823f0d339c46ddfc
2022-05-12 22:29:13,026 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:13,026 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:13,026 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:13,026 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:13,075 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40108032}) to executor  for transfer request: 0.
2022-05-12 22:29:13,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:13,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) about to wait for the following futures []
2022-05-12 22:29:13,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) done waiting for dependent futures
2022-05-12 22:29:13,076 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40108032}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 40108032}
2022-05-12 22:29:13,076 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:13,214 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:13,215 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '0SZLrApq6GWQQTCTdLKXicoIlC3R8XzpEJX5N4MTyFenixl9dj0wsxLghqurTRjuEbc6weexSJk=', 'x-amz-request-id': '1XQXZ8CF2BASMJJ1', 'Date': 'Thu, 12 May 2022 22:29:14 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 109051904-117440511/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:13,215 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:13,216 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:13,216 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:13,216 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:14,062 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:29:14,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,063 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:29:14,063 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:29:14,063 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 23068672}
2022-05-12 22:29:14,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,429 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:29:14,430 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:29:14,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:29:14,430 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 22544384}
2022-05-12 22:29:14,430 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,228 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100663296}) to executor  for transfer request: 0.
2022-05-12 22:29:15,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) about to wait for the following futures []
2022-05-12 22:29:15,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) done waiting for dependent futures
2022-05-12 22:29:15,229 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100663296}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 100663296}
2022-05-12 22:29:15,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,712 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:29:15,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:29:15,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:29:15,713 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 12845056}
2022-05-12 22:29:15,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:16,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:29:16,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:16,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:29:16,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:29:16,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 15990784}
2022-05-12 22:29:16,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:18,281 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92798976}) to executor  for transfer request: 0.
2022-05-12 22:29:18,281 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:18,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) about to wait for the following futures []
2022-05-12 22:29:18,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) done waiting for dependent futures
2022-05-12 22:29:18,281 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92798976}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 92798976}
2022-05-12 22:29:18,282 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:18,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85196800}) to executor  for transfer request: 0.
2022-05-12 22:29:18,771 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:18,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) about to wait for the following futures []
2022-05-12 22:29:18,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) done waiting for dependent futures
2022-05-12 22:29:18,772 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85196800}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 85196800}
2022-05-12 22:29:18,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:20,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:29:20,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:20,427 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:29:20,427 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:29:20,427 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 24379392}
2022-05-12 22:29:20,428 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:20,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57147392}) to executor  for transfer request: 0.
2022-05-12 22:29:20,771 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:20,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) about to wait for the following futures []
2022-05-12 22:29:20,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) done waiting for dependent futures
2022-05-12 22:29:20,771 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57147392}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 57147392}
2022-05-12 22:29:20,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:29:21,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:21,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:29:21,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:29:21,389 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 8126464}
2022-05-12 22:29:21,390 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:22,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100925440}) to executor  for transfer request: 0.
2022-05-12 22:29:22,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:22,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) about to wait for the following futures []
2022-05-12 22:29:22,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) done waiting for dependent futures
2022-05-12 22:29:22,252 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100925440}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 100925440}
2022-05-12 22:29:22,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:22,489 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66322432}) to executor  for transfer request: 0.
2022-05-12 22:29:22,489 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:22,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) about to wait for the following futures []
2022-05-12 22:29:22,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) done waiting for dependent futures
2022-05-12 22:29:22,489 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66322432}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 66322432}
2022-05-12 22:29:22,489 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:22,608 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109051904}) to executor  for transfer request: 0.
2022-05-12 22:29:22,608 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:22,608 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) about to wait for the following futures []
2022-05-12 22:29:22,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) done waiting for dependent futures
2022-05-12 22:29:22,609 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109051904}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 109051904}
2022-05-12 22:29:22,609 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:24,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:29:24,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:24,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:29:24,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:29:24,359 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 23330816}
2022-05-12 22:29:24,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:26,211 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:29:26,211 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:26,211 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:29:26,211 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:29:26,212 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 7864320}
2022-05-12 22:29:26,212 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:26,951 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85458944}) to executor  for transfer request: 0.
2022-05-12 22:29:26,951 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:26,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) about to wait for the following futures []
2022-05-12 22:29:26,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) done waiting for dependent futures
2022-05-12 22:29:26,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85458944}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 85458944}
2022-05-12 22:29:26,952 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:29:27,138 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:27,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:29:27,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:29:27,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 13107200}
2022-05-12 22:29:27,139 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,481 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:29:27,482 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:27,482 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:29:27,482 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:29:27,482 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18350080}
2022-05-12 22:29:27,482 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:29,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101187584}) to executor  for transfer request: 0.
2022-05-12 22:29:29,329 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:29,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) about to wait for the following futures []
2022-05-12 22:29:29,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) done waiting for dependent futures
2022-05-12 22:29:29,329 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101187584}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 101187584}
2022-05-12 22:29:29,330 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:29,331 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93061120}) to executor  for transfer request: 0.
2022-05-12 22:29:29,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:29,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) about to wait for the following futures []
2022-05-12 22:29:29,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) done waiting for dependent futures
2022-05-12 22:29:29,332 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93061120}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 93061120}
2022-05-12 22:29:29,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:29,763 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40370176}) to executor  for transfer request: 0.
2022-05-12 22:29:29,763 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:29,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) about to wait for the following futures []
2022-05-12 22:29:29,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) done waiting for dependent futures
2022-05-12 22:29:29,764 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40370176}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 40370176}
2022-05-12 22:29:29,764 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:29,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:29:29,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:29,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:29:29,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:29:29,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 16252928}
2022-05-12 22:29:29,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:31,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66584576}) to executor  for transfer request: 0.
2022-05-12 22:29:31,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:31,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) about to wait for the following futures []
2022-05-12 22:29:31,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) done waiting for dependent futures
2022-05-12 22:29:31,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66584576}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 66584576}
2022-05-12 22:29:31,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:32,552 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:29:32,552 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:32,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:29:32,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:29:32,553 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 24641536}
2022-05-12 22:29:32,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:33,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109314048}) to executor  for transfer request: 0.
2022-05-12 22:29:33,138 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:33,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) about to wait for the following futures []
2022-05-12 22:29:33,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) done waiting for dependent futures
2022-05-12 22:29:33,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109314048}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 109314048}
2022-05-12 22:29:33,139 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:33,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:29:33,841 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:33,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:33,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:29:33,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:29:33,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 8126464}
2022-05-12 22:29:33,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:35,485 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85721088}) to executor  for transfer request: 0.
2022-05-12 22:29:35,486 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:35,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) about to wait for the following futures []
2022-05-12 22:29:35,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) done waiting for dependent futures
2022-05-12 22:29:35,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85721088}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 85721088}
2022-05-12 22:29:35,486 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:36,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57409536}) to executor  for transfer request: 0.
2022-05-12 22:29:36,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:36,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) about to wait for the following futures []
2022-05-12 22:29:36,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) done waiting for dependent futures
2022-05-12 22:29:36,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57409536}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 57409536}
2022-05-12 22:29:36,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:36,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:29:36,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:36,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:29:36,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:29:36,166 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 13369344}
2022-05-12 22:29:36,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:36,664 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:29:36,664 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:36,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:29:36,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:29:36,664 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4980736}
2022-05-12 22:29:36,665 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,821 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:29:37,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:29:37,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:29:37,822 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 23592960}
2022-05-12 22:29:37,822 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:38,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101449728}) to executor  for transfer request: 0.
2022-05-12 22:29:38,878 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:38,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) about to wait for the following futures []
2022-05-12 22:29:38,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) done waiting for dependent futures
2022-05-12 22:29:38,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101449728}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 101449728}
2022-05-12 22:29:38,879 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:38,987 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40632320}) to executor  for transfer request: 0.
2022-05-12 22:29:38,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:38,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) about to wait for the following futures []
2022-05-12 22:29:38,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) done waiting for dependent futures
2022-05-12 22:29:38,988 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40632320}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 40632320}
2022-05-12 22:29:38,988 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:40,285 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:29:40,285 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:40,285 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:40,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:29:40,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:29:40,286 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 16515072}
2022-05-12 22:29:40,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:40,334 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93323264}) to executor  for transfer request: 0.
2022-05-12 22:29:40,334 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:40,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) about to wait for the following futures []
2022-05-12 22:29:40,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) done waiting for dependent futures
2022-05-12 22:29:40,335 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93323264}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 93323264}
2022-05-12 22:29:40,335 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,501 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:29:41,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:29:41,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:29:41,502 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18612224}
2022-05-12 22:29:41,503 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109576192}) to executor  for transfer request: 0.
2022-05-12 22:29:41,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) about to wait for the following futures []
2022-05-12 22:29:41,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) done waiting for dependent futures
2022-05-12 22:29:41,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109576192}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 109576192}
2022-05-12 22:29:41,929 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:42,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:29:42,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:42,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:29:42,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:29:42,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 22806528}
2022-05-12 22:29:42,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:43,848 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:29:43,848 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:43,848 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:43,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:29:43,848 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) about to wait for the following futures []
2022-05-12 22:29:43,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:29:43,849 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) done waiting for dependent futures
2022-05-12 22:29:43,849 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 24903680}
2022-05-12 22:29:43,849 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=117440512-125829119'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 117440512, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:43,849 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:43,849 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:43,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:43,849 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:43,850 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:43,850 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:43,850 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:43,850 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:43,850 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:43,850 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:43,850 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:43,850 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=117440512-125829119', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:43,850 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:43,850 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:43,851 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:43,851 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:43,851 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:43,851 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:43,851 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:43,851 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:43,851 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:43,851 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=117440512-125829119
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222943Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:43,851 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222943Z
20220512/eu-central-1/s3/aws4_request
d2ade76671320d1871e604786fa54f34bbf6cf7824dbc31998e8d588e2ce69f0
2022-05-12 22:29:43,852 botocore.auth DEBUG    Signature:
3c025522c9a8ad70bae15173557b62b92fa7e11e0120d7c96851b03c860a1743
2022-05-12 22:29:43,852 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:43,852 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:43,852 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:43,852 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:44,007 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:44,007 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'eccF21SrKgBI6WJmmoyHlJ1MGxQxRmez3afUZXKHVHF6qVafLaoQc9fm0oUOENfZC/TUwsVtkc0=', 'x-amz-request-id': '6PY0BG89Q3928T4N', 'Date': 'Thu, 12 May 2022 22:29:44 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 117440512-125829119/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:44,008 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:44,008 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:44,008 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:44,009 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:46,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85983232}) to executor  for transfer request: 0.
2022-05-12 22:29:46,186 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:46,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) about to wait for the following futures []
2022-05-12 22:29:46,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) done waiting for dependent futures
2022-05-12 22:29:46,186 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85983232}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 85983232}
2022-05-12 22:29:46,187 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:46,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:29:46,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:46,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:29:46,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:29:46,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 13631488}
2022-05-12 22:29:46,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:47,406 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101711872}) to executor  for transfer request: 0.
2022-05-12 22:29:47,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:47,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) about to wait for the following futures []
2022-05-12 22:29:47,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) done waiting for dependent futures
2022-05-12 22:29:47,406 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101711872}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 101711872}
2022-05-12 22:29:47,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:47,508 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93585408}) to executor  for transfer request: 0.
2022-05-12 22:29:47,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:47,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) about to wait for the following futures []
2022-05-12 22:29:47,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) done waiting for dependent futures
2022-05-12 22:29:47,509 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93585408}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 93585408}
2022-05-12 22:29:47,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:47,887 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:29:47,888 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:47,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:29:47,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:29:47,888 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 23855104}
2022-05-12 22:29:47,889 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:47,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66846720}) to executor  for transfer request: 0.
2022-05-12 22:29:47,949 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:47,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:47,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) about to wait for the following futures []
2022-05-12 22:29:47,949 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) about to wait for the following futures []
2022-05-12 22:29:47,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) done waiting for dependent futures
2022-05-12 22:29:47,949 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) done waiting for dependent futures
2022-05-12 22:29:47,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66846720}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 66846720}
2022-05-12 22:29:47,949 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=125829120-134217727'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 125829120, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:47,950 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:47,950 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:47,950 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=125829120-134217727', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:47,950 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:47,951 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:47,951 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:47,951 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:47,951 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:29:47,951 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:47,951 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=125829120-134217727
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222947Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:47,951 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222947Z
20220512/eu-central-1/s3/aws4_request
6b9ce1aa4ce7ce89b3947fcc335fe8ed7474b1139d9f22f16646069bb920bccd
2022-05-12 22:29:47,951 botocore.auth DEBUG    Signature:
12838b48bbd3decfbcf83f4a2ca1e080b97737acc6841e444f76e2a61922936e
2022-05-12 22:29:47,951 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:47,951 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:47,951 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:47,951 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:48,127 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:48,127 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ANQiLz9/AoDKHIvQOi5rOYksC9wFE7v55CXSFdh1jm3kjc1Q6xY8K4KDHR8KvtLe0X16e0j9kxM=', 'x-amz-request-id': '2Y040QJ13YQW1868', 'Date': 'Thu, 12 May 2022 22:29:48 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 125829120-134217727/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:48,127 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:48,128 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:48,128 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:48,128 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:49,804 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57671680}) to executor  for transfer request: 0.
2022-05-12 22:29:49,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:49,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) about to wait for the following futures []
2022-05-12 22:29:49,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) done waiting for dependent futures
2022-05-12 22:29:49,805 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57671680}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 57671680}
2022-05-12 22:29:49,805 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:50,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109838336}) to executor  for transfer request: 0.
2022-05-12 22:29:50,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:50,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) about to wait for the following futures []
2022-05-12 22:29:50,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) done waiting for dependent futures
2022-05-12 22:29:50,560 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109838336}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 109838336}
2022-05-12 22:29:50,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,838 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117440512}) to executor  for transfer request: 0.
2022-05-12 22:29:51,838 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) about to wait for the following futures []
2022-05-12 22:29:51,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) done waiting for dependent futures
2022-05-12 22:29:51,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117440512}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 117440512}
2022-05-12 22:29:51,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:52,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40894464}) to executor  for transfer request: 0.
2022-05-12 22:29:52,315 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:52,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) about to wait for the following futures []
2022-05-12 22:29:52,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) done waiting for dependent futures
2022-05-12 22:29:52,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40894464}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 40894464}
2022-05-12 22:29:52,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:53,864 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101974016}) to executor  for transfer request: 0.
2022-05-12 22:29:53,864 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:53,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) about to wait for the following futures []
2022-05-12 22:29:53,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) done waiting for dependent futures
2022-05-12 22:29:53,865 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101974016}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 101974016}
2022-05-12 22:29:53,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:53,961 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:29:53,961 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:53,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:29:53,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:29:53,962 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 28573696}
2022-05-12 22:29:53,962 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:54,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93847552}) to executor  for transfer request: 0.
2022-05-12 22:29:54,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:54,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) about to wait for the following futures []
2022-05-12 22:29:54,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) done waiting for dependent futures
2022-05-12 22:29:54,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93847552}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 93847552}
2022-05-12 22:29:54,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:57,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:29:57,922 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:57,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:29:57,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:29:57,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 24117248}
2022-05-12 22:29:57,923 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:58,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86245376}) to executor  for transfer request: 0.
2022-05-12 22:29:58,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:58,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) about to wait for the following futures []
2022-05-12 22:29:58,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) done waiting for dependent futures
2022-05-12 22:29:58,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86245376}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 86245376}
2022-05-12 22:29:58,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:59,281 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125829120}) to executor  for transfer request: 0.
2022-05-12 22:29:59,281 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:59,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) about to wait for the following futures []
2022-05-12 22:29:59,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) done waiting for dependent futures
2022-05-12 22:29:59,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125829120}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 125829120}
2022-05-12 22:29:59,282 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:59,765 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:29:59,765 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:59,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:29:59,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:29:59,765 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 13893632}
2022-05-12 22:29:59,766 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,291 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110100480}) to executor  for transfer request: 0.
2022-05-12 22:30:00,292 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) about to wait for the following futures []
2022-05-12 22:30:00,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) done waiting for dependent futures
2022-05-12 22:30:00,292 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110100480}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 110100480}
2022-05-12 22:30:00,293 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102236160}) to executor  for transfer request: 0.
2022-05-12 22:30:02,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) about to wait for the following futures []
2022-05-12 22:30:02,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) done waiting for dependent futures
2022-05-12 22:30:02,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102236160}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 102236160}
2022-05-12 22:30:02,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:03,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:30:03,323 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:03,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:30:03,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:30:03,323 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18874368}
2022-05-12 22:30:03,324 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:03,516 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:30:03,516 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:03,517 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:30:03,517 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:30:03,517 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 23068672}
2022-05-12 22:30:03,517 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:04,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86507520}) to executor  for transfer request: 0.
2022-05-12 22:30:04,539 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:04,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) about to wait for the following futures []
2022-05-12 22:30:04,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) done waiting for dependent futures
2022-05-12 22:30:04,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86507520}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 86507520}
2022-05-12 22:30:04,540 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:05,555 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110362624}) to executor  for transfer request: 0.
2022-05-12 22:30:05,556 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:05,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) about to wait for the following futures []
2022-05-12 22:30:05,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) done waiting for dependent futures
2022-05-12 22:30:05,556 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110362624}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 110362624}
2022-05-12 22:30:05,557 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:06,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:30:06,310 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:06,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:30:06,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:30:06,311 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 1310720}
2022-05-12 22:30:06,311 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:06,653 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117702656}) to executor  for transfer request: 0.
2022-05-12 22:30:06,653 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:06,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) about to wait for the following futures []
2022-05-12 22:30:06,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) done waiting for dependent futures
2022-05-12 22:30:06,654 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117702656}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 117702656}
2022-05-12 22:30:06,654 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:06,890 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57933824}) to executor  for transfer request: 0.
2022-05-12 22:30:06,890 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:06,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) about to wait for the following futures []
2022-05-12 22:30:06,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) done waiting for dependent futures
2022-05-12 22:30:06,890 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57933824}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 57933824}
2022-05-12 22:30:06,891 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:06,969 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94109696}) to executor  for transfer request: 0.
2022-05-12 22:30:06,969 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:06,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) about to wait for the following futures []
2022-05-12 22:30:06,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) done waiting for dependent futures
2022-05-12 22:30:06,970 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94109696}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 94109696}
2022-05-12 22:30:06,970 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:08,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41156608}) to executor  for transfer request: 0.
2022-05-12 22:30:08,564 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:08,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) about to wait for the following futures []
2022-05-12 22:30:08,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) done waiting for dependent futures
2022-05-12 22:30:08,565 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41156608}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 41156608}
2022-05-12 22:30:08,565 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:10,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:30:10,029 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:10,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:30:10,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:30:10,029 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 14155776}
2022-05-12 22:30:10,029 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:10,257 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102498304}) to executor  for transfer request: 0.
2022-05-12 22:30:10,257 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:10,258 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) about to wait for the following futures []
2022-05-12 22:30:10,258 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) done waiting for dependent futures
2022-05-12 22:30:10,258 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102498304}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 102498304}
2022-05-12 22:30:10,258 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:10,585 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:30:10,585 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:10,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:30:10,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:30:10,586 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 24379392}
2022-05-12 22:30:10,586 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:11,220 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126091264}) to executor  for transfer request: 0.
2022-05-12 22:30:11,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:11,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) about to wait for the following futures []
2022-05-12 22:30:11,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) done waiting for dependent futures
2022-05-12 22:30:11,221 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126091264}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 126091264}
2022-05-12 22:30:11,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:12,333 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:30:12,333 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:12,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:30:12,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:30:12,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 5242880}
2022-05-12 22:30:12,334 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:12,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110624768}) to executor  for transfer request: 0.
2022-05-12 22:30:12,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:12,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) about to wait for the following futures []
2022-05-12 22:30:12,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) done waiting for dependent futures
2022-05-12 22:30:12,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110624768}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 110624768}
2022-05-12 22:30:12,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,205 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41418752}) to executor  for transfer request: 0.
2022-05-12 22:30:13,205 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) about to wait for the following futures []
2022-05-12 22:30:13,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) done waiting for dependent futures
2022-05-12 22:30:13,206 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41418752}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 41418752}
2022-05-12 22:30:13,206 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:14,223 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94371840}) to executor  for transfer request: 0.
2022-05-12 22:30:14,223 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:14,223 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) about to wait for the following futures []
2022-05-12 22:30:14,223 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) done waiting for dependent futures
2022-05-12 22:30:14,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94371840}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 94371840}
2022-05-12 22:30:14,224 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:14,952 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86769664}) to executor  for transfer request: 0.
2022-05-12 22:30:14,952 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:14,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) about to wait for the following futures []
2022-05-12 22:30:14,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) done waiting for dependent futures
2022-05-12 22:30:14,953 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86769664}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 86769664}
2022-05-12 22:30:14,953 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:15,434 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102760448}) to executor  for transfer request: 0.
2022-05-12 22:30:15,435 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:15,435 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) about to wait for the following futures []
2022-05-12 22:30:15,435 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) done waiting for dependent futures
2022-05-12 22:30:15,435 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102760448}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 102760448}
2022-05-12 22:30:15,435 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:15,794 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:30:15,794 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:15,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:30:15,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:30:15,795 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 14417920}
2022-05-12 22:30:15,795 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:15,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117964800}) to executor  for transfer request: 0.
2022-05-12 22:30:15,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:15,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) about to wait for the following futures []
2022-05-12 22:30:15,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) done waiting for dependent futures
2022-05-12 22:30:15,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117964800}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 117964800}
2022-05-12 22:30:15,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:17,316 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:30:17,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:17,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:30:17,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:30:17,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 24641536}
2022-05-12 22:30:17,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:30:20,009 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:30:20,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:30:20,010 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19136512}
2022-05-12 22:30:20,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,018 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110886912}) to executor  for transfer request: 0.
2022-05-12 22:30:20,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) about to wait for the following futures []
2022-05-12 22:30:20,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) done waiting for dependent futures
2022-05-12 22:30:20,019 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110886912}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 110886912}
2022-05-12 22:30:20,019 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103022592}) to executor  for transfer request: 0.
2022-05-12 22:30:20,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) about to wait for the following futures []
2022-05-12 22:30:20,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) done waiting for dependent futures
2022-05-12 22:30:20,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103022592}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 103022592}
2022-05-12 22:30:20,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,690 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58195968}) to executor  for transfer request: 0.
2022-05-12 22:30:20,690 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) about to wait for the following futures []
2022-05-12 22:30:20,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) done waiting for dependent futures
2022-05-12 22:30:20,691 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58195968}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 58195968}
2022-05-12 22:30:20,691 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:21,362 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126353408}) to executor  for transfer request: 0.
2022-05-12 22:30:21,362 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:21,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) about to wait for the following futures []
2022-05-12 22:30:21,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) done waiting for dependent futures
2022-05-12 22:30:21,363 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126353408}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 126353408}
2022-05-12 22:30:21,364 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:21,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41680896}) to executor  for transfer request: 0.
2022-05-12 22:30:21,380 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:21,381 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:21,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) about to wait for the following futures []
2022-05-12 22:30:21,381 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) about to wait for the following futures []
2022-05-12 22:30:21,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) done waiting for dependent futures
2022-05-12 22:30:21,381 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41680896}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 41680896}
2022-05-12 22:30:21,381 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) done waiting for dependent futures
2022-05-12 22:30:21,382 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=134217728-142606335'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 134217728, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:30:21,382 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:21,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:21,382 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:21,382 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:21,382 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:21,383 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:21,383 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:21,383 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:30:21,383 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:30:21,383 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:21,383 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:21,383 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=134217728-142606335', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:30:21,384 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:21,384 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:30:21,384 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:21,384 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:21,384 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:30:21,384 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:30:21,384 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:30:21,384 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:30:21,384 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:30:21,384 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=134217728-142606335
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223021Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:30:21,385 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223021Z
20220512/eu-central-1/s3/aws4_request
05baced647370f87adceecd17464b3723b0087a33999fe40e05db92aa0957c7e
2022-05-12 22:30:21,385 botocore.auth DEBUG    Signature:
06aba7d7833bdf8f43ec8de7a915317ad8b1554644ec809390c08c23188739a5
2022-05-12 22:30:21,385 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:21,385 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:21,385 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:30:21,385 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:30:21,690 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:30:21,691 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'eO9eYSEwbU4121nFtC6EgSBDFyMqrenoLfMmtklYJm8Tly2ujEoyBAr0pogE0rx+AQ6GPMOlTTU=', 'x-amz-request-id': 'VND5RPSCAC0EQWH7', 'Date': 'Thu, 12 May 2022 22:30:22 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 134217728-142606335/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:30:21,691 botocore.parsers DEBUG    Response body:

2022-05-12 22:30:21,692 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:30:21,692 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:30:21,692 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:30:22,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87031808}) to executor  for transfer request: 0.
2022-05-12 22:30:22,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:22,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) about to wait for the following futures []
2022-05-12 22:30:22,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) done waiting for dependent futures
2022-05-12 22:30:22,702 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87031808}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 87031808}
2022-05-12 22:30:22,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:23,034 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:30:23,034 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:23,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:30:23,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:30:23,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 5505024}
2022-05-12 22:30:23,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:25,124 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:30:25,124 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:25,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:25,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:30:25,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:30:25,125 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 24903680}
2022-05-12 22:30:25,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94633984}) to executor  for transfer request: 0.
2022-05-12 22:30:26,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) about to wait for the following futures []
2022-05-12 22:30:26,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) done waiting for dependent futures
2022-05-12 22:30:26,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94633984}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 94633984}
2022-05-12 22:30:26,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:27,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58458112}) to executor  for transfer request: 0.
2022-05-12 22:30:27,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:27,374 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:27,374 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) about to wait for the following futures []
2022-05-12 22:30:27,374 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) done waiting for dependent futures
2022-05-12 22:30:27,374 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=142606336-150994943'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 142606336, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:30:27,375 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:27,375 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:27,375 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:27,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) about to wait for the following futures []
2022-05-12 22:30:27,375 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:27,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) done waiting for dependent futures
2022-05-12 22:30:27,376 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:27,376 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58458112}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 58458112}
2022-05-12 22:30:27,377 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:27,377 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:30:27,377 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:30:27,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:27,377 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:27,378 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:27,378 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=142606336-150994943', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:30:27,378 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:27,378 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:30:27,378 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:27,378 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:27,378 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:30:27,378 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:30:27,378 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:30:27,379 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:30:27,379 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:30:27,379 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=142606336-150994943
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223027Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:30:27,379 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223027Z
20220512/eu-central-1/s3/aws4_request
64998f68d363bf96e0e9ab4e235dca7aa412c8a2073e537a3856018aec4cf172
2022-05-12 22:30:27,379 botocore.auth DEBUG    Signature:
b6e18f54ffbadde2e8f6f318508624cf044db99b746b7757f014cf734dabe7e1
2022-05-12 22:30:27,379 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:27,379 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:27,380 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:30:27,380 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:30:27,694 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:30:27,694 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Fsx9E+DgJWteeBd5Gh9iIXomO2Bbm4V4mJmC7qR25f26OMlczmq1m5MXQfnYb5fQYoUZKqkhlpA=', 'x-amz-request-id': 'YHFN257F582ASSKS', 'Date': 'Thu, 12 May 2022 22:30:28 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 142606336-150994943/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:30:27,694 botocore.parsers DEBUG    Response body:

2022-05-12 22:30:27,695 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:30:27,695 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:30:27,695 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:30:27,941 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134217728}) to executor  for transfer request: 0.
2022-05-12 22:30:27,942 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:27,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) about to wait for the following futures []
2022-05-12 22:30:27,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) done waiting for dependent futures
2022-05-12 22:30:27,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134217728}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 134217728}
2022-05-12 22:30:27,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:28,837 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103284736}) to executor  for transfer request: 0.
2022-05-12 22:30:28,837 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:28,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) about to wait for the following futures []
2022-05-12 22:30:28,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) done waiting for dependent futures
2022-05-12 22:30:28,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103284736}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 103284736}
2022-05-12 22:30:28,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:28,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87293952}) to executor  for transfer request: 0.
2022-05-12 22:30:28,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:28,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) about to wait for the following futures []
2022-05-12 22:30:28,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) done waiting for dependent futures
2022-05-12 22:30:28,908 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87293952}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 87293952}
2022-05-12 22:30:28,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:29,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111149056}) to executor  for transfer request: 0.
2022-05-12 22:30:29,154 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:29,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) about to wait for the following futures []
2022-05-12 22:30:29,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) done waiting for dependent futures
2022-05-12 22:30:29,155 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111149056}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 111149056}
2022-05-12 22:30:29,155 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:29,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126615552}) to executor  for transfer request: 0.
2022-05-12 22:30:29,885 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:29,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) about to wait for the following futures []
2022-05-12 22:30:29,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) done waiting for dependent futures
2022-05-12 22:30:29,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126615552}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 126615552}
2022-05-12 22:30:29,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:30,057 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:30:30,057 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:30,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:30:30,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:30:30,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 14680064}
2022-05-12 22:30:30,058 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:35,832 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:30:35,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:35,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:30:35,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:30:35,832 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 5767168}
2022-05-12 22:30:35,833 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134479872}) to executor  for transfer request: 0.
2022-05-12 22:30:36,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) about to wait for the following futures []
2022-05-12 22:30:36,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) done waiting for dependent futures
2022-05-12 22:30:36,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134479872}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 134479872}
2022-05-12 22:30:36,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,952 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:30:36,952 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:30:36,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:30:36,953 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 14942208}
2022-05-12 22:30:36,953 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:37,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103546880}) to executor  for transfer request: 0.
2022-05-12 22:30:37,971 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:37,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) about to wait for the following futures []
2022-05-12 22:30:37,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) done waiting for dependent futures
2022-05-12 22:30:37,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103546880}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 103546880}
2022-05-12 22:30:37,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:38,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94896128}) to executor  for transfer request: 0.
2022-05-12 22:30:38,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:38,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) about to wait for the following futures []
2022-05-12 22:30:38,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) done waiting for dependent futures
2022-05-12 22:30:38,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94896128}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 94896128}
2022-05-12 22:30:38,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:38,694 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134742016}) to executor  for transfer request: 0.
2022-05-12 22:30:38,695 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:38,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) about to wait for the following futures []
2022-05-12 22:30:38,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) done waiting for dependent futures
2022-05-12 22:30:38,695 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134742016}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 134742016}
2022-05-12 22:30:38,696 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,892 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87556096}) to executor  for transfer request: 0.
2022-05-12 22:30:39,892 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) about to wait for the following futures []
2022-05-12 22:30:39,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) done waiting for dependent futures
2022-05-12 22:30:39,892 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87556096}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 87556096}
2022-05-12 22:30:39,893 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:40,457 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118226944}) to executor  for transfer request: 0.
2022-05-12 22:30:40,458 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:40,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) about to wait for the following futures []
2022-05-12 22:30:40,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) done waiting for dependent futures
2022-05-12 22:30:40,458 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118226944}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 118226944}
2022-05-12 22:30:40,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:42,092 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142606336}) to executor  for transfer request: 0.
2022-05-12 22:30:42,092 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:42,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) about to wait for the following futures []
2022-05-12 22:30:42,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) done waiting for dependent futures
2022-05-12 22:30:42,093 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142606336}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 142606336}
2022-05-12 22:30:42,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:42,604 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:30:42,605 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:42,605 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:30:42,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:30:42,606 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19398656}
2022-05-12 22:30:42,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:42,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103809024}) to executor  for transfer request: 0.
2022-05-12 22:30:42,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:42,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) about to wait for the following futures []
2022-05-12 22:30:42,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) done waiting for dependent futures
2022-05-12 22:30:42,682 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103809024}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 103809024}
2022-05-12 22:30:42,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:30:43,302 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:30:43,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:30:43,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 15204352}
2022-05-12 22:30:43,303 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:44,122 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111411200}) to executor  for transfer request: 0.
2022-05-12 22:30:44,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) about to wait for the following futures []
2022-05-12 22:30:44,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) done waiting for dependent futures
2022-05-12 22:30:44,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111411200}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 111411200}
2022-05-12 22:30:44,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:44,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126877696}) to executor  for transfer request: 0.
2022-05-12 22:30:44,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) about to wait for the following futures []
2022-05-12 22:30:44,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) done waiting for dependent futures
2022-05-12 22:30:44,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126877696}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 126877696}
2022-05-12 22:30:44,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:45,569 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135004160}) to executor  for transfer request: 0.
2022-05-12 22:30:45,569 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:45,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) about to wait for the following futures []
2022-05-12 22:30:45,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) done waiting for dependent futures
2022-05-12 22:30:45,570 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135004160}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 135004160}
2022-05-12 22:30:45,570 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:30:49,053 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:30:49,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:30:49,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 23330816}
2022-05-12 22:30:49,054 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,383 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95158272}) to executor  for transfer request: 0.
2022-05-12 22:30:49,383 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) about to wait for the following futures []
2022-05-12 22:30:49,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) done waiting for dependent futures
2022-05-12 22:30:49,384 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95158272}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 95158272}
2022-05-12 22:30:49,384 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,482 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87818240}) to executor  for transfer request: 0.
2022-05-12 22:30:49,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) about to wait for the following futures []
2022-05-12 22:30:49,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) done waiting for dependent futures
2022-05-12 22:30:49,483 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87818240}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 87818240}
2022-05-12 22:30:49,483 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,645 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104071168}) to executor  for transfer request: 0.
2022-05-12 22:30:49,645 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) about to wait for the following futures []
2022-05-12 22:30:49,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) done waiting for dependent futures
2022-05-12 22:30:49,646 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104071168}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 104071168}
2022-05-12 22:30:49,646 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:50,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:30:50,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:50,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:30:50,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:30:50,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19660800}
2022-05-12 22:30:50,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:51,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142868480}) to executor  for transfer request: 0.
2022-05-12 22:30:51,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:51,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) about to wait for the following futures []
2022-05-12 22:30:51,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) done waiting for dependent futures
2022-05-12 22:30:51,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142868480}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 142868480}
2022-05-12 22:30:51,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:52,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111673344}) to executor  for transfer request: 0.
2022-05-12 22:30:52,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:52,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) about to wait for the following futures []
2022-05-12 22:30:52,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) done waiting for dependent futures
2022-05-12 22:30:52,982 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111673344}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 111673344}
2022-05-12 22:30:52,983 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:53,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:30:53,236 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:53,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:30:53,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:30:53,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 15466496}
2022-05-12 22:30:53,237 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:53,316 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135266304}) to executor  for transfer request: 0.
2022-05-12 22:30:53,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:53,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) about to wait for the following futures []
2022-05-12 22:30:53,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) done waiting for dependent futures
2022-05-12 22:30:53,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135266304}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 135266304}
2022-05-12 22:30:53,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:54,821 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118489088}) to executor  for transfer request: 0.
2022-05-12 22:30:54,822 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:54,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) about to wait for the following futures []
2022-05-12 22:30:54,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) done waiting for dependent futures
2022-05-12 22:30:54,822 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118489088}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 118489088}
2022-05-12 22:30:54,822 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,160 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127139840}) to executor  for transfer request: 0.
2022-05-12 22:30:55,160 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) about to wait for the following futures []
2022-05-12 22:30:55,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) done waiting for dependent futures
2022-05-12 22:30:55,160 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127139840}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 127139840}
2022-05-12 22:30:55,161 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:57,141 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104333312}) to executor  for transfer request: 0.
2022-05-12 22:30:57,141 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:57,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) about to wait for the following futures []
2022-05-12 22:30:57,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) done waiting for dependent futures
2022-05-12 22:30:57,142 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104333312}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 104333312}
2022-05-12 22:30:57,143 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:58,117 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143130624}) to executor  for transfer request: 0.
2022-05-12 22:30:58,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:58,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) about to wait for the following futures []
2022-05-12 22:30:58,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) done waiting for dependent futures
2022-05-12 22:30:58,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143130624}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 143130624}
2022-05-12 22:30:58,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:58,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95420416}) to executor  for transfer request: 0.
2022-05-12 22:30:58,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:58,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) about to wait for the following futures []
2022-05-12 22:30:58,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) done waiting for dependent futures
2022-05-12 22:30:58,178 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95420416}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 95420416}
2022-05-12 22:30:58,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:58,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88080384}) to executor  for transfer request: 0.
2022-05-12 22:30:58,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:58,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) about to wait for the following futures []
2022-05-12 22:30:58,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) done waiting for dependent futures
2022-05-12 22:30:58,926 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88080384}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 88080384}
2022-05-12 22:30:58,927 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:00,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:31:00,253 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:00,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:31:00,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:31:00,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19922944}
2022-05-12 22:31:00,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:01,633 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:31:01,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:01,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:31:01,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:31:01,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 15728640}
2022-05-12 22:31:01,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:02,798 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135528448}) to executor  for transfer request: 0.
2022-05-12 22:31:02,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:02,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) about to wait for the following futures []
2022-05-12 22:31:02,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) done waiting for dependent futures
2022-05-12 22:31:02,799 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135528448}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 135528448}
2022-05-12 22:31:02,800 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,547 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104595456}) to executor  for transfer request: 0.
2022-05-12 22:31:03,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) about to wait for the following futures []
2022-05-12 22:31:03,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) done waiting for dependent futures
2022-05-12 22:31:03,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104595456}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 104595456}
2022-05-12 22:31:03,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,775 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111935488}) to executor  for transfer request: 0.
2022-05-12 22:31:03,775 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,775 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) about to wait for the following futures []
2022-05-12 22:31:03,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) done waiting for dependent futures
2022-05-12 22:31:03,776 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111935488}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 111935488}
2022-05-12 22:31:03,776 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:04,256 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:31:04,256 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:04,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:31:04,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:31:04,257 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 28835840}
2022-05-12 22:31:04,257 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:05,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127401984}) to executor  for transfer request: 0.
2022-05-12 22:31:05,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:05,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) about to wait for the following futures []
2022-05-12 22:31:05,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) done waiting for dependent futures
2022-05-12 22:31:05,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127401984}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 127401984}
2022-05-12 22:31:05,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:05,635 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88342528}) to executor  for transfer request: 0.
2022-05-12 22:31:05,635 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:05,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) about to wait for the following futures []
2022-05-12 22:31:05,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) done waiting for dependent futures
2022-05-12 22:31:05,636 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88342528}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 88342528}
2022-05-12 22:31:05,636 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,634 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95682560}) to executor  for transfer request: 0.
2022-05-12 22:31:06,634 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) about to wait for the following futures []
2022-05-12 22:31:06,635 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) done waiting for dependent futures
2022-05-12 22:31:06,635 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95682560}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 95682560}
2022-05-12 22:31:06,635 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,711 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143392768}) to executor  for transfer request: 0.
2022-05-12 22:31:06,711 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) about to wait for the following futures []
2022-05-12 22:31:06,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) done waiting for dependent futures
2022-05-12 22:31:06,712 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143392768}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 143392768}
2022-05-12 22:31:06,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,949 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135790592}) to executor  for transfer request: 0.
2022-05-12 22:31:06,950 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,950 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) about to wait for the following futures []
2022-05-12 22:31:06,950 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) done waiting for dependent futures
2022-05-12 22:31:06,950 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135790592}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 135790592}
2022-05-12 22:31:06,951 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118751232}) to executor  for transfer request: 0.
2022-05-12 22:31:09,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) about to wait for the following futures []
2022-05-12 22:31:09,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) done waiting for dependent futures
2022-05-12 22:31:09,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118751232}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 118751232}
2022-05-12 22:31:09,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,491 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104857600}) to executor  for transfer request: 0.
2022-05-12 22:31:10,491 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) about to wait for the following futures []
2022-05-12 22:31:10,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) done waiting for dependent futures
2022-05-12 22:31:10,491 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104857600}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 104857600}
2022-05-12 22:31:10,492 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:11,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112197632}) to executor  for transfer request: 0.
2022-05-12 22:31:11,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:11,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) about to wait for the following futures []
2022-05-12 22:31:11,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) done waiting for dependent futures
2022-05-12 22:31:11,910 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112197632}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 112197632}
2022-05-12 22:31:11,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:12,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:31:12,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:12,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:31:12,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:31:12,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20185088}
2022-05-12 22:31:12,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:14,304 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136052736}) to executor  for transfer request: 0.
2022-05-12 22:31:14,304 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:14,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) about to wait for the following futures []
2022-05-12 22:31:14,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) done waiting for dependent futures
2022-05-12 22:31:14,305 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136052736}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 136052736}
2022-05-12 22:31:14,306 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:14,312 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:31:14,312 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:14,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:31:14,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:31:14,313 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 15990784}
2022-05-12 22:31:14,313 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:15,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88604672}) to executor  for transfer request: 0.
2022-05-12 22:31:15,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:15,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) about to wait for the following futures []
2022-05-12 22:31:15,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) done waiting for dependent futures
2022-05-12 22:31:15,998 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88604672}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 88604672}
2022-05-12 22:31:15,998 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,334 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119013376}) to executor  for transfer request: 0.
2022-05-12 22:31:16,334 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) about to wait for the following futures []
2022-05-12 22:31:16,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) done waiting for dependent futures
2022-05-12 22:31:16,335 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119013376}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 119013376}
2022-05-12 22:31:16,335 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,710 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105119744}) to executor  for transfer request: 0.
2022-05-12 22:31:16,710 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) about to wait for the following futures []
2022-05-12 22:31:16,711 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) done waiting for dependent futures
2022-05-12 22:31:16,711 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105119744}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 105119744}
2022-05-12 22:31:16,711 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,444 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143654912}) to executor  for transfer request: 0.
2022-05-12 22:31:17,445 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) about to wait for the following futures []
2022-05-12 22:31:17,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) done waiting for dependent futures
2022-05-12 22:31:17,445 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143654912}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 143654912}
2022-05-12 22:31:17,446 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:18,243 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95944704}) to executor  for transfer request: 0.
2022-05-12 22:31:18,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:18,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) about to wait for the following futures []
2022-05-12 22:31:18,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) done waiting for dependent futures
2022-05-12 22:31:18,244 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95944704}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 95944704}
2022-05-12 22:31:18,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:20,239 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127664128}) to executor  for transfer request: 0.
2022-05-12 22:31:20,239 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:20,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) about to wait for the following futures []
2022-05-12 22:31:20,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) done waiting for dependent futures
2022-05-12 22:31:20,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127664128}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 127664128}
2022-05-12 22:31:20,240 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:21,416 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136314880}) to executor  for transfer request: 0.
2022-05-12 22:31:21,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:21,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) about to wait for the following futures []
2022-05-12 22:31:21,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) done waiting for dependent futures
2022-05-12 22:31:21,417 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136314880}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 136314880}
2022-05-12 22:31:21,418 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:22,879 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:31:22,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:22,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:31:22,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:31:22,880 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20447232}
2022-05-12 22:31:22,880 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:23,319 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88866816}) to executor  for transfer request: 0.
2022-05-12 22:31:23,319 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:23,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) about to wait for the following futures []
2022-05-12 22:31:23,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) done waiting for dependent futures
2022-05-12 22:31:23,319 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88866816}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 88866816}
2022-05-12 22:31:23,320 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:24,200 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:31:24,200 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:24,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:31:24,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:31:24,200 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 16252928}
2022-05-12 22:31:24,200 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:24,983 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112459776}) to executor  for transfer request: 0.
2022-05-12 22:31:24,983 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:24,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) about to wait for the following futures []
2022-05-12 22:31:24,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) done waiting for dependent futures
2022-05-12 22:31:24,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112459776}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 112459776}
2022-05-12 22:31:24,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:25,118 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143917056}) to executor  for transfer request: 0.
2022-05-12 22:31:25,118 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:25,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) about to wait for the following futures []
2022-05-12 22:31:25,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) done waiting for dependent futures
2022-05-12 22:31:25,119 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143917056}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 143917056}
2022-05-12 22:31:25,119 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:27,651 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105381888}) to executor  for transfer request: 0.
2022-05-12 22:31:27,651 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:27,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) about to wait for the following futures []
2022-05-12 22:31:27,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) done waiting for dependent futures
2022-05-12 22:31:27,652 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105381888}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 105381888}
2022-05-12 22:31:27,652 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,260 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119275520}) to executor  for transfer request: 0.
2022-05-12 22:31:29,260 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) about to wait for the following futures []
2022-05-12 22:31:29,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) done waiting for dependent futures
2022-05-12 22:31:29,261 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119275520}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 119275520}
2022-05-12 22:31:29,261 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96206848}) to executor  for transfer request: 0.
2022-05-12 22:31:29,537 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) about to wait for the following futures []
2022-05-12 22:31:29,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) done waiting for dependent futures
2022-05-12 22:31:29,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96206848}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 96206848}
2022-05-12 22:31:29,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,676 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127926272}) to executor  for transfer request: 0.
2022-05-12 22:31:29,677 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) about to wait for the following futures []
2022-05-12 22:31:29,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) done waiting for dependent futures
2022-05-12 22:31:29,677 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127926272}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 127926272}
2022-05-12 22:31:29,678 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:31:30,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:31:30,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:31:30,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20709376}
2022-05-12 22:31:30,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:32,204 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89128960}) to executor  for transfer request: 0.
2022-05-12 22:31:32,205 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:32,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) about to wait for the following futures []
2022-05-12 22:31:32,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) done waiting for dependent futures
2022-05-12 22:31:32,205 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89128960}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 89128960}
2022-05-12 22:31:32,206 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:32,955 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136577024}) to executor  for transfer request: 0.
2022-05-12 22:31:32,955 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:32,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) about to wait for the following futures []
2022-05-12 22:31:32,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) done waiting for dependent futures
2022-05-12 22:31:32,955 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136577024}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 136577024}
2022-05-12 22:31:32,956 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:33,373 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:31:33,373 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:33,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:31:33,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:31:33,374 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 23592960}
2022-05-12 22:31:33,374 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:33,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144179200}) to executor  for transfer request: 0.
2022-05-12 22:31:33,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:33,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) about to wait for the following futures []
2022-05-12 22:31:33,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) done waiting for dependent futures
2022-05-12 22:31:33,424 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144179200}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 144179200}
2022-05-12 22:31:33,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:33,591 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112721920}) to executor  for transfer request: 0.
2022-05-12 22:31:33,591 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:33,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) about to wait for the following futures []
2022-05-12 22:31:33,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) done waiting for dependent futures
2022-05-12 22:31:33,592 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112721920}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 112721920}
2022-05-12 22:31:33,592 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:35,836 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:31:35,837 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:35,837 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:35,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:31:35,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:31:35,837 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 16515072}
2022-05-12 22:31:35,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128188416}) to executor  for transfer request: 0.
2022-05-12 22:31:37,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) about to wait for the following futures []
2022-05-12 22:31:37,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) done waiting for dependent futures
2022-05-12 22:31:37,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128188416}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 128188416}
2022-05-12 22:31:37,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136839168}) to executor  for transfer request: 0.
2022-05-12 22:31:37,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) about to wait for the following futures []
2022-05-12 22:31:37,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) done waiting for dependent futures
2022-05-12 22:31:37,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136839168}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 136839168}
2022-05-12 22:31:37,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,350 s3transfer.download DEBUG    Retrying exception caught (Read timeout on endpoint URL: "None"), retrying request, (attempt 0 / 5)
Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 436, in _error_catcher
    yield
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 518, in read
    data = self._fp.read(amt) if not fp_closed else b""
  File "/usr/lib/python3.8/http/client.py", line 459, in read
    n = self.readinto(b)
  File "/usr/lib/python3.8/http/client.py", line 503, in readinto
    n = self.fp.readinto(b)
  File "/usr/lib/python3.8/socket.py", line 669, in readinto
    return self._sock.recv_into(b)
  File "/usr/lib/python3.8/ssl.py", line 1241, in recv_into
    return self.read(nbytes, buffer)
  File "/usr/lib/python3.8/ssl.py", line 1099, in read
    return self._sslobj.read(len, buffer)
socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 99, in read
    chunk = self._raw_stream.read(amt)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 540, in read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__
    self.gen.throw(type, value, traceback)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 441, in _error_catcher
    raise ReadTimeoutError(self._pool, None, "Read timed out.")
urllib3.exceptions.ReadTimeoutError: AWSHTTPSConnectionPool(host='plot-delineation.s3.eu-central-1.amazonaws.com', port=443): Read timed out.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 583, in _main
    for chunk in chunks:
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 728, in __next__
    chunk = self._body.read(self._chunksize)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/utils.py", line 599, in read
    value = self._stream.read(*args, **kwargs)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 102, in read
    raise ReadTimeoutError(endpoint_url=e.url, error=e)
botocore.exceptions.ReadTimeoutError: Read timeout on endpoint URL: "None"
2022-05-12 22:31:37,352 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:37,353 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:37,353 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:37,353 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:37,353 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:37,353 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:37,353 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:37,353 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:31:37,354 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:37,354 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:37,354 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:37,354 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:37,354 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:37,354 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:37,354 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:37,354 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:37,354 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:37,354 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:31:37,354 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/IS_DATA.npy
2022-05-12 22:31:37,355 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:37,355 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223137Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:37,355 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223137Z
20220512/eu-central-1/s3/aws4_request
e75fcb079ef23266ef414a493d23b76f341d17783d45c41395ed567f82c3b61a
2022-05-12 22:31:37,355 botocore.auth DEBUG    Signature:
9509a9d255e27332e031dfe273214fad660cb5630fe640f3a8274efde06e7828
2022-05-12 22:31:37,355 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:37,355 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:37,355 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:37,356 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:37,356 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:31:38,430 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144441344}) to executor  for transfer request: 0.
2022-05-12 22:31:38,430 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:38,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) about to wait for the following futures []
2022-05-12 22:31:38,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) done waiting for dependent futures
2022-05-12 22:31:38,431 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144441344}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 144441344}
2022-05-12 22:31:38,431 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:38,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119537664}) to executor  for transfer request: 0.
2022-05-12 22:31:38,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:38,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) about to wait for the following futures []
2022-05-12 22:31:38,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) done waiting for dependent futures
2022-05-12 22:31:38,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119537664}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 119537664}
2022-05-12 22:31:38,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:39,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:31:39,990 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:39,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:31:39,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:31:39,991 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20971520}
2022-05-12 22:31:39,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96468992}) to executor  for transfer request: 0.
2022-05-12 22:31:41,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) about to wait for the following futures []
2022-05-12 22:31:41,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) done waiting for dependent futures
2022-05-12 22:31:41,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96468992}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 96468992}
2022-05-12 22:31:41,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89391104}) to executor  for transfer request: 0.
2022-05-12 22:31:42,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) about to wait for the following futures []
2022-05-12 22:31:42,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) done waiting for dependent futures
2022-05-12 22:31:42,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89391104}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 89391104}
2022-05-12 22:31:42,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:43,624 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137101312}) to executor  for transfer request: 0.
2022-05-12 22:31:43,624 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:43,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) about to wait for the following futures []
2022-05-12 22:31:43,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) done waiting for dependent futures
2022-05-12 22:31:43,625 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137101312}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 137101312}
2022-05-12 22:31:43,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:43,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112984064}) to executor  for transfer request: 0.
2022-05-12 22:31:43,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:43,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) about to wait for the following futures []
2022-05-12 22:31:43,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) done waiting for dependent futures
2022-05-12 22:31:43,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112984064}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 112984064}
2022-05-12 22:31:43,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:43,951 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:43,953 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'kkhiMKU6h1VxmhLwfcIfMhxQD1XU1dyviiHsaAa+4frLOY2ghDmI/4DQeXZDJEP/ChRhzclZUXc=', 'x-amz-request-id': '448B3WPN1AGKCK91', 'Date': 'Thu, 12 May 2022 22:31:44 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:31:43,953 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:43,954 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:43,954 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:43,954 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:45,245 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105644032}) to executor  for transfer request: 0.
2022-05-12 22:31:45,245 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:45,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) about to wait for the following futures []
2022-05-12 22:31:45,246 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) done waiting for dependent futures
2022-05-12 22:31:45,246 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105644032}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 105644032}
2022-05-12 22:31:45,246 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:45,614 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119799808}) to executor  for transfer request: 0.
2022-05-12 22:31:45,614 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:45,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) about to wait for the following futures []
2022-05-12 22:31:45,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) done waiting for dependent futures
2022-05-12 22:31:45,615 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119799808}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 119799808}
2022-05-12 22:31:45,615 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:47,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144703488}) to executor  for transfer request: 0.
2022-05-12 22:31:47,561 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:47,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) about to wait for the following futures []
2022-05-12 22:31:47,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) done waiting for dependent futures
2022-05-12 22:31:47,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144703488}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 144703488}
2022-05-12 22:31:47,562 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:48,892 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96731136}) to executor  for transfer request: 0.
2022-05-12 22:31:48,893 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:48,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) about to wait for the following futures []
2022-05-12 22:31:48,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) done waiting for dependent futures
2022-05-12 22:31:48,893 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96731136}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 96731136}
2022-05-12 22:31:48,894 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:50,815 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113246208}) to executor  for transfer request: 0.
2022-05-12 22:31:50,815 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:50,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) about to wait for the following futures []
2022-05-12 22:31:50,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) done waiting for dependent futures
2022-05-12 22:31:50,816 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113246208}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 113246208}
2022-05-12 22:31:50,816 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:31:51,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:31:51,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:31:51,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 0}
2022-05-12 22:31:51,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128450560}) to executor  for transfer request: 0.
2022-05-12 22:31:51,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) about to wait for the following futures []
2022-05-12 22:31:51,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) done waiting for dependent futures
2022-05-12 22:31:51,484 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128450560}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 128450560}
2022-05-12 22:31:51,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137363456}) to executor  for transfer request: 0.
2022-05-12 22:31:51,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) about to wait for the following futures []
2022-05-12 22:31:51,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) done waiting for dependent futures
2022-05-12 22:31:51,512 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137363456}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 137363456}
2022-05-12 22:31:51,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,541 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:31:51,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:31:51,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:31:51,542 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 21233664}
2022-05-12 22:31:51,543 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,850 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89653248}) to executor  for transfer request: 0.
2022-05-12 22:31:51,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) about to wait for the following futures []
2022-05-12 22:31:51,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) done waiting for dependent futures
2022-05-12 22:31:51,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89653248}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 89653248}
2022-05-12 22:31:51,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:52,932 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105906176}) to executor  for transfer request: 0.
2022-05-12 22:31:52,932 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:52,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) about to wait for the following futures []
2022-05-12 22:31:52,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) done waiting for dependent futures
2022-05-12 22:31:52,933 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105906176}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 105906176}
2022-05-12 22:31:52,933 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:55,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144965632}) to executor  for transfer request: 0.
2022-05-12 22:31:55,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:55,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) about to wait for the following futures []
2022-05-12 22:31:55,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) done waiting for dependent futures
2022-05-12 22:31:55,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144965632}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 144965632}
2022-05-12 22:31:55,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:56,193 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120061952}) to executor  for transfer request: 0.
2022-05-12 22:31:56,193 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:56,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) about to wait for the following futures []
2022-05-12 22:31:56,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) done waiting for dependent futures
2022-05-12 22:31:56,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120061952}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 120061952}
2022-05-12 22:31:56,194 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:57,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96993280}) to executor  for transfer request: 0.
2022-05-12 22:31:57,454 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:57,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) about to wait for the following futures []
2022-05-12 22:31:57,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) done waiting for dependent futures
2022-05-12 22:31:57,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96993280}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 96993280}
2022-05-12 22:31:57,455 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:58,362 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:31:58,362 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:58,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:31:58,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:31:58,362 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 262144}
2022-05-12 22:31:58,363 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:59,777 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89915392}) to executor  for transfer request: 0.
2022-05-12 22:31:59,777 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:59,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) about to wait for the following futures []
2022-05-12 22:31:59,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) done waiting for dependent futures
2022-05-12 22:31:59,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89915392}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 89915392}
2022-05-12 22:31:59,778 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,072 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:32:00,072 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,072 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:32:00,072 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:32:00,072 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 21495808}
2022-05-12 22:32:00,073 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,073 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137625600}) to executor  for transfer request: 0.
2022-05-12 22:32:00,074 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) about to wait for the following futures []
2022-05-12 22:32:00,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) done waiting for dependent futures
2022-05-12 22:32:00,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137625600}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 137625600}
2022-05-12 22:32:00,075 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113508352}) to executor  for transfer request: 0.
2022-05-12 22:32:00,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) about to wait for the following futures []
2022-05-12 22:32:00,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) done waiting for dependent futures
2022-05-12 22:32:00,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113508352}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 113508352}
2022-05-12 22:32:00,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:01,391 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128712704}) to executor  for transfer request: 0.
2022-05-12 22:32:01,392 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:01,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) about to wait for the following futures []
2022-05-12 22:32:01,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) done waiting for dependent futures
2022-05-12 22:32:01,392 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128712704}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 128712704}
2022-05-12 22:32:01,393 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:02,081 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145227776}) to executor  for transfer request: 0.
2022-05-12 22:32:02,082 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:02,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) about to wait for the following futures []
2022-05-12 22:32:02,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) done waiting for dependent futures
2022-05-12 22:32:02,082 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145227776}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 145227776}
2022-05-12 22:32:02,083 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:03,633 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120324096}) to executor  for transfer request: 0.
2022-05-12 22:32:03,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:03,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) about to wait for the following futures []
2022-05-12 22:32:03,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) done waiting for dependent futures
2022-05-12 22:32:03,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120324096}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 120324096}
2022-05-12 22:32:03,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,530 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106168320}) to executor  for transfer request: 0.
2022-05-12 22:32:04,530 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) about to wait for the following futures []
2022-05-12 22:32:04,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) done waiting for dependent futures
2022-05-12 22:32:04,531 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106168320}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 106168320}
2022-05-12 22:32:04,532 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:05,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137887744}) to executor  for transfer request: 0.
2022-05-12 22:32:05,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:05,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) about to wait for the following futures []
2022-05-12 22:32:05,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) done waiting for dependent futures
2022-05-12 22:32:05,477 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137887744}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 137887744}
2022-05-12 22:32:05,477 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:06,057 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:32:06,057 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:06,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:32:06,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:32:06,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 524288}
2022-05-12 22:32:06,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:06,081 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97255424}) to executor  for transfer request: 0.
2022-05-12 22:32:06,081 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:06,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) about to wait for the following futures []
2022-05-12 22:32:06,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) done waiting for dependent futures
2022-05-12 22:32:06,082 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97255424}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 97255424}
2022-05-12 22:32:06,082 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:07,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90177536}) to executor  for transfer request: 0.
2022-05-12 22:32:07,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:07,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) about to wait for the following futures []
2022-05-12 22:32:07,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) done waiting for dependent futures
2022-05-12 22:32:07,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90177536}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 90177536}
2022-05-12 22:32:07,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:08,845 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113770496}) to executor  for transfer request: 0.
2022-05-12 22:32:08,845 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:08,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) about to wait for the following futures []
2022-05-12 22:32:08,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) done waiting for dependent futures
2022-05-12 22:32:08,845 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113770496}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 113770496}
2022-05-12 22:32:08,846 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:10,142 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:32:10,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:10,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:32:10,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:32:10,143 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 21757952}
2022-05-12 22:32:10,143 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:10,825 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145489920}) to executor  for transfer request: 0.
2022-05-12 22:32:10,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:10,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) about to wait for the following futures []
2022-05-12 22:32:10,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) done waiting for dependent futures
2022-05-12 22:32:10,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145489920}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 145489920}
2022-05-12 22:32:10,826 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,838 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138149888}) to executor  for transfer request: 0.
2022-05-12 22:32:11,838 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) about to wait for the following futures []
2022-05-12 22:32:11,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) done waiting for dependent futures
2022-05-12 22:32:11,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138149888}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 138149888}
2022-05-12 22:32:11,839 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:12,286 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120586240}) to executor  for transfer request: 0.
2022-05-12 22:32:12,286 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:12,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) about to wait for the following futures []
2022-05-12 22:32:12,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) done waiting for dependent futures
2022-05-12 22:32:12,287 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120586240}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 120586240}
2022-05-12 22:32:12,288 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:13,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128974848}) to executor  for transfer request: 0.
2022-05-12 22:32:13,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:13,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) about to wait for the following futures []
2022-05-12 22:32:13,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) done waiting for dependent futures
2022-05-12 22:32:13,761 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128974848}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 128974848}
2022-05-12 22:32:13,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:14,279 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:32:14,280 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:14,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:32:14,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:32:14,280 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 786432}
2022-05-12 22:32:14,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,379 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97517568}) to executor  for transfer request: 0.
2022-05-12 22:32:15,379 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:15,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) about to wait for the following futures []
2022-05-12 22:32:15,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) done waiting for dependent futures
2022-05-12 22:32:15,380 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97517568}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 97517568}
2022-05-12 22:32:15,380 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:16,407 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90439680}) to executor  for transfer request: 0.
2022-05-12 22:32:16,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:16,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) about to wait for the following futures []
2022-05-12 22:32:16,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) done waiting for dependent futures
2022-05-12 22:32:16,408 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90439680}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 90439680}
2022-05-12 22:32:16,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:16,550 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114032640}) to executor  for transfer request: 0.
2022-05-12 22:32:16,551 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:16,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) about to wait for the following futures []
2022-05-12 22:32:16,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) done waiting for dependent futures
2022-05-12 22:32:16,551 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114032640}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 114032640}
2022-05-12 22:32:16,551 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,588 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145752064}) to executor  for transfer request: 0.
2022-05-12 22:32:18,588 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) about to wait for the following futures []
2022-05-12 22:32:18,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) done waiting for dependent futures
2022-05-12 22:32:18,589 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145752064}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 145752064}
2022-05-12 22:32:18,589 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,697 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:32:18,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:32:18,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:32:18,698 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 23855104}
2022-05-12 22:32:18,698 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:19,196 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106430464}) to executor  for transfer request: 0.
2022-05-12 22:32:19,196 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:19,196 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) about to wait for the following futures []
2022-05-12 22:32:19,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) done waiting for dependent futures
2022-05-12 22:32:19,197 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106430464}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 106430464}
2022-05-12 22:32:19,197 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:19,669 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:32:19,669 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:19,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:32:19,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:32:19,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 22020096}
2022-05-12 22:32:19,670 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:19,826 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120848384}) to executor  for transfer request: 0.
2022-05-12 22:32:19,826 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:19,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) about to wait for the following futures []
2022-05-12 22:32:19,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) done waiting for dependent futures
2022-05-12 22:32:19,827 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120848384}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 120848384}
2022-05-12 22:32:19,827 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,488 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138412032}) to executor  for transfer request: 0.
2022-05-12 22:32:20,488 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:20,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) about to wait for the following futures []
2022-05-12 22:32:20,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) done waiting for dependent futures
2022-05-12 22:32:20,489 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138412032}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 138412032}
2022-05-12 22:32:20,489 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114294784}) to executor  for transfer request: 0.
2022-05-12 22:32:20,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:20,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) about to wait for the following futures []
2022-05-12 22:32:20,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) done waiting for dependent futures
2022-05-12 22:32:20,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114294784}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 114294784}
2022-05-12 22:32:20,694 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,808 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97779712}) to executor  for transfer request: 0.
2022-05-12 22:32:20,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:20,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) about to wait for the following futures []
2022-05-12 22:32:20,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) done waiting for dependent futures
2022-05-12 22:32:20,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97779712}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 97779712}
2022-05-12 22:32:20,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:21,312 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129236992}) to executor  for transfer request: 0.
2022-05-12 22:32:21,313 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:21,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) about to wait for the following futures []
2022-05-12 22:32:21,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) done waiting for dependent futures
2022-05-12 22:32:21,313 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129236992}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 129236992}
2022-05-12 22:32:21,314 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:21,505 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:32:21,505 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:21,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:32:21,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:32:21,506 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1048576}
2022-05-12 22:32:21,506 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,096 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90701824}) to executor  for transfer request: 0.
2022-05-12 22:32:23,097 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) about to wait for the following futures []
2022-05-12 22:32:23,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) done waiting for dependent futures
2022-05-12 22:32:23,097 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90701824}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 90701824}
2022-05-12 22:32:23,098 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:25,966 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:32:25,967 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:25,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:32:25,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:32:25,968 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1310720}
2022-05-12 22:32:25,968 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:26,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146014208}) to executor  for transfer request: 0.
2022-05-12 22:32:26,553 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:26,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) about to wait for the following futures []
2022-05-12 22:32:26,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) done waiting for dependent futures
2022-05-12 22:32:26,554 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146014208}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 146014208}
2022-05-12 22:32:26,554 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:26,698 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138674176}) to executor  for transfer request: 0.
2022-05-12 22:32:26,698 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:26,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) about to wait for the following futures []
2022-05-12 22:32:26,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) done waiting for dependent futures
2022-05-12 22:32:26,699 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138674176}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 138674176}
2022-05-12 22:32:26,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:27,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114556928}) to executor  for transfer request: 0.
2022-05-12 22:32:27,148 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:27,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) about to wait for the following futures []
2022-05-12 22:32:27,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) done waiting for dependent futures
2022-05-12 22:32:27,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114556928}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 114556928}
2022-05-12 22:32:27,148 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:27,587 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:32:27,587 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:27,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:32:27,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:32:27,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 22282240}
2022-05-12 22:32:27,588 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121110528}) to executor  for transfer request: 0.
2022-05-12 22:32:29,307 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) about to wait for the following futures []
2022-05-12 22:32:29,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) done waiting for dependent futures
2022-05-12 22:32:29,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121110528}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 121110528}
2022-05-12 22:32:29,308 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,860 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138936320}) to executor  for transfer request: 0.
2022-05-12 22:32:29,860 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) about to wait for the following futures []
2022-05-12 22:32:29,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) done waiting for dependent futures
2022-05-12 22:32:29,861 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138936320}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 138936320}
2022-05-12 22:32:29,861 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,217 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106692608}) to executor  for transfer request: 0.
2022-05-12 22:32:31,217 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:31,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) about to wait for the following futures []
2022-05-12 22:32:31,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) done waiting for dependent futures
2022-05-12 22:32:31,218 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106692608}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 106692608}
2022-05-12 22:32:31,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,385 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98041856}) to executor  for transfer request: 0.
2022-05-12 22:32:31,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:31,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) about to wait for the following futures []
2022-05-12 22:32:31,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) done waiting for dependent futures
2022-05-12 22:32:31,386 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98041856}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 98041856}
2022-05-12 22:32:31,387 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:32:31,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:31,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:32:31,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:32:31,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1572864}
2022-05-12 22:32:31,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:32,204 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129499136}) to executor  for transfer request: 0.
2022-05-12 22:32:32,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:32,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) about to wait for the following futures []
2022-05-12 22:32:32,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) done waiting for dependent futures
2022-05-12 22:32:32,205 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129499136}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 129499136}
2022-05-12 22:32:32,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:33,312 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90963968}) to executor  for transfer request: 0.
2022-05-12 22:32:33,312 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:33,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) about to wait for the following futures []
2022-05-12 22:32:33,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) done waiting for dependent futures
2022-05-12 22:32:33,313 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90963968}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 90963968}
2022-05-12 22:32:33,313 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:33,639 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114819072}) to executor  for transfer request: 0.
2022-05-12 22:32:33,640 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:33,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) about to wait for the following futures []
2022-05-12 22:32:33,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) done waiting for dependent futures
2022-05-12 22:32:33,640 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114819072}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 114819072}
2022-05-12 22:32:33,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:37,366 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121372672}) to executor  for transfer request: 0.
2022-05-12 22:32:37,366 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:37,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) about to wait for the following futures []
2022-05-12 22:32:37,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) done waiting for dependent futures
2022-05-12 22:32:37,367 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121372672}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 121372672}
2022-05-12 22:32:37,368 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139198464}) to executor  for transfer request: 0.
2022-05-12 22:32:38,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) about to wait for the following futures []
2022-05-12 22:32:38,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) done waiting for dependent futures
2022-05-12 22:32:38,146 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139198464}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 139198464}
2022-05-12 22:32:38,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,313 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146276352}) to executor  for transfer request: 0.
2022-05-12 22:32:38,313 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) about to wait for the following futures []
2022-05-12 22:32:38,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) done waiting for dependent futures
2022-05-12 22:32:38,313 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146276352}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 146276352}
2022-05-12 22:32:38,314 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,959 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:32:38,960 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:32:38,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:32:38,960 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1835008}
2022-05-12 22:32:38,961 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:39,857 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115081216}) to executor  for transfer request: 0.
2022-05-12 22:32:39,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:39,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) about to wait for the following futures []
2022-05-12 22:32:39,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) done waiting for dependent futures
2022-05-12 22:32:39,858 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115081216}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 115081216}
2022-05-12 22:32:39,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:40,842 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129761280}) to executor  for transfer request: 0.
2022-05-12 22:32:40,842 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:40,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) about to wait for the following futures []
2022-05-12 22:32:40,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) done waiting for dependent futures
2022-05-12 22:32:40,843 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129761280}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 129761280}
2022-05-12 22:32:40,844 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:41,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91226112}) to executor  for transfer request: 0.
2022-05-12 22:32:41,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:41,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) about to wait for the following futures []
2022-05-12 22:32:41,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) done waiting for dependent futures
2022-05-12 22:32:41,150 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91226112}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 91226112}
2022-05-12 22:32:41,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:41,286 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98304000}) to executor  for transfer request: 0.
2022-05-12 22:32:41,286 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:41,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) about to wait for the following futures []
2022-05-12 22:32:41,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) done waiting for dependent futures
2022-05-12 22:32:41,287 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98304000}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 98304000}
2022-05-12 22:32:41,287 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:43,034 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106954752}) to executor  for transfer request: 0.
2022-05-12 22:32:43,034 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:43,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) about to wait for the following futures []
2022-05-12 22:32:43,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) done waiting for dependent futures
2022-05-12 22:32:43,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106954752}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 106954752}
2022-05-12 22:32:43,035 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:43,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139460608}) to executor  for transfer request: 0.
2022-05-12 22:32:43,537 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:43,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) about to wait for the following futures []
2022-05-12 22:32:43,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) done waiting for dependent futures
2022-05-12 22:32:43,537 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139460608}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 139460608}
2022-05-12 22:32:43,537 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:44,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:32:44,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:44,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:32:44,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:32:44,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 1572864}
2022-05-12 22:32:44,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:45,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:32:45,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:45,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:32:45,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:32:45,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2097152}
2022-05-12 22:32:45,805 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:45,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139722752}) to executor  for transfer request: 0.
2022-05-12 22:32:45,809 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:45,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) about to wait for the following futures []
2022-05-12 22:32:45,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) done waiting for dependent futures
2022-05-12 22:32:45,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139722752}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 139722752}
2022-05-12 22:32:45,810 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:46,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98566144}) to executor  for transfer request: 0.
2022-05-12 22:32:46,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:46,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) about to wait for the following futures []
2022-05-12 22:32:46,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) done waiting for dependent futures
2022-05-12 22:32:46,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98566144}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 98566144}
2022-05-12 22:32:46,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:47,864 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121634816}) to executor  for transfer request: 0.
2022-05-12 22:32:47,864 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:47,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) about to wait for the following futures []
2022-05-12 22:32:47,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) done waiting for dependent futures
2022-05-12 22:32:47,865 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121634816}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 121634816}
2022-05-12 22:32:47,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,722 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139984896}) to executor  for transfer request: 0.
2022-05-12 22:32:48,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) about to wait for the following futures []
2022-05-12 22:32:48,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) done waiting for dependent futures
2022-05-12 22:32:48,723 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139984896}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 139984896}
2022-05-12 22:32:48,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:49,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91488256}) to executor  for transfer request: 0.
2022-05-12 22:32:49,470 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:49,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) about to wait for the following futures []
2022-05-12 22:32:49,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) done waiting for dependent futures
2022-05-12 22:32:49,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91488256}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 91488256}
2022-05-12 22:32:49,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:50,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107216896}) to executor  for transfer request: 0.
2022-05-12 22:32:50,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:50,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) about to wait for the following futures []
2022-05-12 22:32:50,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) done waiting for dependent futures
2022-05-12 22:32:50,909 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107216896}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 107216896}
2022-05-12 22:32:50,909 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:51,801 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:32:51,801 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:51,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:32:51,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:32:51,802 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2359296}
2022-05-12 22:32:51,802 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:52,737 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140247040}) to executor  for transfer request: 0.
2022-05-12 22:32:52,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:52,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) about to wait for the following futures []
2022-05-12 22:32:52,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) done waiting for dependent futures
2022-05-12 22:32:52,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140247040}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 140247040}
2022-05-12 22:32:52,738 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:52,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91750400}) to executor  for transfer request: 0.
2022-05-12 22:32:52,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:52,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) about to wait for the following futures []
2022-05-12 22:32:52,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) done waiting for dependent futures
2022-05-12 22:32:52,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91750400}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 91750400}
2022-05-12 22:32:52,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:52,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130023424}) to executor  for transfer request: 0.
2022-05-12 22:32:52,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:52,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) about to wait for the following futures []
2022-05-12 22:32:52,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) done waiting for dependent futures
2022-05-12 22:32:52,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130023424}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 130023424}
2022-05-12 22:32:52,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:53,904 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98828288}) to executor  for transfer request: 0.
2022-05-12 22:32:53,904 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:53,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) about to wait for the following futures []
2022-05-12 22:32:53,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) done waiting for dependent futures
2022-05-12 22:32:53,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98828288}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 98828288}
2022-05-12 22:32:53,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146538496}) to executor  for transfer request: 0.
2022-05-12 22:32:57,412 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) about to wait for the following futures []
2022-05-12 22:32:57,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) done waiting for dependent futures
2022-05-12 22:32:57,412 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146538496}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 146538496}
2022-05-12 22:32:57,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,812 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121896960}) to executor  for transfer request: 0.
2022-05-12 22:32:57,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) about to wait for the following futures []
2022-05-12 22:32:57,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) done waiting for dependent futures
2022-05-12 22:32:57,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121896960}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 121896960}
2022-05-12 22:32:57,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:58,651 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107479040}) to executor  for transfer request: 0.
2022-05-12 22:32:58,651 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:58,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) about to wait for the following futures []
2022-05-12 22:32:58,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) done waiting for dependent futures
2022-05-12 22:32:58,652 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107479040}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 107479040}
2022-05-12 22:32:58,652 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:58,955 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92012544}) to executor  for transfer request: 0.
2022-05-12 22:32:58,955 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:58,955 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:58,955 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) about to wait for the following futures []
2022-05-12 22:32:58,955 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) done waiting for dependent futures
2022-05-12 22:32:58,956 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=150994944-159383551'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 150994944, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:58,956 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:58,956 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:58,956 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:58,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) about to wait for the following futures []
2022-05-12 22:32:58,956 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:58,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) done waiting for dependent futures
2022-05-12 22:32:58,956 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:58,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92012544}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 92012544}
2022-05-12 22:32:58,957 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:58,957 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:58,957 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:32:58,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:58,957 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:58,958 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:58,958 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=150994944-159383551', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:58,958 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:58,958 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:58,958 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:58,958 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:58,959 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:58,959 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:58,959 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:32:58,959 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:32:58,959 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:58,959 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=150994944-159383551
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223258Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:58,959 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223258Z
20220512/eu-central-1/s3/aws4_request
f947e1ed60ddc8690f545383fca5950fa451168a40c008f3c4fec9913c5cec8d
2022-05-12 22:32:58,959 botocore.auth DEBUG    Signature:
8f342073f586ed329a1083fc5b845ed08c8d45f79c51b037243f173aaa145012
2022-05-12 22:32:58,960 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:58,960 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:58,960 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:58,960 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:58,960 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:00,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99090432}) to executor  for transfer request: 0.
2022-05-12 22:33:00,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:00,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) about to wait for the following futures []
2022-05-12 22:33:00,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) done waiting for dependent futures
2022-05-12 22:33:00,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99090432}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 99090432}
2022-05-12 22:33:00,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:00,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140509184}) to executor  for transfer request: 0.
2022-05-12 22:33:00,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:00,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) about to wait for the following futures []
2022-05-12 22:33:00,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) done waiting for dependent futures
2022-05-12 22:33:00,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140509184}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 140509184}
2022-05-12 22:33:00,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:33:01,187 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:33:01,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:33:01,187 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2621440}
2022-05-12 22:33:01,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:02,588 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:33:02,588 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:02,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:33:02,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:33:02,589 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 1835008}
2022-05-12 22:33:02,589 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:02,867 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:02,868 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NfNuBLZPqdl5iwWUbz+7ndgyPY/ZJAc/QvFkzYwgkIgve03+DmYUUe9MdpA63aJ0Z37WoYIBjc0=', 'x-amz-request-id': 'XM5GMFKC0N4H6MXN', 'Date': 'Thu, 12 May 2022 22:33:03 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 150994944-159383551/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:02,868 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:02,868 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:02,869 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:02,869 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:03,634 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:33:03,634 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:03,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:33:03,635 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:33:03,635 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 24117248}
2022-05-12 22:33:03,635 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:04,406 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146800640}) to executor  for transfer request: 0.
2022-05-12 22:33:04,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:04,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) about to wait for the following futures []
2022-05-12 22:33:04,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) done waiting for dependent futures
2022-05-12 22:33:04,407 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146800640}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 146800640}
2022-05-12 22:33:04,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:04,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107741184}) to executor  for transfer request: 0.
2022-05-12 22:33:04,412 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:04,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) about to wait for the following futures []
2022-05-12 22:33:04,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) done waiting for dependent futures
2022-05-12 22:33:04,413 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107741184}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 107741184}
2022-05-12 22:33:04,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130285568}) to executor  for transfer request: 0.
2022-05-12 22:33:05,148 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:05,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) about to wait for the following futures []
2022-05-12 22:33:05,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) done waiting for dependent futures
2022-05-12 22:33:05,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130285568}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 130285568}
2022-05-12 22:33:05,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122159104}) to executor  for transfer request: 0.
2022-05-12 22:33:05,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:05,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) about to wait for the following futures []
2022-05-12 22:33:05,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) done waiting for dependent futures
2022-05-12 22:33:05,908 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122159104}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 122159104}
2022-05-12 22:33:05,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:06,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140771328}) to executor  for transfer request: 0.
2022-05-12 22:33:06,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:06,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) about to wait for the following futures []
2022-05-12 22:33:06,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) done waiting for dependent futures
2022-05-12 22:33:06,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140771328}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 140771328}
2022-05-12 22:33:06,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:07,151 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99352576}) to executor  for transfer request: 0.
2022-05-12 22:33:07,151 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:07,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) about to wait for the following futures []
2022-05-12 22:33:07,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) done waiting for dependent futures
2022-05-12 22:33:07,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99352576}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 99352576}
2022-05-12 22:33:07,152 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:08,549 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:33:08,549 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:08,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:33:08,550 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:33:08,550 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2883584}
2022-05-12 22:33:08,550 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,941 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150994944}) to executor  for transfer request: 0.
2022-05-12 22:33:10,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) about to wait for the following futures []
2022-05-12 22:33:10,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) done waiting for dependent futures
2022-05-12 22:33:10,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150994944}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 150994944}
2022-05-12 22:33:10,942 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:11,915 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147062784}) to executor  for transfer request: 0.
2022-05-12 22:33:11,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:11,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) about to wait for the following futures []
2022-05-12 22:33:11,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) done waiting for dependent futures
2022-05-12 22:33:11,916 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147062784}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 147062784}
2022-05-12 22:33:11,916 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:12,335 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99614720}) to executor  for transfer request: 0.
2022-05-12 22:33:12,335 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:12,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) about to wait for the following futures []
2022-05-12 22:33:12,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) done waiting for dependent futures
2022-05-12 22:33:12,336 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99614720}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 99614720}
2022-05-12 22:33:12,336 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:12,627 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122421248}) to executor  for transfer request: 0.
2022-05-12 22:33:12,627 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:12,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) about to wait for the following futures []
2022-05-12 22:33:12,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) done waiting for dependent futures
2022-05-12 22:33:12,628 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122421248}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 122421248}
2022-05-12 22:33:12,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:12,800 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141033472}) to executor  for transfer request: 0.
2022-05-12 22:33:12,800 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:12,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) about to wait for the following futures []
2022-05-12 22:33:12,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) done waiting for dependent futures
2022-05-12 22:33:12,800 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141033472}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 141033472}
2022-05-12 22:33:12,801 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,714 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130547712}) to executor  for transfer request: 0.
2022-05-12 22:33:13,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,715 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) about to wait for the following futures []
2022-05-12 22:33:13,715 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) done waiting for dependent futures
2022-05-12 22:33:13,715 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130547712}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 130547712}
2022-05-12 22:33:13,715 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,891 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115343360}) to executor  for transfer request: 0.
2022-05-12 22:33:13,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) about to wait for the following futures []
2022-05-12 22:33:13,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) done waiting for dependent futures
2022-05-12 22:33:13,892 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115343360}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 115343360}
2022-05-12 22:33:13,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:15,242 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147324928}) to executor  for transfer request: 0.
2022-05-12 22:33:15,242 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:15,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) about to wait for the following futures []
2022-05-12 22:33:15,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) done waiting for dependent futures
2022-05-12 22:33:15,243 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147324928}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 147324928}
2022-05-12 22:33:15,243 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:17,122 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:33:17,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:17,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:33:17,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:33:17,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3145728}
2022-05-12 22:33:17,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:18,753 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147587072}) to executor  for transfer request: 0.
2022-05-12 22:33:18,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:18,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) about to wait for the following futures []
2022-05-12 22:33:18,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) done waiting for dependent futures
2022-05-12 22:33:18,754 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147587072}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 147587072}
2022-05-12 22:33:18,755 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:19,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151257088}) to executor  for transfer request: 0.
2022-05-12 22:33:19,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:19,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) about to wait for the following futures []
2022-05-12 22:33:19,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) done waiting for dependent futures
2022-05-12 22:33:19,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151257088}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 151257088}
2022-05-12 22:33:19,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:19,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141295616}) to executor  for transfer request: 0.
2022-05-12 22:33:19,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:19,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) about to wait for the following futures []
2022-05-12 22:33:19,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) done waiting for dependent futures
2022-05-12 22:33:19,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141295616}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 141295616}
2022-05-12 22:33:19,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:20,207 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:33:20,207 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:20,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:33:20,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:33:20,207 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 29097984}
2022-05-12 22:33:20,208 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:21,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99876864}) to executor  for transfer request: 0.
2022-05-12 22:33:21,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:21,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) about to wait for the following futures []
2022-05-12 22:33:21,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) done waiting for dependent futures
2022-05-12 22:33:21,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99876864}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 99876864}
2022-05-12 22:33:21,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:22,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130809856}) to executor  for transfer request: 0.
2022-05-12 22:33:22,210 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:22,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) about to wait for the following futures []
2022-05-12 22:33:22,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) done waiting for dependent futures
2022-05-12 22:33:22,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130809856}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 130809856}
2022-05-12 22:33:22,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:22,598 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:33:22,598 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:22,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:33:22,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:33:22,599 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 2097152}
2022-05-12 22:33:22,599 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122683392}) to executor  for transfer request: 0.
2022-05-12 22:33:23,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) about to wait for the following futures []
2022-05-12 22:33:23,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) done waiting for dependent futures
2022-05-12 22:33:23,235 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122683392}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 122683392}
2022-05-12 22:33:23,235 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,979 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141557760}) to executor  for transfer request: 0.
2022-05-12 22:33:25,979 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) about to wait for the following futures []
2022-05-12 22:33:25,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) done waiting for dependent futures
2022-05-12 22:33:25,979 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141557760}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 141557760}
2022-05-12 22:33:25,980 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:26,445 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:33:26,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:26,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:33:26,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:33:26,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3407872}
2022-05-12 22:33:26,446 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:26,806 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147849216}) to executor  for transfer request: 0.
2022-05-12 22:33:26,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:26,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) about to wait for the following futures []
2022-05-12 22:33:26,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) done waiting for dependent futures
2022-05-12 22:33:26,807 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147849216}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 147849216}
2022-05-12 22:33:26,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:27,549 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108003328}) to executor  for transfer request: 0.
2022-05-12 22:33:27,549 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:27,550 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) about to wait for the following futures []
2022-05-12 22:33:27,550 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) done waiting for dependent futures
2022-05-12 22:33:27,550 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108003328}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 108003328}
2022-05-12 22:33:27,550 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:29,699 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100139008}) to executor  for transfer request: 0.
2022-05-12 22:33:29,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:29,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) about to wait for the following futures []
2022-05-12 22:33:29,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) done waiting for dependent futures
2022-05-12 22:33:29,700 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100139008}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 100139008}
2022-05-12 22:33:29,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151519232}) to executor  for transfer request: 0.
2022-05-12 22:33:30,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) about to wait for the following futures []
2022-05-12 22:33:30,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) done waiting for dependent futures
2022-05-12 22:33:30,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151519232}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 151519232}
2022-05-12 22:33:30,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,884 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148111360}) to executor  for transfer request: 0.
2022-05-12 22:33:30,884 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) about to wait for the following futures []
2022-05-12 22:33:30,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) done waiting for dependent futures
2022-05-12 22:33:30,885 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148111360}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 148111360}
2022-05-12 22:33:30,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:31,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122945536}) to executor  for transfer request: 0.
2022-05-12 22:33:31,076 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:31,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) about to wait for the following futures []
2022-05-12 22:33:31,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) done waiting for dependent futures
2022-05-12 22:33:31,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122945536}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 122945536}
2022-05-12 22:33:31,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:31,776 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131072000}) to executor  for transfer request: 0.
2022-05-12 22:33:31,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:31,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) about to wait for the following futures []
2022-05-12 22:33:31,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) done waiting for dependent futures
2022-05-12 22:33:31,777 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131072000}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 131072000}
2022-05-12 22:33:31,777 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:32,230 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115605504}) to executor  for transfer request: 0.
2022-05-12 22:33:32,230 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:32,231 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) about to wait for the following futures []
2022-05-12 22:33:32,231 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) done waiting for dependent futures
2022-05-12 22:33:32,231 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115605504}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 115605504}
2022-05-12 22:33:32,231 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:32,444 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141819904}) to executor  for transfer request: 0.
2022-05-12 22:33:32,445 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:32,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) about to wait for the following futures []
2022-05-12 22:33:32,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) done waiting for dependent futures
2022-05-12 22:33:32,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141819904}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 141819904}
2022-05-12 22:33:32,446 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:32,758 s3transfer.download DEBUG    Retrying exception caught (Read timeout on endpoint URL: "None"), retrying request, (attempt 0 / 5)
Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 436, in _error_catcher
    yield
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 518, in read
    data = self._fp.read(amt) if not fp_closed else b""
  File "/usr/lib/python3.8/http/client.py", line 459, in read
    n = self.readinto(b)
  File "/usr/lib/python3.8/http/client.py", line 503, in readinto
    n = self.fp.readinto(b)
  File "/usr/lib/python3.8/socket.py", line 669, in readinto
    return self._sock.recv_into(b)
  File "/usr/lib/python3.8/ssl.py", line 1241, in recv_into
    return self.read(nbytes, buffer)
  File "/usr/lib/python3.8/ssl.py", line 1099, in read
    return self._sslobj.read(len, buffer)
socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 99, in read
    chunk = self._raw_stream.read(amt)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 540, in read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__
    self.gen.throw(type, value, traceback)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 441, in _error_catcher
    raise ReadTimeoutError(self._pool, None, "Read timed out.")
urllib3.exceptions.ReadTimeoutError: AWSHTTPSConnectionPool(host='plot-delineation.s3.eu-central-1.amazonaws.com', port=443): Read timed out.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 583, in _main
    for chunk in chunks:
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 728, in __next__
    chunk = self._body.read(self._chunksize)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/utils.py", line 599, in read
    value = self._stream.read(*args, **kwargs)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 102, in read
    raise ReadTimeoutError(endpoint_url=e.url, error=e)
botocore.exceptions.ReadTimeoutError: Read timeout on endpoint URL: "None"
2022-05-12 22:33:32,759 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:32,759 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:32,759 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:32,759 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:32,759 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:32,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:32,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:32,759 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:33:32,760 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:32,760 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:32,760 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:32,760 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:32,760 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:32,760 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:32,760 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:32,760 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:32,760 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:32,760 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:33:32,760 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask/CLM.npy
2022-05-12 22:33:32,761 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:32,761 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223332Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:32,761 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223332Z
20220512/eu-central-1/s3/aws4_request
5bc2ef8a2d1e1f540bfe11ee9e583d9f90d371a6cd1c16412980de489a3a6712
2022-05-12 22:33:32,761 botocore.auth DEBUG    Signature:
e688e6c0514fc7adeb07e357dd9607d55b05c8e9a6c4e96d6f72b3c558e339d2
2022-05-12 22:33:32,761 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:32,761 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:32,762 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:32,762 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:32,762 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:33,663 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:33,663 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UKBQdc5M/Ruk78dfU/4zjFZjh+MGrhHz2DSUKxDrzEOhwyOPO6FpHPav57BpszPquoqOFrkcy1U=', 'x-amz-request-id': 'H2WSX5QF4R6983SN', 'Date': 'Thu, 12 May 2022 22:33:34 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:44 GMT', 'ETag': '"aacc9a9fd97d2a18e07a6a533e6436f0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:33,664 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:33,664 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:33,665 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:33,665 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:34,270 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:33:34,270 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:34,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:33:34,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:33:34,270 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 29360128}
2022-05-12 22:33:34,271 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:35,529 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100401152}) to executor  for transfer request: 0.
2022-05-12 22:33:35,529 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:35,529 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:35,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) about to wait for the following futures []
2022-05-12 22:33:35,529 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) about to wait for the following futures []
2022-05-12 22:33:35,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) done waiting for dependent futures
2022-05-12 22:33:35,530 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) done waiting for dependent futures
2022-05-12 22:33:35,530 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100401152}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 100401152}
2022-05-12 22:33:35,530 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=159383552-167772159'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 159383552, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:35,531 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:35,531 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:35,531 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:35,531 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:35,531 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:35,531 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:35,532 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:35,532 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:35,532 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:33:35,532 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:35,532 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:35,532 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=159383552-167772159', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:35,532 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:35,532 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:35,533 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:35,533 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:35,533 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:35,533 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:35,533 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:33:35,533 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:33:35,533 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:35,533 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=159383552-167772159
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223335Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:35,534 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223335Z
20220512/eu-central-1/s3/aws4_request
eb68b6b97dec3686f5a7af3a0ab2ccecacae56c5e3a7cdb8f7ad6908b150be00
2022-05-12 22:33:35,534 botocore.auth DEBUG    Signature:
0bc6576954c210e64daf661f17526f4fcc5d9d22571bead2078f8e7228344383
2022-05-12 22:33:35,534 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:35,534 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:35,534 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:35,534 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:35,535 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:36,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:33:36,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:33:36,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:33:36,046 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 16777216}
2022-05-12 22:33:36,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,123 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:33:36,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:33:36,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:33:36,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3670016}
2022-05-12 22:33:36,124 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,246 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142082048}) to executor  for transfer request: 0.
2022-05-12 22:33:37,247 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:37,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) about to wait for the following futures []
2022-05-12 22:33:37,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) done waiting for dependent futures
2022-05-12 22:33:37,247 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142082048}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 142082048}
2022-05-12 22:33:37,247 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148373504}) to executor  for transfer request: 0.
2022-05-12 22:33:37,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:37,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) about to wait for the following futures []
2022-05-12 22:33:37,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) done waiting for dependent futures
2022-05-12 22:33:37,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148373504}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 148373504}
2022-05-12 22:33:37,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:38,031 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123207680}) to executor  for transfer request: 0.
2022-05-12 22:33:38,031 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:38,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) about to wait for the following futures []
2022-05-12 22:33:38,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) done waiting for dependent futures
2022-05-12 22:33:38,032 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123207680}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 123207680}
2022-05-12 22:33:38,032 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:38,493 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108265472}) to executor  for transfer request: 0.
2022-05-12 22:33:38,493 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:38,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) about to wait for the following futures []
2022-05-12 22:33:38,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) done waiting for dependent futures
2022-05-12 22:33:38,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108265472}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 108265472}
2022-05-12 22:33:38,494 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:38,687 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:33:38,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:38,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:33:38,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:33:38,688 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 2359296}
2022-05-12 22:33:38,688 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:39,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151781376}) to executor  for transfer request: 0.
2022-05-12 22:33:39,076 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:39,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) about to wait for the following futures []
2022-05-12 22:33:39,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) done waiting for dependent futures
2022-05-12 22:33:39,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151781376}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 151781376}
2022-05-12 22:33:39,078 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:40,720 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:33:40,720 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:40,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:33:40,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:33:40,721 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17039360}
2022-05-12 22:33:40,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:40,746 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:40,746 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'yGe4tY50Q5PK/6QN/1Z7egjFkbq1FyhUG77lCL9PZ6kRxqHF2DK4a4NNaH0Eo5t2B2znrtDUriM=', 'x-amz-request-id': 'HVZ6YGTPN94K1E9B', 'Date': 'Thu, 12 May 2022 22:33:41 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 159383552-167772159/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:40,746 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:40,747 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:40,747 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:40,747 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:41,447 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131334144}) to executor  for transfer request: 0.
2022-05-12 22:33:41,447 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:41,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) about to wait for the following futures []
2022-05-12 22:33:41,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) done waiting for dependent futures
2022-05-12 22:33:41,448 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131334144}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 131334144}
2022-05-12 22:33:41,448 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:42,487 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:33:42,487 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:42,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:33:42,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:33:42,488 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 24379392}
2022-05-12 22:33:42,488 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:42,746 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:33:42,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:42,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:33:42,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:33:42,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3932160}
2022-05-12 22:33:42,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,783 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142344192}) to executor  for transfer request: 0.
2022-05-12 22:33:44,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:44,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,783 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) about to wait for the following futures []
2022-05-12 22:33:44,783 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) done waiting for dependent futures
2022-05-12 22:33:44,783 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=167772160-176160767'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 167772160, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:44,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:44,784 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:44,784 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:44,784 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:44,784 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:44,784 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:44,784 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:44,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) about to wait for the following futures []
2022-05-12 22:33:44,784 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:33:44,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) done waiting for dependent futures
2022-05-12 22:33:44,785 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:44,785 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142344192}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 142344192}
2022-05-12 22:33:44,785 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:44,785 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=167772160-176160767', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:44,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:44,785 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:44,786 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:44,786 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:44,786 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:44,786 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:44,786 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:33:44,786 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:33:44,786 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:44,787 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=167772160-176160767
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223344Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:44,787 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223344Z
20220512/eu-central-1/s3/aws4_request
5569af1b4b243999c2ac45f7d26639eeb634e178cba8dccc6d09d91cd99b2f62
2022-05-12 22:33:44,787 botocore.auth DEBUG    Signature:
5d164e2ea7e106ef90227076e7d78598b4dc93411e06f8637790d9c882a1319e
2022-05-12 22:33:44,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:44,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:44,787 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:44,787 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:44,788 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:45,206 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115867648}) to executor  for transfer request: 0.
2022-05-12 22:33:45,206 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:45,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) about to wait for the following futures []
2022-05-12 22:33:45,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) done waiting for dependent futures
2022-05-12 22:33:45,207 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115867648}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 115867648}
2022-05-12 22:33:45,207 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:45,905 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148635648}) to executor  for transfer request: 0.
2022-05-12 22:33:45,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:45,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) about to wait for the following futures []
2022-05-12 22:33:45,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) done waiting for dependent futures
2022-05-12 22:33:45,906 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148635648}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 148635648}
2022-05-12 22:33:45,906 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:46,392 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159383552}) to executor  for transfer request: 0.
2022-05-12 22:33:46,392 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:46,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) about to wait for the following futures []
2022-05-12 22:33:46,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) done waiting for dependent futures
2022-05-12 22:33:46,393 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159383552}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 159383552}
2022-05-12 22:33:46,393 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:47,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123469824}) to executor  for transfer request: 0.
2022-05-12 22:33:47,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:47,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) about to wait for the following futures []
2022-05-12 22:33:47,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) done waiting for dependent futures
2022-05-12 22:33:47,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123469824}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 123469824}
2022-05-12 22:33:47,726 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:48,399 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:33:48,400 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:48,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:33:48,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:33:48,400 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4194304}
2022-05-12 22:33:48,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:48,711 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:48,712 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jJLfDw2KoPBh1cJm+hOEZk46GzMIETfAeJ+em4QU3h628tUE8YTy9Lx60gezEjslDVtpKQ00Qvk=', 'x-amz-request-id': '6EYDS74C56PZ72Z9', 'Date': 'Thu, 12 May 2022 22:33:49 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 167772160-176160767/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:48,712 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:48,713 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:48,713 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:48,713 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:49,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152043520}) to executor  for transfer request: 0.
2022-05-12 22:33:49,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) about to wait for the following futures []
2022-05-12 22:33:49,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) done waiting for dependent futures
2022-05-12 22:33:49,736 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152043520}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 152043520}
2022-05-12 22:33:49,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:50,530 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:33:50,530 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:50,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:33:50,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:33:50,531 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17301504}
2022-05-12 22:33:50,531 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,093 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:33:51,094 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,094 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:33:51,094 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:33:51,094 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 29622272}
2022-05-12 22:33:51,095 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,756 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131596288}) to executor  for transfer request: 0.
2022-05-12 22:33:51,756 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,756 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) about to wait for the following futures []
2022-05-12 22:33:51,756 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) done waiting for dependent futures
2022-05-12 22:33:51,757 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131596288}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 131596288}
2022-05-12 22:33:51,757 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108527616}) to executor  for transfer request: 0.
2022-05-12 22:33:51,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) about to wait for the following futures []
2022-05-12 22:33:51,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) done waiting for dependent futures
2022-05-12 22:33:51,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108527616}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 108527616}
2022-05-12 22:33:51,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,141 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116129792}) to executor  for transfer request: 0.
2022-05-12 22:33:52,141 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) about to wait for the following futures []
2022-05-12 22:33:52,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) done waiting for dependent futures
2022-05-12 22:33:52,142 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116129792}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 116129792}
2022-05-12 22:33:52,142 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148897792}) to executor  for transfer request: 0.
2022-05-12 22:33:52,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) about to wait for the following futures []
2022-05-12 22:33:52,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) done waiting for dependent futures
2022-05-12 22:33:52,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148897792}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 148897792}
2022-05-12 22:33:52,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,562 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159645696}) to executor  for transfer request: 0.
2022-05-12 22:33:52,562 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) about to wait for the following futures []
2022-05-12 22:33:52,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) done waiting for dependent futures
2022-05-12 22:33:52,563 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159645696}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 159645696}
2022-05-12 22:33:52,563 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:53,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:33:53,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:53,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:33:53,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:33:53,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 24641536}
2022-05-12 22:33:53,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:54,970 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167772160}) to executor  for transfer request: 0.
2022-05-12 22:33:54,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:54,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) about to wait for the following futures []
2022-05-12 22:33:54,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) done waiting for dependent futures
2022-05-12 22:33:54,971 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167772160}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 167772160}
2022-05-12 22:33:54,971 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:56,006 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:33:56,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:56,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:33:56,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:33:56,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4456448}
2022-05-12 22:33:56,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:56,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149159936}) to executor  for transfer request: 0.
2022-05-12 22:33:56,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:56,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) about to wait for the following futures []
2022-05-12 22:33:56,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) done waiting for dependent futures
2022-05-12 22:33:56,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149159936}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 149159936}
2022-05-12 22:33:56,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:57,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159907840}) to executor  for transfer request: 0.
2022-05-12 22:33:57,397 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:57,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) about to wait for the following futures []
2022-05-12 22:33:57,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) done waiting for dependent futures
2022-05-12 22:33:57,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159907840}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 159907840}
2022-05-12 22:33:57,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:57,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123731968}) to executor  for transfer request: 0.
2022-05-12 22:33:57,685 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:57,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) about to wait for the following futures []
2022-05-12 22:33:57,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) done waiting for dependent futures
2022-05-12 22:33:57,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123731968}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 123731968}
2022-05-12 22:33:57,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:58,161 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:33:58,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:58,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:33:58,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:33:58,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17563648}
2022-05-12 22:33:58,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:58,246 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116391936}) to executor  for transfer request: 0.
2022-05-12 22:33:58,246 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:58,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) about to wait for the following futures []
2022-05-12 22:33:58,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) done waiting for dependent futures
2022-05-12 22:33:58,247 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116391936}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 116391936}
2022-05-12 22:33:58,247 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108789760}) to executor  for transfer request: 0.
2022-05-12 22:33:59,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,136 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) about to wait for the following futures []
2022-05-12 22:33:59,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) about to wait for the following futures []
2022-05-12 22:33:59,137 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) done waiting for dependent futures
2022-05-12 22:33:59,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) done waiting for dependent futures
2022-05-12 22:33:59,137 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=176160768-184549375'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 176160768, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:59,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108789760}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 108789760}
2022-05-12 22:33:59,138 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:59,138 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:59,138 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:59,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,138 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:59,138 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:59,139 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:59,139 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:59,139 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:33:59,139 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:59,139 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:59,139 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=176160768-184549375', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:59,139 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:59,139 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:59,140 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:59,140 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:59,140 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:59,140 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:59,140 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:33:59,140 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:33:59,140 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:59,140 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=176160768-184549375
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223359Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:59,140 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223359Z
20220512/eu-central-1/s3/aws4_request
ebdddffe110306f90a77cfacaa0e9f56948ed84d06de410c750289bb4c2ef96f
2022-05-12 22:33:59,141 botocore.auth DEBUG    Signature:
cb6aff5bf413c4ab3c97eb522bd5eb3c75ce6bcaf23fe047b7b2f739f9c4e5b9
2022-05-12 22:33:59,141 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:59,141 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:59,141 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:59,141 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:59,141 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:59,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131858432}) to executor  for transfer request: 0.
2022-05-12 22:33:59,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) about to wait for the following futures []
2022-05-12 22:33:59,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) done waiting for dependent futures
2022-05-12 22:33:59,226 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131858432}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 131858432}
2022-05-12 22:33:59,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,472 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:33:59,472 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:33:59,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:33:59,473 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 2621440}
2022-05-12 22:33:59,474 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:00,056 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:34:00,057 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'y82j/WX2evT9Lr80A4uPZ5Sps7SCUlV59QIw87mkI0uW4QefphiZKjhwGrKvPHi1Na8KaVpgXU8=', 'x-amz-request-id': 'W9ZHDCEPMNT4RB02', 'Date': 'Thu, 12 May 2022 22:34:00 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 176160768-184549375/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:34:00,057 botocore.parsers DEBUG    Response body:

2022-05-12 22:34:00,058 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:34:00,058 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:34:00,058 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:34:00,469 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152305664}) to executor  for transfer request: 0.
2022-05-12 22:34:00,469 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:00,469 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) about to wait for the following futures []
2022-05-12 22:34:00,469 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) done waiting for dependent futures
2022-05-12 22:34:00,470 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152305664}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 152305664}
2022-05-12 22:34:00,470 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,590 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149422080}) to executor  for transfer request: 0.
2022-05-12 22:34:01,591 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:01,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) about to wait for the following futures []
2022-05-12 22:34:01,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) done waiting for dependent futures
2022-05-12 22:34:01,591 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149422080}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 149422080}
2022-05-12 22:34:01,592 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:02,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160169984}) to executor  for transfer request: 0.
2022-05-12 22:34:02,981 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:02,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) about to wait for the following futures []
2022-05-12 22:34:02,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) done waiting for dependent futures
2022-05-12 22:34:02,982 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160169984}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 160169984}
2022-05-12 22:34:02,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:04,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149684224}) to executor  for transfer request: 0.
2022-05-12 22:34:04,289 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:04,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) about to wait for the following futures []
2022-05-12 22:34:04,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) done waiting for dependent futures
2022-05-12 22:34:04,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149684224}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 149684224}
2022-05-12 22:34:04,291 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:04,367 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168034304}) to executor  for transfer request: 0.
2022-05-12 22:34:04,368 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:04,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) about to wait for the following futures []
2022-05-12 22:34:04,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) done waiting for dependent futures
2022-05-12 22:34:04,368 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168034304}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 168034304}
2022-05-12 22:34:04,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:04,420 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:34:04,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:04,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:34:04,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:34:04,421 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4718592}
2022-05-12 22:34:04,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:04,787 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:34:04,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:04,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:34:04,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:34:04,788 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17825792}
2022-05-12 22:34:04,788 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116654080}) to executor  for transfer request: 0.
2022-05-12 22:34:06,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) about to wait for the following futures []
2022-05-12 22:34:06,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) done waiting for dependent futures
2022-05-12 22:34:06,787 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116654080}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 116654080}
2022-05-12 22:34:06,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,961 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:34:06,962 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:34:06,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:34:06,962 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 29884416}
2022-05-12 22:34:06,963 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:07,958 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160432128}) to executor  for transfer request: 0.
2022-05-12 22:34:07,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:07,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) about to wait for the following futures []
2022-05-12 22:34:07,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) done waiting for dependent futures
2022-05-12 22:34:07,959 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160432128}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 160432128}
2022-05-12 22:34:07,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:08,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123994112}) to executor  for transfer request: 0.
2022-05-12 22:34:08,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:08,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) about to wait for the following futures []
2022-05-12 22:34:08,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) done waiting for dependent futures
2022-05-12 22:34:08,005 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123994112}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 123994112}
2022-05-12 22:34:08,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:08,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:34:08,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:08,639 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:34:08,639 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:08,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:08,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:34:08,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:34:08,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=25>, 'offset': 24903680}
2022-05-12 22:34:08,640 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:08,640 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:34:08,640 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:34:08,640 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:34:08,640 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:09,482 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132120576}) to executor  for transfer request: 0.
2022-05-12 22:34:09,482 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:09,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) about to wait for the following futures []
2022-05-12 22:34:09,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) done waiting for dependent futures
2022-05-12 22:34:09,483 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132120576}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 132120576}
2022-05-12 22:34:09,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:09,753 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149946368}) to executor  for transfer request: 0.
2022-05-12 22:34:09,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:09,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) about to wait for the following futures []
2022-05-12 22:34:09,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) done waiting for dependent futures
2022-05-12 22:34:09,754 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149946368}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 149946368}
2022-05-12 22:34:09,754 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:09,972 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176160768}) to executor  for transfer request: 0.
2022-05-12 22:34:09,972 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:09,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) about to wait for the following futures []
2022-05-12 22:34:09,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) done waiting for dependent futures
2022-05-12 22:34:09,973 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176160768}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 176160768}
2022-05-12 22:34:09,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:34:10,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:34:10,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:34:10,542 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4980736}
2022-05-12 22:34:10,543 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:11,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152567808}) to executor  for transfer request: 0.
2022-05-12 22:34:11,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:11,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) about to wait for the following futures []
2022-05-12 22:34:11,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) done waiting for dependent futures
2022-05-12 22:34:11,069 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152567808}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 152567808}
2022-05-12 22:34:11,069 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:11,831 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:34:11,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:11,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:34:11,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:34:11,832 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18087936}
2022-05-12 22:34:11,833 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:12,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168296448}) to executor  for transfer request: 0.
2022-05-12 22:34:12,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:12,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) about to wait for the following futures []
2022-05-12 22:34:12,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) done waiting for dependent futures
2022-05-12 22:34:12,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168296448}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 168296448}
2022-05-12 22:34:12,268 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:12,934 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160694272}) to executor  for transfer request: 0.
2022-05-12 22:34:12,934 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:12,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) about to wait for the following futures []
2022-05-12 22:34:12,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) done waiting for dependent futures
2022-05-12 22:34:12,935 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160694272}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 160694272}
2022-05-12 22:34:12,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:15,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116916224}) to executor  for transfer request: 0.
2022-05-12 22:34:15,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:15,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) about to wait for the following futures []
2022-05-12 22:34:15,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) done waiting for dependent futures
2022-05-12 22:34:15,723 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116916224}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 116916224}
2022-05-12 22:34:15,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:15,898 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150208512}) to executor  for transfer request: 0.
2022-05-12 22:34:15,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:15,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) about to wait for the following futures []
2022-05-12 22:34:15,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) done waiting for dependent futures
2022-05-12 22:34:15,898 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150208512}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 150208512}
2022-05-12 22:34:15,899 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:16,812 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:34:16,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:16,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:34:16,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:34:16,813 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 5242880}
2022-05-12 22:34:16,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:17,513 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168558592}) to executor  for transfer request: 0.
2022-05-12 22:34:17,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:17,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) about to wait for the following futures []
2022-05-12 22:34:17,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) done waiting for dependent futures
2022-05-12 22:34:17,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168558592}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 168558592}
2022-05-12 22:34:17,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:17,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132382720}) to executor  for transfer request: 0.
2022-05-12 22:34:17,969 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:17,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) about to wait for the following futures []
2022-05-12 22:34:17,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) done waiting for dependent futures
2022-05-12 22:34:17,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132382720}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 132382720}
2022-05-12 22:34:17,970 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:18,814 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124256256}) to executor  for transfer request: 0.
2022-05-12 22:34:18,815 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:18,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) about to wait for the following futures []
2022-05-12 22:34:18,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) done waiting for dependent futures
2022-05-12 22:34:18,815 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124256256}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 124256256}
2022-05-12 22:34:18,816 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:18,883 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:34:18,883 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:18,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:34:18,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:34:18,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18350080}
2022-05-12 22:34:18,884 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:20,437 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176422912}) to executor  for transfer request: 0.
2022-05-12 22:34:20,437 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:20,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) about to wait for the following futures []
2022-05-12 22:34:20,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) done waiting for dependent futures
2022-05-12 22:34:20,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176422912}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 176422912}
2022-05-12 22:34:20,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:20,822 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160956416}) to executor  for transfer request: 0.
2022-05-12 22:34:20,822 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:20,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) about to wait for the following futures []
2022-05-12 22:34:20,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) done waiting for dependent futures
2022-05-12 22:34:20,822 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160956416}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 160956416}
2022-05-12 22:34:20,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:21,753 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150470656}) to executor  for transfer request: 0.
2022-05-12 22:34:21,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:21,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) about to wait for the following futures []
2022-05-12 22:34:21,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) done waiting for dependent futures
2022-05-12 22:34:21,754 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150470656}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 150470656}
2022-05-12 22:34:21,754 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:22,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152829952}) to executor  for transfer request: 0.
2022-05-12 22:34:22,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:22,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) about to wait for the following futures []
2022-05-12 22:34:22,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) done waiting for dependent futures
2022-05-12 22:34:22,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152829952}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 152829952}
2022-05-12 22:34:22,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:23,607 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176685056}) to executor  for transfer request: 0.
2022-05-12 22:34:23,607 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:23,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) about to wait for the following futures []
2022-05-12 22:34:23,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) done waiting for dependent futures
2022-05-12 22:34:23,607 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176685056}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 176685056}
2022-05-12 22:34:23,608 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:23,737 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:34:23,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:23,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:34:23,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:34:23,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 5505024}
2022-05-12 22:34:23,738 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,887 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117178368}) to executor  for transfer request: 0.
2022-05-12 22:34:24,888 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:24,888 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) about to wait for the following futures []
2022-05-12 22:34:24,888 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) about to wait for the following futures []
2022-05-12 22:34:24,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) done waiting for dependent futures
2022-05-12 22:34:24,889 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) done waiting for dependent futures
2022-05-12 22:34:24,889 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117178368}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 117178368}
2022-05-12 22:34:24,889 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=184549376-192937983'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 184549376, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:34:24,890 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:24,890 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:24,890 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,890 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:24,890 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:24,890 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:24,890 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:24,890 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:34:24,890 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:34:24,890 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:24,891 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:24,891 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=184549376-192937983', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:34:24,891 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:24,891 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:34:24,891 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:24,891 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:24,891 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:34:24,891 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:34:24,891 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:34:24,891 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:34:24,891 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:34:24,891 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=184549376-192937983
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223424Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:34:24,891 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223424Z
20220512/eu-central-1/s3/aws4_request
851d9d90c97b2139c3ca992a51488ed1c2c09368262b159b1bf0ce30bc373b69
2022-05-12 22:34:24,891 botocore.auth DEBUG    Signature:
0cdd704999d02da6f8da4494b289e33fcd2f4ac364d8ba462cb5b92f01c4c8bc
2022-05-12 22:34:24,891 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:24,891 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:24,891 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:34:24,891 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:34:24,892 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:34:24,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:34:24,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:24,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:34:24,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:34:24,912 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 2883584}
2022-05-12 22:34:24,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:25,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168820736}) to executor  for transfer request: 0.
2022-05-12 22:34:25,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:25,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) about to wait for the following futures []
2022-05-12 22:34:25,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) done waiting for dependent futures
2022-05-12 22:34:25,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168820736}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 168820736}
2022-05-12 22:34:25,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:25,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:34:25,514 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:25,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:34:25,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:34:25,515 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18612224}
2022-05-12 22:34:25,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:26,280 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161218560}) to executor  for transfer request: 0.
2022-05-12 22:34:26,280 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:26,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) about to wait for the following futures []
2022-05-12 22:34:26,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) done waiting for dependent futures
2022-05-12 22:34:26,281 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161218560}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 161218560}
2022-05-12 22:34:26,281 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:27,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124518400}) to executor  for transfer request: 0.
2022-05-12 22:34:27,323 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:27,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) about to wait for the following futures []
2022-05-12 22:34:27,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) done waiting for dependent futures
2022-05-12 22:34:27,323 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124518400}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 124518400}
2022-05-12 22:34:27,324 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:27,652 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132644864}) to executor  for transfer request: 0.
2022-05-12 22:34:27,652 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:27,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) about to wait for the following futures []
2022-05-12 22:34:27,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) done waiting for dependent futures
2022-05-12 22:34:27,653 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132644864}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 132644864}
2022-05-12 22:34:27,653 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:28,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150732800}) to executor  for transfer request: 0.
2022-05-12 22:34:28,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:28,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:28,484 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) about to wait for the following futures []
2022-05-12 22:34:28,484 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) done waiting for dependent futures
2022-05-12 22:34:28,484 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=192937984-201326591'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 192937984, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:34:28,484 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:28,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) about to wait for the following futures []
2022-05-12 22:34:28,485 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:28,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) done waiting for dependent futures
2022-05-12 22:34:28,485 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:28,485 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150732800}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 150732800}
2022-05-12 22:34:28,485 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:28,486 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:28,486 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:28,486 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:28,486 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:34:28,487 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:34:28,487 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:28,487 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:28,487 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=192937984-201326591', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:34:28,487 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:28,487 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:34:28,487 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:28,488 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:28,488 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:34:28,488 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:34:28,488 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:34:28,488 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:34:28,488 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:34:28,488 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=192937984-201326591
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223428Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:34:28,488 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223428Z
20220512/eu-central-1/s3/aws4_request
498fff092980e5f495ad4f1a7a0879b1b04ba02922c8cad1b2d0959e76ded7d8
2022-05-12 22:34:28,489 botocore.auth DEBUG    Signature:
92e009988e2c8e694f5d233c4c61a9300b31338247dc37074c5ad32459c80a1b
2022-05-12 22:34:28,489 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:28,489 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:28,489 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:34:28,489 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:34:28,490 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:34:29,224 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:34:29,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:29,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:34:29,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:34:29,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18874368}
2022-05-12 22:34:29,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:30,394 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:34:30,394 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1QQXekzZLny1JXsOdat6vsUajSQSFf2dIIzQ8qVl/J71DpbRLcB6+isX0Vmn7skMrgMOFxc2UFk=', 'x-amz-request-id': 'Z871A6VYKKJA0N0P', 'Date': 'Thu, 12 May 2022 22:34:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 184549376-192937983/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:34:30,394 botocore.parsers DEBUG    Response body:

2022-05-12 22:34:30,395 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:34:30,395 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:34:30,395 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:34:31,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161480704}) to executor  for transfer request: 0.
2022-05-12 22:34:31,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) about to wait for the following futures []
2022-05-12 22:34:31,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) done waiting for dependent futures
2022-05-12 22:34:31,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161480704}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 161480704}
2022-05-12 22:34:31,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:34:31,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:34:31,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:34:31,424 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 30146560}
2022-05-12 22:34:31,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,851 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153092096}) to executor  for transfer request: 0.
2022-05-12 22:34:31,851 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) about to wait for the following futures []
2022-05-12 22:34:31,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) done waiting for dependent futures
2022-05-12 22:34:31,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153092096}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 153092096}
2022-05-12 22:34:31,852 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:32,285 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:34:32,285 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:32,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:34:32,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:34:32,286 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 5767168}
2022-05-12 22:34:32,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:33,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169082880}) to executor  for transfer request: 0.
2022-05-12 22:34:33,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:33,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) about to wait for the following futures []
2022-05-12 22:34:33,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) done waiting for dependent futures
2022-05-12 22:34:33,180 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169082880}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 169082880}
2022-05-12 22:34:33,180 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:34,094 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:34:34,094 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SvPT9OWPyNcXXf4q5fWGsX+RB+iNTNvImvTM4pHlQTC9b6JvisuLgYqlgYzhHg1mvabN4NOphRE=', 'x-amz-request-id': '4YST028EM5M0ZKH8', 'Date': 'Thu, 12 May 2022 22:34:34 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 192937984-201326591/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:34:34,094 botocore.parsers DEBUG    Response body:

2022-05-12 22:34:34,095 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:34:34,095 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:34:34,095 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:34:35,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:34:35,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:35,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:34:35,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:34:35,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19136512}
2022-05-12 22:34:35,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:36,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124780544}) to executor  for transfer request: 0.
2022-05-12 22:34:36,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:36,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) about to wait for the following futures []
2022-05-12 22:34:36,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) done waiting for dependent futures
2022-05-12 22:34:36,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124780544}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 124780544}
2022-05-12 22:34:36,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176947200}) to executor  for transfer request: 0.
2022-05-12 22:34:37,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) about to wait for the following futures []
2022-05-12 22:34:37,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) done waiting for dependent futures
2022-05-12 22:34:37,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176947200}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 176947200}
2022-05-12 22:34:37,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,229 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192937984}) to executor  for transfer request: 0.
2022-05-12 22:34:37,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) about to wait for the following futures []
2022-05-12 22:34:37,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) done waiting for dependent futures
2022-05-12 22:34:37,230 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192937984}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 192937984}
2022-05-12 22:34:37,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,801 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132907008}) to executor  for transfer request: 0.
2022-05-12 22:34:37,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) about to wait for the following futures []
2022-05-12 22:34:37,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) done waiting for dependent futures
2022-05-12 22:34:37,802 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132907008}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 132907008}
2022-05-12 22:34:37,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:38,239 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161742848}) to executor  for transfer request: 0.
2022-05-12 22:34:38,239 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:38,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) about to wait for the following futures []
2022-05-12 22:34:38,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) done waiting for dependent futures
2022-05-12 22:34:38,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161742848}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 161742848}
2022-05-12 22:34:38,240 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153354240}) to executor  for transfer request: 0.
2022-05-12 22:34:39,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) about to wait for the following futures []
2022-05-12 22:34:39,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) done waiting for dependent futures
2022-05-12 22:34:39,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153354240}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 153354240}
2022-05-12 22:34:39,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,260 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169345024}) to executor  for transfer request: 0.
2022-05-12 22:34:39,260 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) about to wait for the following futures []
2022-05-12 22:34:39,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) done waiting for dependent futures
2022-05-12 22:34:39,261 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169345024}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 169345024}
2022-05-12 22:34:39,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,478 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:34:39,478 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:34:39,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:34:39,479 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 6029312}
2022-05-12 22:34:39,479 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:41,305 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:34:41,305 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:34:41,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:34:41,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19398656}
2022-05-12 22:34:41,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:41,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184549376}) to executor  for transfer request: 0.
2022-05-12 22:34:41,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) about to wait for the following futures []
2022-05-12 22:34:41,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) done waiting for dependent futures
2022-05-12 22:34:41,332 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184549376}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 184549376}
2022-05-12 22:34:41,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:42,067 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162004992}) to executor  for transfer request: 0.
2022-05-12 22:34:42,067 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:42,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) about to wait for the following futures []
2022-05-12 22:34:42,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) done waiting for dependent futures
2022-05-12 22:34:42,067 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162004992}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 162004992}
2022-05-12 22:34:42,068 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:43,667 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125042688}) to executor  for transfer request: 0.
2022-05-12 22:34:43,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:43,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) about to wait for the following futures []
2022-05-12 22:34:43,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) done waiting for dependent futures
2022-05-12 22:34:43,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125042688}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 125042688}
2022-05-12 22:34:43,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:43,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193200128}) to executor  for transfer request: 0.
2022-05-12 22:34:43,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:43,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) about to wait for the following futures []
2022-05-12 22:34:43,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) done waiting for dependent futures
2022-05-12 22:34:43,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193200128}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 193200128}
2022-05-12 22:34:43,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:46,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177209344}) to executor  for transfer request: 0.
2022-05-12 22:34:46,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:46,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) about to wait for the following futures []
2022-05-12 22:34:46,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) done waiting for dependent futures
2022-05-12 22:34:46,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177209344}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 177209344}
2022-05-12 22:34:46,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:47,447 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30408704}) to executor  for transfer request: 0.
2022-05-12 22:34:47,447 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:47,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) about to wait for the following futures []
2022-05-12 22:34:47,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) done waiting for dependent futures
2022-05-12 22:34:47,448 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30408704}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 30408704}
2022-05-12 22:34:47,448 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:47,451 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:34:47,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:47,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:34:47,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:34:47,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19660800}
2022-05-12 22:34:47,452 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,093 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133169152}) to executor  for transfer request: 0.
2022-05-12 22:34:48,093 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) about to wait for the following futures []
2022-05-12 22:34:48,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) done waiting for dependent futures
2022-05-12 22:34:48,094 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133169152}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 133169152}
2022-05-12 22:34:48,094 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:34:48,553 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:34:48,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:34:48,554 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 6291456}
2022-05-12 22:34:48,554 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,976 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169607168}) to executor  for transfer request: 0.
2022-05-12 22:34:48,977 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) about to wait for the following futures []
2022-05-12 22:34:48,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) done waiting for dependent futures
2022-05-12 22:34:48,977 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169607168}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 169607168}
2022-05-12 22:34:48,978 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:49,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193462272}) to executor  for transfer request: 0.
2022-05-12 22:34:49,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:49,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) about to wait for the following futures []
2022-05-12 22:34:49,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) done waiting for dependent futures
2022-05-12 22:34:49,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193462272}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 193462272}
2022-05-12 22:34:49,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:50,718 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162267136}) to executor  for transfer request: 0.
2022-05-12 22:34:50,718 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:50,718 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) about to wait for the following futures []
2022-05-12 22:34:50,718 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) done waiting for dependent futures
2022-05-12 22:34:50,719 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162267136}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 162267136}
2022-05-12 22:34:50,719 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:50,793 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:34:50,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:50,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:34:50,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:34:50,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19922944}
2022-05-12 22:34:50,793 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:51,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153616384}) to executor  for transfer request: 0.
2022-05-12 22:34:51,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:51,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) about to wait for the following futures []
2022-05-12 22:34:51,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) done waiting for dependent futures
2022-05-12 22:34:51,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153616384}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 153616384}
2022-05-12 22:34:51,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184811520}) to executor  for transfer request: 0.
2022-05-12 22:34:52,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) about to wait for the following futures []
2022-05-12 22:34:52,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) done waiting for dependent futures
2022-05-12 22:34:52,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184811520}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 184811520}
2022-05-12 22:34:52,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:55,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169869312}) to executor  for transfer request: 0.
2022-05-12 22:34:55,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:55,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) about to wait for the following futures []
2022-05-12 22:34:55,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) done waiting for dependent futures
2022-05-12 22:34:55,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169869312}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 169869312}
2022-05-12 22:34:55,266 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:55,510 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125304832}) to executor  for transfer request: 0.
2022-05-12 22:34:55,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:55,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) about to wait for the following futures []
2022-05-12 22:34:55,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) done waiting for dependent futures
2022-05-12 22:34:55,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125304832}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 125304832}
2022-05-12 22:34:55,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:55,995 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:34:55,995 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:55,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:34:55,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:34:55,996 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 6553600}
2022-05-12 22:34:55,996 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:56,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193724416}) to executor  for transfer request: 0.
2022-05-12 22:34:56,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:56,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) about to wait for the following futures []
2022-05-12 22:34:56,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) done waiting for dependent futures
2022-05-12 22:34:56,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193724416}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 193724416}
2022-05-12 22:34:56,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:56,356 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:34:56,356 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:56,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:34:56,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:34:56,357 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20185088}
2022-05-12 22:34:56,357 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,185 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177471488}) to executor  for transfer request: 0.
2022-05-12 22:34:57,186 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:57,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) about to wait for the following futures []
2022-05-12 22:34:57,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) done waiting for dependent futures
2022-05-12 22:34:57,186 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177471488}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 177471488}
2022-05-12 22:34:57,187 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,994 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162529280}) to executor  for transfer request: 0.
2022-05-12 22:34:57,994 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:57,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) about to wait for the following futures []
2022-05-12 22:34:57,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) done waiting for dependent futures
2022-05-12 22:34:57,995 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162529280}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 162529280}
2022-05-12 22:34:57,995 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:58,714 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133431296}) to executor  for transfer request: 0.
2022-05-12 22:34:58,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:58,714 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) about to wait for the following futures []
2022-05-12 22:34:58,714 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) done waiting for dependent futures
2022-05-12 22:34:58,715 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133431296}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 133431296}
2022-05-12 22:34:58,715 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:00,835 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193986560}) to executor  for transfer request: 0.
2022-05-12 22:35:00,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:00,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) about to wait for the following futures []
2022-05-12 22:35:00,836 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) done waiting for dependent futures
2022-05-12 22:35:00,836 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193986560}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 193986560}
2022-05-12 22:35:00,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:01,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170131456}) to executor  for transfer request: 0.
2022-05-12 22:35:01,273 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:01,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) about to wait for the following futures []
2022-05-12 22:35:01,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) done waiting for dependent futures
2022-05-12 22:35:01,274 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170131456}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 170131456}
2022-05-12 22:35:01,274 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:01,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185073664}) to executor  for transfer request: 0.
2022-05-12 22:35:01,876 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:01,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) about to wait for the following futures []
2022-05-12 22:35:01,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) done waiting for dependent futures
2022-05-12 22:35:01,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185073664}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 185073664}
2022-05-12 22:35:01,877 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162791424}) to executor  for transfer request: 0.
2022-05-12 22:35:02,275 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) about to wait for the following futures []
2022-05-12 22:35:02,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) done waiting for dependent futures
2022-05-12 22:35:02,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162791424}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 162791424}
2022-05-12 22:35:02,276 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:35:02,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:35:02,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:35:02,389 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20447232}
2022-05-12 22:35:02,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,965 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:35:02,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:35:02,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:35:02,966 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 3145728}
2022-05-12 22:35:02,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:03,082 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153878528}) to executor  for transfer request: 0.
2022-05-12 22:35:03,082 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:03,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) about to wait for the following futures []
2022-05-12 22:35:03,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) done waiting for dependent futures
2022-05-12 22:35:03,083 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153878528}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 153878528}
2022-05-12 22:35:03,083 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194248704}) to executor  for transfer request: 0.
2022-05-12 22:35:06,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) about to wait for the following futures []
2022-05-12 22:35:06,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) done waiting for dependent futures
2022-05-12 22:35:06,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194248704}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 194248704}
2022-05-12 22:35:06,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,672 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125566976}) to executor  for transfer request: 0.
2022-05-12 22:35:06,672 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,673 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) about to wait for the following futures []
2022-05-12 22:35:06,673 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) about to wait for the following futures []
2022-05-12 22:35:06,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) done waiting for dependent futures
2022-05-12 22:35:06,673 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) done waiting for dependent futures
2022-05-12 22:35:06,673 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125566976}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 125566976}
2022-05-12 22:35:06,674 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=201326592-209715199'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 201326592, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:06,674 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:06,674 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:06,674 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:06,675 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,675 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:06,675 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:06,676 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:06,676 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:06,676 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:35:06,676 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:06,676 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:06,676 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=201326592-209715199', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:06,676 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:06,676 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:06,676 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:06,676 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:06,676 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:06,676 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:06,677 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:35:06,677 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:35:06,677 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:06,677 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=201326592-209715199
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223506Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:06,677 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223506Z
20220512/eu-central-1/s3/aws4_request
4a838e3e6926737740ed717ba7c9b1d951812cc6080789c078eb5b72811365da
2022-05-12 22:35:06,677 botocore.auth DEBUG    Signature:
0d81d1f599db962063a4215d4fdc61e7c20172c128df641e797a06fd976d25e2
2022-05-12 22:35:06,677 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:06,678 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:06,678 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:06,678 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:06,678 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:35:07,113 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30670848}) to executor  for transfer request: 0.
2022-05-12 22:35:07,114 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:07,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) about to wait for the following futures []
2022-05-12 22:35:07,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) done waiting for dependent futures
2022-05-12 22:35:07,114 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30670848}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 30670848}
2022-05-12 22:35:07,114 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:07,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:35:07,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:07,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:35:07,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:35:07,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 6815744}
2022-05-12 22:35:07,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,056 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:35:09,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:35:09,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:35:09,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20709376}
2022-05-12 22:35:09,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170393600}) to executor  for transfer request: 0.
2022-05-12 22:35:09,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) about to wait for the following futures []
2022-05-12 22:35:09,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) done waiting for dependent futures
2022-05-12 22:35:09,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170393600}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 170393600}
2022-05-12 22:35:09,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,159 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133693440}) to executor  for transfer request: 0.
2022-05-12 22:35:10,160 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) about to wait for the following futures []
2022-05-12 22:35:10,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) done waiting for dependent futures
2022-05-12 22:35:10,160 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133693440}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 133693440}
2022-05-12 22:35:10,161 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177733632}) to executor  for transfer request: 0.
2022-05-12 22:35:10,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) about to wait for the following futures []
2022-05-12 22:35:10,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) done waiting for dependent futures
2022-05-12 22:35:10,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177733632}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 177733632}
2022-05-12 22:35:10,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:11,575 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163053568}) to executor  for transfer request: 0.
2022-05-12 22:35:11,575 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:11,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) about to wait for the following futures []
2022-05-12 22:35:11,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) done waiting for dependent futures
2022-05-12 22:35:11,576 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163053568}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 163053568}
2022-05-12 22:35:11,576 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:12,524 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:12,525 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'I0UeWOUnPsWKdsb4BA4TkEEJUueQi5zJDhgzR3rzypeE0eYZxSTJ0y3WhkEA15nowej1XZy1AHw=', 'x-amz-request-id': 'W9NT2DHNKD2KQ088', 'Date': 'Thu, 12 May 2022 22:35:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 201326592-209715199/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:12,525 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:12,525 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:12,525 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:12,525 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:13,348 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185335808}) to executor  for transfer request: 0.
2022-05-12 22:35:13,348 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:13,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) about to wait for the following futures []
2022-05-12 22:35:13,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) done waiting for dependent futures
2022-05-12 22:35:13,349 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185335808}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 185335808}
2022-05-12 22:35:13,349 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:13,391 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194510848}) to executor  for transfer request: 0.
2022-05-12 22:35:13,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:13,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) about to wait for the following futures []
2022-05-12 22:35:13,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) done waiting for dependent futures
2022-05-12 22:35:13,392 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194510848}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 194510848}
2022-05-12 22:35:13,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:13,923 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:35:13,923 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:13,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:35:13,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:35:13,924 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20971520}
2022-05-12 22:35:13,924 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,749 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:35:15,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:35:15,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:35:15,750 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 7077888}
2022-05-12 22:35:15,750 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:16,343 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154140672}) to executor  for transfer request: 0.
2022-05-12 22:35:16,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:16,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) about to wait for the following futures []
2022-05-12 22:35:16,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) done waiting for dependent futures
2022-05-12 22:35:16,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154140672}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 154140672}
2022-05-12 22:35:16,346 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:16,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170655744}) to executor  for transfer request: 0.
2022-05-12 22:35:16,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:16,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) about to wait for the following futures []
2022-05-12 22:35:16,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) done waiting for dependent futures
2022-05-12 22:35:16,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170655744}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 170655744}
2022-05-12 22:35:16,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201326592}) to executor  for transfer request: 0.
2022-05-12 22:35:17,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:17,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) about to wait for the following futures []
2022-05-12 22:35:17,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) done waiting for dependent futures
2022-05-12 22:35:17,424 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201326592}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 201326592}
2022-05-12 22:35:17,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,569 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194772992}) to executor  for transfer request: 0.
2022-05-12 22:35:17,570 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:17,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) about to wait for the following futures []
2022-05-12 22:35:17,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) done waiting for dependent futures
2022-05-12 22:35:17,570 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194772992}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 194772992}
2022-05-12 22:35:17,571 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,865 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133955584}) to executor  for transfer request: 0.
2022-05-12 22:35:17,866 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:17,866 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,866 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) about to wait for the following futures []
2022-05-12 22:35:17,866 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) done waiting for dependent futures
2022-05-12 22:35:17,866 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=24>, 'extra_args': {'Range': 'bytes=209715200-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 209715200, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:17,866 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:17,866 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:17,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) about to wait for the following futures []
2022-05-12 22:35:17,867 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:17,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) done waiting for dependent futures
2022-05-12 22:35:17,867 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:17,867 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133955584}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 133955584}
2022-05-12 22:35:17,867 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:17,868 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:17,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,868 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:17,868 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:35:17,868 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:17,868 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:17,868 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=209715200-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:17,869 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:17,869 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:17,869 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:17,869 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:17,869 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:17,869 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:17,869 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:35:17,869 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data/BANDS.npy
2022-05-12 22:35:17,870 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:17,870 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=209715200-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223517Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:17,870 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223517Z
20220512/eu-central-1/s3/aws4_request
e606f6dc375d9f0e92f58c8e4eaf423b8a9578592bfb1293d45b52fcaa613f33
2022-05-12 22:35:17,870 botocore.auth DEBUG    Signature:
d6b93ce94916727dd1ba6993fc91336cd8b050646c0013ae52e50b7c05d4c68b
2022-05-12 22:35:17,870 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:17,870 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:17,870 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:17,870 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:17,870 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:35:18,716 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177995776}) to executor  for transfer request: 0.
2022-05-12 22:35:18,716 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:18,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) about to wait for the following futures []
2022-05-12 22:35:18,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) done waiting for dependent futures
2022-05-12 22:35:18,717 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177995776}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 177995776}
2022-05-12 22:35:18,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:18,752 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_2/data/BANDS.npy HTTP/1.1" 206 3244928
2022-05-12 22:35:18,753 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1/AYXR5FUbumSG9z8UtWDqA3iQUEdlI4aMylkVO7EfCa5UpeDL61xmDmHN5Vu2gzYtP/sQm4r7o=', 'x-amz-request-id': 'K6EJ3FZ6HAYCFN6Z', 'Date': 'Thu, 12 May 2022 22:35:19 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"668364126ec132a7d0657c0e0d2fb724-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 209715200-212960127/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '3244928'}
2022-05-12 22:35:18,753 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:18,753 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:18,753 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:18,753 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:19,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:35:19,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:19,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:35:19,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:35:19,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 21233664}
2022-05-12 22:35:19,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185597952}) to executor  for transfer request: 0.
2022-05-12 22:35:20,999 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) about to wait for the following futures []
2022-05-12 22:35:21,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) done waiting for dependent futures
2022-05-12 22:35:21,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185597952}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 185597952}
2022-05-12 22:35:21,001 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209715200}) to executor  for transfer request: 0.
2022-05-12 22:35:21,084 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) about to wait for the following futures []
2022-05-12 22:35:21,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) done waiting for dependent futures
2022-05-12 22:35:21,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209715200}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 209715200}
2022-05-12 22:35:21,085 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163315712}) to executor  for transfer request: 0.
2022-05-12 22:35:21,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) about to wait for the following futures []
2022-05-12 22:35:21,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) done waiting for dependent futures
2022-05-12 22:35:21,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163315712}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 163315712}
2022-05-12 22:35:21,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:22,521 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195035136}) to executor  for transfer request: 0.
2022-05-12 22:35:22,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:22,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) about to wait for the following futures []
2022-05-12 22:35:22,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) done waiting for dependent futures
2022-05-12 22:35:22,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195035136}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 195035136}
2022-05-12 22:35:22,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:24,559 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:35:24,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:24,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:35:24,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:35:24,560 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 7340032}
2022-05-12 22:35:24,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,094 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170917888}) to executor  for transfer request: 0.
2022-05-12 22:35:25,094 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,094 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) about to wait for the following futures []
2022-05-12 22:35:25,094 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) done waiting for dependent futures
2022-05-12 22:35:25,094 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170917888}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 170917888}
2022-05-12 22:35:25,095 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201588736}) to executor  for transfer request: 0.
2022-05-12 22:35:25,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) about to wait for the following futures []
2022-05-12 22:35:25,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) done waiting for dependent futures
2022-05-12 22:35:25,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201588736}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 201588736}
2022-05-12 22:35:25,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:26,446 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30932992}) to executor  for transfer request: 0.
2022-05-12 22:35:26,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:26,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) about to wait for the following futures []
2022-05-12 22:35:26,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) done waiting for dependent futures
2022-05-12 22:35:26,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30932992}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 30932992}
2022-05-12 22:35:26,447 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:26,741 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209977344}) to executor  for transfer request: 0.
2022-05-12 22:35:26,741 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:26,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) about to wait for the following futures []
2022-05-12 22:35:26,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) done waiting for dependent futures
2022-05-12 22:35:26,742 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209977344}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 209977344}
2022-05-12 22:35:26,742 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163577856}) to executor  for transfer request: 0.
2022-05-12 22:35:27,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) about to wait for the following futures []
2022-05-12 22:35:27,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) done waiting for dependent futures
2022-05-12 22:35:27,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163577856}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 163577856}
2022-05-12 22:35:27,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,654 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154402816}) to executor  for transfer request: 0.
2022-05-12 22:35:27,654 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) about to wait for the following futures []
2022-05-12 22:35:27,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) done waiting for dependent futures
2022-05-12 22:35:27,654 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154402816}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 154402816}
2022-05-12 22:35:27,655 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,722 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195297280}) to executor  for transfer request: 0.
2022-05-12 22:35:27,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) about to wait for the following futures []
2022-05-12 22:35:27,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) done waiting for dependent futures
2022-05-12 22:35:27,723 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195297280}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 195297280}
2022-05-12 22:35:27,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,830 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178257920}) to executor  for transfer request: 0.
2022-05-12 22:35:27,831 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) about to wait for the following futures []
2022-05-12 22:35:27,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) done waiting for dependent futures
2022-05-12 22:35:27,831 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178257920}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 178257920}
2022-05-12 22:35:27,832 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:28,337 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185860096}) to executor  for transfer request: 0.
2022-05-12 22:35:28,337 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:28,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) about to wait for the following futures []
2022-05-12 22:35:28,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) done waiting for dependent futures
2022-05-12 22:35:28,338 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185860096}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 185860096}
2022-05-12 22:35:28,338 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:28,579 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:35:28,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:28,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:35:28,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:35:28,580 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 21495808}
2022-05-12 22:35:28,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:30,075 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:35:30,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:30,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:35:30,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:35:30,076 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 7602176}
2022-05-12 22:35:30,076 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:32,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195559424}) to executor  for transfer request: 0.
2022-05-12 22:35:32,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:32,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) about to wait for the following futures []
2022-05-12 22:35:32,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) done waiting for dependent futures
2022-05-12 22:35:32,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195559424}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 195559424}
2022-05-12 22:35:32,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:32,703 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210239488}) to executor  for transfer request: 0.
2022-05-12 22:35:32,704 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:32,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) about to wait for the following futures []
2022-05-12 22:35:32,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) done waiting for dependent futures
2022-05-12 22:35:32,704 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210239488}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 210239488}
2022-05-12 22:35:32,705 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:34,392 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201850880}) to executor  for transfer request: 0.
2022-05-12 22:35:34,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) about to wait for the following futures []
2022-05-12 22:35:34,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) done waiting for dependent futures
2022-05-12 22:35:34,393 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201850880}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 201850880}
2022-05-12 22:35:34,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,408 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171180032}) to executor  for transfer request: 0.
2022-05-12 22:35:35,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) about to wait for the following futures []
2022-05-12 22:35:35,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) done waiting for dependent futures
2022-05-12 22:35:35,409 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171180032}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 171180032}
2022-05-12 22:35:35,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,523 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178520064}) to executor  for transfer request: 0.
2022-05-12 22:35:35,523 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) about to wait for the following futures []
2022-05-12 22:35:35,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) done waiting for dependent futures
2022-05-12 22:35:35,524 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178520064}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 178520064}
2022-05-12 22:35:35,524 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163840000}) to executor  for transfer request: 0.
2022-05-12 22:35:35,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) about to wait for the following futures []
2022-05-12 22:35:35,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) done waiting for dependent futures
2022-05-12 22:35:35,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163840000}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 163840000}
2022-05-12 22:35:35,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:36,172 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31195136}) to executor  for transfer request: 0.
2022-05-12 22:35:36,172 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:36,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) about to wait for the following futures []
2022-05-12 22:35:36,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) done waiting for dependent futures
2022-05-12 22:35:36,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31195136}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 31195136}
2022-05-12 22:35:36,173 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:36,441 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186122240}) to executor  for transfer request: 0.
2022-05-12 22:35:36,441 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:36,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) about to wait for the following futures []
2022-05-12 22:35:36,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) done waiting for dependent futures
2022-05-12 22:35:36,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186122240}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 186122240}
2022-05-12 22:35:36,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:36,984 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:35:36,985 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:36,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:35:36,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:35:36,985 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 21757952}
2022-05-12 22:35:36,986 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:37,418 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154664960}) to executor  for transfer request: 0.
2022-05-12 22:35:37,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:37,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) about to wait for the following futures []
2022-05-12 22:35:37,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) done waiting for dependent futures
2022-05-12 22:35:37,419 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154664960}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 154664960}
2022-05-12 22:35:37,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:37,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210501632}) to executor  for transfer request: 0.
2022-05-12 22:35:37,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:37,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) about to wait for the following futures []
2022-05-12 22:35:37,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) done waiting for dependent futures
2022-05-12 22:35:37,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210501632}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 210501632}
2022-05-12 22:35:37,543 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:38,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:35:38,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:38,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:35:38,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:35:38,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 7864320}
2022-05-12 22:35:38,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:39,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195821568}) to executor  for transfer request: 0.
2022-05-12 22:35:39,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:39,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) about to wait for the following futures []
2022-05-12 22:35:39,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) done waiting for dependent futures
2022-05-12 22:35:39,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195821568}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 195821568}
2022-05-12 22:35:39,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:41,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178782208}) to executor  for transfer request: 0.
2022-05-12 22:35:41,971 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:41,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) about to wait for the following futures []
2022-05-12 22:35:41,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) done waiting for dependent futures
2022-05-12 22:35:41,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178782208}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 178782208}
2022-05-12 22:35:41,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:42,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202113024}) to executor  for transfer request: 0.
2022-05-12 22:35:42,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:42,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) about to wait for the following futures []
2022-05-12 22:35:42,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) done waiting for dependent futures
2022-05-12 22:35:42,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202113024}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 202113024}
2022-05-12 22:35:42,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:42,177 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164102144}) to executor  for transfer request: 0.
2022-05-12 22:35:42,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:42,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) about to wait for the following futures []
2022-05-12 22:35:42,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) done waiting for dependent futures
2022-05-12 22:35:42,178 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164102144}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 164102144}
2022-05-12 22:35:42,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,671 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171442176}) to executor  for transfer request: 0.
2022-05-12 22:35:43,671 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,672 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) about to wait for the following futures []
2022-05-12 22:35:43,672 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) done waiting for dependent futures
2022-05-12 22:35:43,672 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171442176}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 171442176}
2022-05-12 22:35:43,672 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,906 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:35:43,906 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:35:43,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:35:43,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 22020096}
2022-05-12 22:35:43,907 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,922 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:35:43,922 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,923 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:35:43,923 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,923 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,923 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:35:43,923 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:35:43,923 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 8126464}
2022-05-12 22:35:43,924 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,924 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:35:43,924 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:35:43,924 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:35:43,924 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:44,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196083712}) to executor  for transfer request: 0.
2022-05-12 22:35:44,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:44,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) about to wait for the following futures []
2022-05-12 22:35:44,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) done waiting for dependent futures
2022-05-12 22:35:44,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196083712}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 196083712}
2022-05-12 22:35:44,786 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:45,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154927104}) to executor  for transfer request: 0.
2022-05-12 22:35:45,106 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:45,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) about to wait for the following futures []
2022-05-12 22:35:45,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) done waiting for dependent futures
2022-05-12 22:35:45,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154927104}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 154927104}
2022-05-12 22:35:45,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:45,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210763776}) to executor  for transfer request: 0.
2022-05-12 22:35:45,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:45,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) about to wait for the following futures []
2022-05-12 22:35:45,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) done waiting for dependent futures
2022-05-12 22:35:45,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210763776}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 210763776}
2022-05-12 22:35:45,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:46,905 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186384384}) to executor  for transfer request: 0.
2022-05-12 22:35:46,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:46,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) about to wait for the following futures []
2022-05-12 22:35:46,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) done waiting for dependent futures
2022-05-12 22:35:46,906 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186384384}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 186384384}
2022-05-12 22:35:46,906 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164364288}) to executor  for transfer request: 0.
2022-05-12 22:35:49,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) about to wait for the following futures []
2022-05-12 22:35:49,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) done waiting for dependent futures
2022-05-12 22:35:49,366 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164364288}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 164364288}
2022-05-12 22:35:49,366 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,769 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171704320}) to executor  for transfer request: 0.
2022-05-12 22:35:49,769 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) about to wait for the following futures []
2022-05-12 22:35:49,770 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) done waiting for dependent futures
2022-05-12 22:35:49,770 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171704320}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 171704320}
2022-05-12 22:35:49,770 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:50,878 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:35:50,878 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:50,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:35:50,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:35:50,879 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 22282240}
2022-05-12 22:35:50,879 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,305 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179044352}) to executor  for transfer request: 0.
2022-05-12 22:35:51,305 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) about to wait for the following futures []
2022-05-12 22:35:51,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) done waiting for dependent futures
2022-05-12 22:35:51,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179044352}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 179044352}
2022-05-12 22:35:51,306 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:52,307 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196345856}) to executor  for transfer request: 0.
2022-05-12 22:35:52,308 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:52,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) about to wait for the following futures []
2022-05-12 22:35:52,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) done waiting for dependent futures
2022-05-12 22:35:52,308 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196345856}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 196345856}
2022-05-12 22:35:52,309 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:52,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202375168}) to executor  for transfer request: 0.
2022-05-12 22:35:52,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:52,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) about to wait for the following futures []
2022-05-12 22:35:52,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) done waiting for dependent futures
2022-05-12 22:35:52,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202375168}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 202375168}
2022-05-12 22:35:52,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:53,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164626432}) to executor  for transfer request: 0.
2022-05-12 22:35:53,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:53,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) about to wait for the following futures []
2022-05-12 22:35:53,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) done waiting for dependent futures
2022-05-12 22:35:53,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164626432}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 164626432}
2022-05-12 22:35:53,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,255 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155189248}) to executor  for transfer request: 0.
2022-05-12 22:35:54,255 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) about to wait for the following futures []
2022-05-12 22:35:54,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) done waiting for dependent futures
2022-05-12 22:35:54,256 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155189248}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 155189248}
2022-05-12 22:35:54,256 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,343 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211025920}) to executor  for transfer request: 0.
2022-05-12 22:35:54,343 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) about to wait for the following futures []
2022-05-12 22:35:54,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) done waiting for dependent futures
2022-05-12 22:35:54,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211025920}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 211025920}
2022-05-12 22:35:54,345 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:55,642 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31457280}) to executor  for transfer request: 0.
2022-05-12 22:35:55,642 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:55,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) about to wait for the following futures []
2022-05-12 22:35:55,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) done waiting for dependent futures
2022-05-12 22:35:55,643 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31457280}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 31457280}
2022-05-12 22:35:55,643 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:56,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186646528}) to executor  for transfer request: 0.
2022-05-12 22:35:56,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:56,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) about to wait for the following futures []
2022-05-12 22:35:56,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) done waiting for dependent futures
2022-05-12 22:35:56,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186646528}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 186646528}
2022-05-12 22:35:56,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,613 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:35:57,614 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:35:57,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:35:57,614 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 22544384}
2022-05-12 22:35:57,615 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,626 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196608000}) to executor  for transfer request: 0.
2022-05-12 22:35:57,626 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) about to wait for the following futures []
2022-05-12 22:35:57,627 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) done waiting for dependent futures
2022-05-12 22:35:57,627 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196608000}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 196608000}
2022-05-12 22:35:57,627 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:58,431 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171966464}) to executor  for transfer request: 0.
2022-05-12 22:35:58,431 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:58,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) about to wait for the following futures []
2022-05-12 22:35:58,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) done waiting for dependent futures
2022-05-12 22:35:58,432 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171966464}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 171966464}
2022-05-12 22:35:58,432 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:58,901 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179306496}) to executor  for transfer request: 0.
2022-05-12 22:35:58,901 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:58,901 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) about to wait for the following futures []
2022-05-12 22:35:58,901 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) done waiting for dependent futures
2022-05-12 22:35:58,901 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179306496}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 179306496}
2022-05-12 22:35:58,902 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:59,230 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:35:59,230 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:59,231 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:35:59,231 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:35:59,231 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 3407872}
2022-05-12 22:35:59,231 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:59,559 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202637312}) to executor  for transfer request: 0.
2022-05-12 22:35:59,559 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:59,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) about to wait for the following futures []
2022-05-12 22:35:59,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) done waiting for dependent futures
2022-05-12 22:35:59,560 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202637312}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 202637312}
2022-05-12 22:35:59,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:00,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164888576}) to executor  for transfer request: 0.
2022-05-12 22:36:00,059 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:00,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) about to wait for the following futures []
2022-05-12 22:36:00,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) done waiting for dependent futures
2022-05-12 22:36:00,059 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164888576}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 164888576}
2022-05-12 22:36:00,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:03,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196870144}) to executor  for transfer request: 0.
2022-05-12 22:36:03,077 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:03,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) about to wait for the following futures []
2022-05-12 22:36:03,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) done waiting for dependent futures
2022-05-12 22:36:03,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196870144}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 196870144}
2022-05-12 22:36:03,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:04,072 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:36:04,072 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:04,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:36:04,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:36:04,073 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 22806528}
2022-05-12 22:36:04,073 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:04,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186908672}) to executor  for transfer request: 0.
2022-05-12 22:36:04,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:04,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) about to wait for the following futures []
2022-05-12 22:36:04,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) done waiting for dependent futures
2022-05-12 22:36:04,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186908672}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 186908672}
2022-05-12 22:36:04,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:04,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155451392}) to executor  for transfer request: 0.
2022-05-12 22:36:04,537 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:04,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) about to wait for the following futures []
2022-05-12 22:36:04,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) done waiting for dependent futures
2022-05-12 22:36:04,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155451392}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 155451392}
2022-05-12 22:36:04,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172228608}) to executor  for transfer request: 0.
2022-05-12 22:36:05,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) about to wait for the following futures []
2022-05-12 22:36:05,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) done waiting for dependent futures
2022-05-12 22:36:05,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172228608}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 172228608}
2022-05-12 22:36:05,204 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:06,197 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165150720}) to executor  for transfer request: 0.
2022-05-12 22:36:06,198 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:06,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) about to wait for the following futures []
2022-05-12 22:36:06,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) done waiting for dependent futures
2022-05-12 22:36:06,198 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165150720}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 165150720}
2022-05-12 22:36:06,199 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:06,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179568640}) to executor  for transfer request: 0.
2022-05-12 22:36:06,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:06,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) about to wait for the following futures []
2022-05-12 22:36:06,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) done waiting for dependent futures
2022-05-12 22:36:06,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179568640}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 179568640}
2022-05-12 22:36:06,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:09,129 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31719424}) to executor  for transfer request: 0.
2022-05-12 22:36:09,129 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:09,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) about to wait for the following futures []
2022-05-12 22:36:09,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) done waiting for dependent futures
2022-05-12 22:36:09,130 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31719424}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 31719424}
2022-05-12 22:36:09,130 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:09,830 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197132288}) to executor  for transfer request: 0.
2022-05-12 22:36:09,830 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:09,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) about to wait for the following futures []
2022-05-12 22:36:09,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) done waiting for dependent futures
2022-05-12 22:36:09,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197132288}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 197132288}
2022-05-12 22:36:09,831 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:11,767 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202899456}) to executor  for transfer request: 0.
2022-05-12 22:36:11,767 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:11,768 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) about to wait for the following futures []
2022-05-12 22:36:11,768 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) done waiting for dependent futures
2022-05-12 22:36:11,768 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202899456}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 202899456}
2022-05-12 22:36:11,768 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:12,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172490752}) to executor  for transfer request: 0.
2022-05-12 22:36:12,219 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:12,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) about to wait for the following futures []
2022-05-12 22:36:12,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) done waiting for dependent futures
2022-05-12 22:36:12,219 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172490752}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 172490752}
2022-05-12 22:36:12,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:12,357 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165412864}) to executor  for transfer request: 0.
2022-05-12 22:36:12,357 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:12,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) about to wait for the following futures []
2022-05-12 22:36:12,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) done waiting for dependent futures
2022-05-12 22:36:12,358 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165412864}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 165412864}
2022-05-12 22:36:12,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:12,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179830784}) to executor  for transfer request: 0.
2022-05-12 22:36:12,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:12,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) about to wait for the following futures []
2022-05-12 22:36:12,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) done waiting for dependent futures
2022-05-12 22:36:12,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179830784}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 179830784}
2022-05-12 22:36:12,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:14,597 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187170816}) to executor  for transfer request: 0.
2022-05-12 22:36:14,598 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:14,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) about to wait for the following futures []
2022-05-12 22:36:14,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) done waiting for dependent futures
2022-05-12 22:36:14,598 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187170816}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 187170816}
2022-05-12 22:36:14,599 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,324 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:36:15,324 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:36:15,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:36:15,325 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 23068672}
2022-05-12 22:36:15,325 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,415 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155713536}) to executor  for transfer request: 0.
2022-05-12 22:36:15,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) about to wait for the following futures []
2022-05-12 22:36:15,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) done waiting for dependent futures
2022-05-12 22:36:15,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155713536}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 155713536}
2022-05-12 22:36:15,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197394432}) to executor  for transfer request: 0.
2022-05-12 22:36:15,595 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) about to wait for the following futures []
2022-05-12 22:36:15,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) done waiting for dependent futures
2022-05-12 22:36:15,595 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197394432}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 197394432}
2022-05-12 22:36:15,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,211 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211288064}) to executor  for transfer request: 0.
2022-05-12 22:36:17,211 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,211 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) about to wait for the following futures []
2022-05-12 22:36:17,211 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) done waiting for dependent futures
2022-05-12 22:36:17,211 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211288064}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 211288064}
2022-05-12 22:36:17,212 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180092928}) to executor  for transfer request: 0.
2022-05-12 22:36:17,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) about to wait for the following futures []
2022-05-12 22:36:17,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) done waiting for dependent futures
2022-05-12 22:36:17,399 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180092928}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 180092928}
2022-05-12 22:36:17,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165675008}) to executor  for transfer request: 0.
2022-05-12 22:36:17,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) about to wait for the following futures []
2022-05-12 22:36:17,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) done waiting for dependent futures
2022-05-12 22:36:17,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165675008}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 165675008}
2022-05-12 22:36:17,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,917 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203161600}) to executor  for transfer request: 0.
2022-05-12 22:36:18,917 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) about to wait for the following futures []
2022-05-12 22:36:18,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) done waiting for dependent futures
2022-05-12 22:36:18,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203161600}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 203161600}
2022-05-12 22:36:18,918 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:20,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172752896}) to executor  for transfer request: 0.
2022-05-12 22:36:20,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:20,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) about to wait for the following futures []
2022-05-12 22:36:20,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) done waiting for dependent futures
2022-05-12 22:36:20,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172752896}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 172752896}
2022-05-12 22:36:20,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:20,740 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:36:20,740 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:20,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:36:20,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:36:20,741 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 23330816}
2022-05-12 22:36:20,741 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:21,932 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165937152}) to executor  for transfer request: 0.
2022-05-12 22:36:21,932 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:21,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) about to wait for the following futures []
2022-05-12 22:36:21,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) done waiting for dependent futures
2022-05-12 22:36:21,933 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165937152}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 165937152}
2022-05-12 22:36:21,933 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,264 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180355072}) to executor  for transfer request: 0.
2022-05-12 22:36:23,264 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) about to wait for the following futures []
2022-05-12 22:36:23,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) done waiting for dependent futures
2022-05-12 22:36:23,265 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180355072}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 180355072}
2022-05-12 22:36:23,265 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155975680}) to executor  for transfer request: 0.
2022-05-12 22:36:23,497 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) about to wait for the following futures []
2022-05-12 22:36:23,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) done waiting for dependent futures
2022-05-12 22:36:23,498 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155975680}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 155975680}
2022-05-12 22:36:23,498 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,506 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197656576}) to executor  for transfer request: 0.
2022-05-12 22:36:23,506 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) about to wait for the following futures []
2022-05-12 22:36:23,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) done waiting for dependent futures
2022-05-12 22:36:23,506 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197656576}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 197656576}
2022-05-12 22:36:23,507 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,552 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:36:24,553 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:24,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:36:24,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:36:24,553 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 23592960}
2022-05-12 22:36:24,554 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,718 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187432960}) to executor  for transfer request: 0.
2022-05-12 22:36:24,718 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:24,718 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) about to wait for the following futures []
2022-05-12 22:36:24,718 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) done waiting for dependent futures
2022-05-12 22:36:24,718 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187432960}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 187432960}
2022-05-12 22:36:24,719 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:26,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31981568}) to executor  for transfer request: 0.
2022-05-12 22:36:26,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:26,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) about to wait for the following futures []
2022-05-12 22:36:26,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) done waiting for dependent futures
2022-05-12 22:36:26,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31981568}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 31981568}
2022-05-12 22:36:26,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:26,772 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173015040}) to executor  for transfer request: 0.
2022-05-12 22:36:26,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:26,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) about to wait for the following futures []
2022-05-12 22:36:26,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) done waiting for dependent futures
2022-05-12 22:36:26,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173015040}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 173015040}
2022-05-12 22:36:26,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,155 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197918720}) to executor  for transfer request: 0.
2022-05-12 22:36:27,155 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) about to wait for the following futures []
2022-05-12 22:36:27,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) done waiting for dependent futures
2022-05-12 22:36:27,156 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197918720}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 197918720}
2022-05-12 22:36:27,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,736 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166199296}) to executor  for transfer request: 0.
2022-05-12 22:36:27,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) about to wait for the following futures []
2022-05-12 22:36:27,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) done waiting for dependent futures
2022-05-12 22:36:27,737 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166199296}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 166199296}
2022-05-12 22:36:27,737 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:28,080 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:36:28,080 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:28,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:36:28,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:36:28,081 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 23855104}
2022-05-12 22:36:28,081 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:28,408 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203423744}) to executor  for transfer request: 0.
2022-05-12 22:36:28,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:28,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) about to wait for the following futures []
2022-05-12 22:36:28,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) done waiting for dependent futures
2022-05-12 22:36:28,409 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203423744}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 203423744}
2022-05-12 22:36:28,410 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,043 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180617216}) to executor  for transfer request: 0.
2022-05-12 22:36:30,043 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) about to wait for the following futures []
2022-05-12 22:36:30,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) done waiting for dependent futures
2022-05-12 22:36:30,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180617216}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 180617216}
2022-05-12 22:36:30,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,814 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198180864}) to executor  for transfer request: 0.
2022-05-12 22:36:30,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) about to wait for the following futures []
2022-05-12 22:36:30,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) done waiting for dependent futures
2022-05-12 22:36:30,815 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198180864}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 198180864}
2022-05-12 22:36:30,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:32,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156237824}) to executor  for transfer request: 0.
2022-05-12 22:36:32,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:32,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) about to wait for the following futures []
2022-05-12 22:36:32,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) done waiting for dependent futures
2022-05-12 22:36:32,167 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156237824}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 156237824}
2022-05-12 22:36:32,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:32,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166461440}) to executor  for transfer request: 0.
2022-05-12 22:36:32,646 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:32,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) about to wait for the following futures []
2022-05-12 22:36:32,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) done waiting for dependent futures
2022-05-12 22:36:32,647 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166461440}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 166461440}
2022-05-12 22:36:32,647 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180879360}) to executor  for transfer request: 0.
2022-05-12 22:36:33,186 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) about to wait for the following futures []
2022-05-12 22:36:33,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) done waiting for dependent futures
2022-05-12 22:36:33,187 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180879360}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 180879360}
2022-05-12 22:36:33,187 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,375 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:36:33,375 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:36:33,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:36:33,376 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 24117248}
2022-05-12 22:36:33,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187695104}) to executor  for transfer request: 0.
2022-05-12 22:36:33,925 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) about to wait for the following futures []
2022-05-12 22:36:33,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) done waiting for dependent futures
2022-05-12 22:36:33,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187695104}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 187695104}
2022-05-12 22:36:33,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:34,189 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173277184}) to executor  for transfer request: 0.
2022-05-12 22:36:34,190 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:34,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) about to wait for the following futures []
2022-05-12 22:36:34,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) done waiting for dependent futures
2022-05-12 22:36:34,190 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173277184}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 173277184}
2022-05-12 22:36:34,191 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:35,957 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203685888}) to executor  for transfer request: 0.
2022-05-12 22:36:35,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:35,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) about to wait for the following futures []
2022-05-12 22:36:35,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) done waiting for dependent futures
2022-05-12 22:36:35,959 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203685888}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 203685888}
2022-05-12 22:36:35,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:36,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198443008}) to executor  for transfer request: 0.
2022-05-12 22:36:36,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:36,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) about to wait for the following futures []
2022-05-12 22:36:36,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) done waiting for dependent futures
2022-05-12 22:36:36,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198443008}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 198443008}
2022-05-12 22:36:36,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:38,774 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181141504}) to executor  for transfer request: 0.
2022-05-12 22:36:38,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:38,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) about to wait for the following futures []
2022-05-12 22:36:38,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) done waiting for dependent futures
2022-05-12 22:36:38,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181141504}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 181141504}
2022-05-12 22:36:38,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:40,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198705152}) to executor  for transfer request: 0.
2022-05-12 22:36:40,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:40,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) about to wait for the following futures []
2022-05-12 22:36:40,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) done waiting for dependent futures
2022-05-12 22:36:40,877 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198705152}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 198705152}
2022-05-12 22:36:40,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:40,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166723584}) to executor  for transfer request: 0.
2022-05-12 22:36:40,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:40,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) about to wait for the following futures []
2022-05-12 22:36:40,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) done waiting for dependent futures
2022-05-12 22:36:40,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166723584}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 166723584}
2022-05-12 22:36:40,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:40,932 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173539328}) to executor  for transfer request: 0.
2022-05-12 22:36:40,932 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:40,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) about to wait for the following futures []
2022-05-12 22:36:40,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) done waiting for dependent futures
2022-05-12 22:36:40,933 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173539328}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 173539328}
2022-05-12 22:36:40,933 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,819 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:36:41,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:36:41,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:36:41,819 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 24379392}
2022-05-12 22:36:41,820 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32243712}) to executor  for transfer request: 0.
2022-05-12 22:36:41,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) about to wait for the following futures []
2022-05-12 22:36:41,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) done waiting for dependent futures
2022-05-12 22:36:41,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32243712}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 32243712}
2022-05-12 22:36:41,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:42,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181403648}) to executor  for transfer request: 0.
2022-05-12 22:36:42,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:42,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) about to wait for the following futures []
2022-05-12 22:36:42,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) done waiting for dependent futures
2022-05-12 22:36:42,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181403648}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 181403648}
2022-05-12 22:36:42,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:43,066 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203948032}) to executor  for transfer request: 0.
2022-05-12 22:36:43,066 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:43,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) about to wait for the following futures []
2022-05-12 22:36:43,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) done waiting for dependent futures
2022-05-12 22:36:43,067 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203948032}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 203948032}
2022-05-12 22:36:43,068 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:44,256 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187957248}) to executor  for transfer request: 0.
2022-05-12 22:36:44,256 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:44,257 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) about to wait for the following futures []
2022-05-12 22:36:44,257 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) done waiting for dependent futures
2022-05-12 22:36:44,257 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187957248}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 187957248}
2022-05-12 22:36:44,257 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156499968}) to executor  for transfer request: 0.
2022-05-12 22:36:45,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:45,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) about to wait for the following futures []
2022-05-12 22:36:45,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) done waiting for dependent futures
2022-05-12 22:36:45,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156499968}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 156499968}
2022-05-12 22:36:45,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,795 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198967296}) to executor  for transfer request: 0.
2022-05-12 22:36:45,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:45,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) about to wait for the following futures []
2022-05-12 22:36:45,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) done waiting for dependent futures
2022-05-12 22:36:45,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198967296}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 198967296}
2022-05-12 22:36:45,796 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:47,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166985728}) to executor  for transfer request: 0.
2022-05-12 22:36:47,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) about to wait for the following futures []
2022-05-12 22:36:47,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) done waiting for dependent futures
2022-05-12 22:36:47,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166985728}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 166985728}
2022-05-12 22:36:47,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:49,878 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:36:49,878 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:49,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:36:49,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:36:49,879 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 24641536}
2022-05-12 22:36:49,879 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:50,065 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181665792}) to executor  for transfer request: 0.
2022-05-12 22:36:50,066 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) about to wait for the following futures []
2022-05-12 22:36:50,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) done waiting for dependent futures
2022-05-12 22:36:50,067 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181665792}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 181665792}
2022-05-12 22:36:50,068 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:50,144 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204210176}) to executor  for transfer request: 0.
2022-05-12 22:36:50,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) about to wait for the following futures []
2022-05-12 22:36:50,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) done waiting for dependent futures
2022-05-12 22:36:50,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204210176}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 204210176}
2022-05-12 22:36:50,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:50,345 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173801472}) to executor  for transfer request: 0.
2022-05-12 22:36:50,346 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,346 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) about to wait for the following futures []
2022-05-12 22:36:50,346 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) done waiting for dependent futures
2022-05-12 22:36:50,346 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173801472}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 173801472}
2022-05-12 22:36:50,347 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:51,045 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:36:51,045 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:51,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:36:51,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:36:51,046 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 3670016}
2022-05-12 22:36:51,046 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:52,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199229440}) to executor  for transfer request: 0.
2022-05-12 22:36:52,611 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:52,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) about to wait for the following futures []
2022-05-12 22:36:52,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) done waiting for dependent futures
2022-05-12 22:36:52,611 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199229440}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 199229440}
2022-05-12 22:36:52,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:52,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188219392}) to executor  for transfer request: 0.
2022-05-12 22:36:52,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:52,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) about to wait for the following futures []
2022-05-12 22:36:52,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) done waiting for dependent futures
2022-05-12 22:36:52,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188219392}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 188219392}
2022-05-12 22:36:52,679 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:54,492 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167247872}) to executor  for transfer request: 0.
2022-05-12 22:36:54,492 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:54,492 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) about to wait for the following futures []
2022-05-12 22:36:54,492 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) done waiting for dependent futures
2022-05-12 22:36:54,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167247872}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 167247872}
2022-05-12 22:36:54,493 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:55,143 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:36:55,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:55,144 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:36:55,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:36:55,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:55,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:36:55,144 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:55,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 24903680}
2022-05-12 22:36:55,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:55,145 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:36:55,145 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:36:55,145 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:36:55,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:56,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156762112}) to executor  for transfer request: 0.
2022-05-12 22:36:56,987 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:56,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) about to wait for the following futures []
2022-05-12 22:36:56,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) done waiting for dependent futures
2022-05-12 22:36:56,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156762112}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 156762112}
2022-05-12 22:36:56,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:57,595 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174063616}) to executor  for transfer request: 0.
2022-05-12 22:36:57,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:57,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) about to wait for the following futures []
2022-05-12 22:36:57,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) done waiting for dependent futures
2022-05-12 22:36:57,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174063616}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 174063616}
2022-05-12 22:36:57,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:58,575 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32505856}) to executor  for transfer request: 0.
2022-05-12 22:36:58,575 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:58,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) about to wait for the following futures []
2022-05-12 22:36:58,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) done waiting for dependent futures
2022-05-12 22:36:58,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32505856}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 32505856}
2022-05-12 22:36:58,576 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:58,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181927936}) to executor  for transfer request: 0.
2022-05-12 22:36:58,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:58,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) about to wait for the following futures []
2022-05-12 22:36:58,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) done waiting for dependent futures
2022-05-12 22:36:58,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181927936}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 181927936}
2022-05-12 22:36:58,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:58,915 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199491584}) to executor  for transfer request: 0.
2022-05-12 22:36:58,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:58,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) about to wait for the following futures []
2022-05-12 22:36:58,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) done waiting for dependent futures
2022-05-12 22:36:58,916 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199491584}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 199491584}
2022-05-12 22:36:58,916 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:00,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188481536}) to executor  for transfer request: 0.
2022-05-12 22:37:00,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:00,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) about to wait for the following futures []
2022-05-12 22:37:00,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) done waiting for dependent futures
2022-05-12 22:37:00,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188481536}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 188481536}
2022-05-12 22:37:00,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:01,018 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167510016}) to executor  for transfer request: 0.
2022-05-12 22:37:01,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:01,019 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:01,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) about to wait for the following futures []
2022-05-12 22:37:01,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) done waiting for dependent futures
2022-05-12 22:37:01,019 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167510016}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 167510016}
2022-05-12 22:37:01,020 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:01,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211550208}) to executor  for transfer request: 0.
2022-05-12 22:37:01,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:01,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) about to wait for the following futures []
2022-05-12 22:37:01,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) done waiting for dependent futures
2022-05-12 22:37:01,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211550208}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 211550208}
2022-05-12 22:37:01,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,569 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182190080}) to executor  for transfer request: 0.
2022-05-12 22:37:02,569 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) about to wait for the following futures []
2022-05-12 22:37:02,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) done waiting for dependent futures
2022-05-12 22:37:02,570 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182190080}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 182190080}
2022-05-12 22:37:02,570 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:03,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204472320}) to executor  for transfer request: 0.
2022-05-12 22:37:03,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:03,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) about to wait for the following futures []
2022-05-12 22:37:03,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) done waiting for dependent futures
2022-05-12 22:37:03,163 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204472320}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 204472320}
2022-05-12 22:37:03,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:06,181 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199753728}) to executor  for transfer request: 0.
2022-05-12 22:37:06,181 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:06,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) about to wait for the following futures []
2022-05-12 22:37:06,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) done waiting for dependent futures
2022-05-12 22:37:06,182 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199753728}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 199753728}
2022-05-12 22:37:06,182 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:06,607 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174325760}) to executor  for transfer request: 0.
2022-05-12 22:37:06,607 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:06,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) about to wait for the following futures []
2022-05-12 22:37:06,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) done waiting for dependent futures
2022-05-12 22:37:06,607 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174325760}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 174325760}
2022-05-12 22:37:06,608 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:07,284 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32768000}) to executor  for transfer request: 0.
2022-05-12 22:37:07,285 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:07,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) about to wait for the following futures []
2022-05-12 22:37:07,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) done waiting for dependent futures
2022-05-12 22:37:07,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32768000}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 32768000}
2022-05-12 22:37:07,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:07,350 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157024256}) to executor  for transfer request: 0.
2022-05-12 22:37:07,350 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:07,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) about to wait for the following futures []
2022-05-12 22:37:07,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) done waiting for dependent futures
2022-05-12 22:37:07,351 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157024256}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 157024256}
2022-05-12 22:37:07,351 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:07,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182452224}) to executor  for transfer request: 0.
2022-05-12 22:37:07,395 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:07,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) about to wait for the following futures []
2022-05-12 22:37:07,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) done waiting for dependent futures
2022-05-12 22:37:07,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182452224}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 182452224}
2022-05-12 22:37:07,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,705 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188743680}) to executor  for transfer request: 0.
2022-05-12 22:37:08,705 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) about to wait for the following futures []
2022-05-12 22:37:08,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) done waiting for dependent futures
2022-05-12 22:37:08,706 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188743680}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 188743680}
2022-05-12 22:37:08,706 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:10,500 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174587904}) to executor  for transfer request: 0.
2022-05-12 22:37:10,500 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:10,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) about to wait for the following futures []
2022-05-12 22:37:10,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) done waiting for dependent futures
2022-05-12 22:37:10,501 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174587904}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 174587904}
2022-05-12 22:37:10,501 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200015872}) to executor  for transfer request: 0.
2022-05-12 22:37:11,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:11,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) about to wait for the following futures []
2022-05-12 22:37:11,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) done waiting for dependent futures
2022-05-12 22:37:11,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200015872}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 200015872}
2022-05-12 22:37:11,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:12,057 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204734464}) to executor  for transfer request: 0.
2022-05-12 22:37:12,058 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:12,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) about to wait for the following futures []
2022-05-12 22:37:12,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) done waiting for dependent futures
2022-05-12 22:37:12,058 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204734464}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 204734464}
2022-05-12 22:37:12,059 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:13,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182714368}) to executor  for transfer request: 0.
2022-05-12 22:37:13,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:13,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) about to wait for the following futures []
2022-05-12 22:37:13,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) done waiting for dependent futures
2022-05-12 22:37:13,041 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182714368}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 182714368}
2022-05-12 22:37:13,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:13,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33030144}) to executor  for transfer request: 0.
2022-05-12 22:37:13,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:13,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) about to wait for the following futures []
2022-05-12 22:37:13,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) done waiting for dependent futures
2022-05-12 22:37:13,616 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33030144}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 33030144}
2022-05-12 22:37:13,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,455 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157286400}) to executor  for transfer request: 0.
2022-05-12 22:37:14,455 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,455 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) about to wait for the following futures []
2022-05-12 22:37:14,455 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) done waiting for dependent futures
2022-05-12 22:37:14,456 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157286400}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 157286400}
2022-05-12 22:37:14,456 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:16,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200278016}) to executor  for transfer request: 0.
2022-05-12 22:37:16,147 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:16,147 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) about to wait for the following futures []
2022-05-12 22:37:16,147 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) done waiting for dependent futures
2022-05-12 22:37:16,147 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200278016}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 200278016}
2022-05-12 22:37:16,148 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:16,547 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174850048}) to executor  for transfer request: 0.
2022-05-12 22:37:16,547 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:16,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) about to wait for the following futures []
2022-05-12 22:37:16,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) done waiting for dependent futures
2022-05-12 22:37:16,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174850048}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 174850048}
2022-05-12 22:37:16,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:16,610 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189005824}) to executor  for transfer request: 0.
2022-05-12 22:37:16,610 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:16,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) about to wait for the following futures []
2022-05-12 22:37:16,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) done waiting for dependent futures
2022-05-12 22:37:16,611 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189005824}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 189005824}
2022-05-12 22:37:16,611 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:19,654 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200540160}) to executor  for transfer request: 0.
2022-05-12 22:37:19,654 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:19,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) about to wait for the following futures []
2022-05-12 22:37:19,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) done waiting for dependent futures
2022-05-12 22:37:19,655 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200540160}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 200540160}
2022-05-12 22:37:19,655 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:19,977 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182976512}) to executor  for transfer request: 0.
2022-05-12 22:37:19,977 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:19,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) about to wait for the following futures []
2022-05-12 22:37:19,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) done waiting for dependent futures
2022-05-12 22:37:19,978 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182976512}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 182976512}
2022-05-12 22:37:19,978 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157548544}) to executor  for transfer request: 0.
2022-05-12 22:37:22,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) about to wait for the following futures []
2022-05-12 22:37:22,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) done waiting for dependent futures
2022-05-12 22:37:22,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157548544}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 157548544}
2022-05-12 22:37:22,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,473 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175112192}) to executor  for transfer request: 0.
2022-05-12 22:37:22,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) about to wait for the following futures []
2022-05-12 22:37:22,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) done waiting for dependent futures
2022-05-12 22:37:22,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175112192}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 175112192}
2022-05-12 22:37:22,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:23,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200802304}) to executor  for transfer request: 0.
2022-05-12 22:37:23,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:23,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) about to wait for the following futures []
2022-05-12 22:37:23,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) done waiting for dependent futures
2022-05-12 22:37:23,179 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200802304}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 200802304}
2022-05-12 22:37:23,180 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:23,683 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33292288}) to executor  for transfer request: 0.
2022-05-12 22:37:23,683 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:23,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:23,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) about to wait for the following futures []
2022-05-12 22:37:23,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) done waiting for dependent futures
2022-05-12 22:37:23,684 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33292288}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 33292288}
2022-05-12 22:37:23,684 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:23,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189267968}) to executor  for transfer request: 0.
2022-05-12 22:37:23,981 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:23,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) about to wait for the following futures []
2022-05-12 22:37:23,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) done waiting for dependent futures
2022-05-12 22:37:23,982 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189267968}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 189267968}
2022-05-12 22:37:23,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:25,177 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204996608}) to executor  for transfer request: 0.
2022-05-12 22:37:25,177 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:25,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) about to wait for the following futures []
2022-05-12 22:37:25,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) done waiting for dependent futures
2022-05-12 22:37:25,178 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204996608}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 204996608}
2022-05-12 22:37:25,178 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:25,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183238656}) to executor  for transfer request: 0.
2022-05-12 22:37:25,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:25,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) about to wait for the following futures []
2022-05-12 22:37:25,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) done waiting for dependent futures
2022-05-12 22:37:25,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183238656}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 183238656}
2022-05-12 22:37:25,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:28,492 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175374336}) to executor  for transfer request: 0.
2022-05-12 22:37:28,492 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:28,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) about to wait for the following futures []
2022-05-12 22:37:28,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) done waiting for dependent futures
2022-05-12 22:37:28,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175374336}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 175374336}
2022-05-12 22:37:28,493 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,634 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201064448}) to executor  for transfer request: 0.
2022-05-12 22:37:30,634 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:30,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) about to wait for the following futures []
2022-05-12 22:37:30,635 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) done waiting for dependent futures
2022-05-12 22:37:30,635 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201064448}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 201064448}
2022-05-12 22:37:30,635 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,778 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157810688}) to executor  for transfer request: 0.
2022-05-12 22:37:30,778 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:30,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) about to wait for the following futures []
2022-05-12 22:37:30,779 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) done waiting for dependent futures
2022-05-12 22:37:30,779 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157810688}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 157810688}
2022-05-12 22:37:30,779 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:31,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183500800}) to executor  for transfer request: 0.
2022-05-12 22:37:31,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:31,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) about to wait for the following futures []
2022-05-12 22:37:31,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) done waiting for dependent futures
2022-05-12 22:37:31,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183500800}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 183500800}
2022-05-12 22:37:31,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,353 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205258752}) to executor  for transfer request: 0.
2022-05-12 22:37:32,354 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) about to wait for the following futures []
2022-05-12 22:37:32,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) done waiting for dependent futures
2022-05-12 22:37:32,354 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205258752}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 205258752}
2022-05-12 22:37:32,355 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,562 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211812352}) to executor  for transfer request: 0.
2022-05-12 22:37:32,562 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) about to wait for the following futures []
2022-05-12 22:37:32,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) done waiting for dependent futures
2022-05-12 22:37:32,562 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211812352}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 211812352}
2022-05-12 22:37:32,563 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:33,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189530112}) to executor  for transfer request: 0.
2022-05-12 22:37:33,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:33,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) about to wait for the following futures []
2022-05-12 22:37:33,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) done waiting for dependent futures
2022-05-12 22:37:33,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189530112}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 189530112}
2022-05-12 22:37:33,266 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:33,765 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175636480}) to executor  for transfer request: 0.
2022-05-12 22:37:33,765 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:33,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) about to wait for the following futures []
2022-05-12 22:37:33,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) done waiting for dependent futures
2022-05-12 22:37:33,765 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175636480}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 175636480}
2022-05-12 22:37:33,766 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,321 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183762944}) to executor  for transfer request: 0.
2022-05-12 22:37:37,321 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) about to wait for the following futures []
2022-05-12 22:37:37,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) done waiting for dependent futures
2022-05-12 22:37:37,321 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183762944}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 183762944}
2022-05-12 22:37:37,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:38,280 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158072832}) to executor  for transfer request: 0.
2022-05-12 22:37:38,280 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:38,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) about to wait for the following futures []
2022-05-12 22:37:38,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) done waiting for dependent futures
2022-05-12 22:37:38,281 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158072832}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 158072832}
2022-05-12 22:37:38,281 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:38,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175898624}) to executor  for transfer request: 0.
2022-05-12 22:37:38,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:38,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:38,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) about to wait for the following futures []
2022-05-12 22:37:38,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) done waiting for dependent futures
2022-05-12 22:37:38,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175898624}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 175898624}
2022-05-12 22:37:38,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,090 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205520896}) to executor  for transfer request: 0.
2022-05-12 22:37:41,090 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) about to wait for the following futures []
2022-05-12 22:37:41,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) done waiting for dependent futures
2022-05-12 22:37:41,091 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205520896}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 205520896}
2022-05-12 22:37:41,091 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,167 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184025088}) to executor  for transfer request: 0.
2022-05-12 22:37:41,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) about to wait for the following futures []
2022-05-12 22:37:41,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) done waiting for dependent futures
2022-05-12 22:37:41,168 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184025088}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 184025088}
2022-05-12 22:37:41,168 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189792256}) to executor  for transfer request: 0.
2022-05-12 22:37:41,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) about to wait for the following futures []
2022-05-12 22:37:41,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) done waiting for dependent futures
2022-05-12 22:37:41,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189792256}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 189792256}
2022-05-12 22:37:41,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,910 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158334976}) to executor  for transfer request: 0.
2022-05-12 22:37:44,910 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) about to wait for the following futures []
2022-05-12 22:37:44,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) done waiting for dependent futures
2022-05-12 22:37:44,911 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158334976}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 158334976}
2022-05-12 22:37:44,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,386 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205783040}) to executor  for transfer request: 0.
2022-05-12 22:37:46,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) about to wait for the following futures []
2022-05-12 22:37:46,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) done waiting for dependent futures
2022-05-12 22:37:46,386 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205783040}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 205783040}
2022-05-12 22:37:46,387 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:48,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184287232}) to executor  for transfer request: 0.
2022-05-12 22:37:48,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:48,175 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:48,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) about to wait for the following futures []
2022-05-12 22:37:48,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) done waiting for dependent futures
2022-05-12 22:37:48,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184287232}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 184287232}
2022-05-12 22:37:48,177 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,025 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:37:49,025 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:49,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:37:49,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:37:49,026 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 3932160}
2022-05-12 22:37:49,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,033 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190054400}) to executor  for transfer request: 0.
2022-05-12 22:37:51,033 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) about to wait for the following futures []
2022-05-12 22:37:51,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) done waiting for dependent futures
2022-05-12 22:37:51,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190054400}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 190054400}
2022-05-12 22:37:51,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158597120}) to executor  for transfer request: 0.
2022-05-12 22:37:51,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) about to wait for the following futures []
2022-05-12 22:37:51,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) done waiting for dependent futures
2022-05-12 22:37:51,852 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158597120}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 158597120}
2022-05-12 22:37:51,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:52,793 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206045184}) to executor  for transfer request: 0.
2022-05-12 22:37:52,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:52,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) about to wait for the following futures []
2022-05-12 22:37:52,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) done waiting for dependent futures
2022-05-12 22:37:52,794 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206045184}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 206045184}
2022-05-12 22:37:52,794 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:58,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190316544}) to executor  for transfer request: 0.
2022-05-12 22:37:58,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:58,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) about to wait for the following futures []
2022-05-12 22:37:58,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) done waiting for dependent futures
2022-05-12 22:37:58,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190316544}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 190316544}
2022-05-12 22:37:58,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:58,818 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158859264}) to executor  for transfer request: 0.
2022-05-12 22:37:58,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:58,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) about to wait for the following futures []
2022-05-12 22:37:58,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) done waiting for dependent futures
2022-05-12 22:37:58,818 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158859264}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 158859264}
2022-05-12 22:37:58,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:00,615 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206307328}) to executor  for transfer request: 0.
2022-05-12 22:38:00,615 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:00,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) about to wait for the following futures []
2022-05-12 22:38:00,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) done waiting for dependent futures
2022-05-12 22:38:00,616 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206307328}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 206307328}
2022-05-12 22:38:00,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:03,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206569472}) to executor  for transfer request: 0.
2022-05-12 22:38:03,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:03,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) about to wait for the following futures []
2022-05-12 22:38:03,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) done waiting for dependent futures
2022-05-12 22:38:03,993 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206569472}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 206569472}
2022-05-12 22:38:03,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190578688}) to executor  for transfer request: 0.
2022-05-12 22:38:05,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) about to wait for the following futures []
2022-05-12 22:38:05,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) done waiting for dependent futures
2022-05-12 22:38:05,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190578688}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 190578688}
2022-05-12 22:38:05,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212074496}) to executor  for transfer request: 0.
2022-05-12 22:38:05,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) about to wait for the following futures []
2022-05-12 22:38:05,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) done waiting for dependent futures
2022-05-12 22:38:05,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212074496}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 212074496}
2022-05-12 22:38:05,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:07,945 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159121408}) to executor  for transfer request: 0.
2022-05-12 22:38:07,946 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:07,946 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:07,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) about to wait for the following futures []
2022-05-12 22:38:07,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) done waiting for dependent futures
2022-05-12 22:38:07,946 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159121408}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 159121408}
2022-05-12 22:38:07,946 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:09,158 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206831616}) to executor  for transfer request: 0.
2022-05-12 22:38:09,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:09,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) about to wait for the following futures []
2022-05-12 22:38:09,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) done waiting for dependent futures
2022-05-12 22:38:09,159 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206831616}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 206831616}
2022-05-12 22:38:09,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:10,828 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:38:10,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:10,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:38:10,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:38:10,829 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 4194304}
2022-05-12 22:38:10,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:11,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190840832}) to executor  for transfer request: 0.
2022-05-12 22:38:11,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:11,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) about to wait for the following futures []
2022-05-12 22:38:11,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) done waiting for dependent futures
2022-05-12 22:38:11,146 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190840832}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 190840832}
2022-05-12 22:38:11,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:15,117 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191102976}) to executor  for transfer request: 0.
2022-05-12 22:38:15,118 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:15,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) about to wait for the following futures []
2022-05-12 22:38:15,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) done waiting for dependent futures
2022-05-12 22:38:15,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191102976}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 191102976}
2022-05-12 22:38:15,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:16,950 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207093760}) to executor  for transfer request: 0.
2022-05-12 22:38:16,950 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:16,950 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) about to wait for the following futures []
2022-05-12 22:38:16,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) done waiting for dependent futures
2022-05-12 22:38:16,951 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207093760}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 207093760}
2022-05-12 22:38:16,951 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:38:22,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:38:22,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:38:22,702 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 4456448}
2022-05-12 22:38:22,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,808 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207355904}) to executor  for transfer request: 0.
2022-05-12 22:38:22,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) about to wait for the following futures []
2022-05-12 22:38:22,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) done waiting for dependent futures
2022-05-12 22:38:22,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207355904}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 207355904}
2022-05-12 22:38:22,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,573 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191365120}) to executor  for transfer request: 0.
2022-05-12 22:38:23,573 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:23,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) about to wait for the following futures []
2022-05-12 22:38:23,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) done waiting for dependent futures
2022-05-12 22:38:23,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191365120}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 191365120}
2022-05-12 22:38:23,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207618048}) to executor  for transfer request: 0.
2022-05-12 22:38:26,470 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) about to wait for the following futures []
2022-05-12 22:38:26,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) done waiting for dependent futures
2022-05-12 22:38:26,470 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207618048}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 207618048}
2022-05-12 22:38:26,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191627264}) to executor  for transfer request: 0.
2022-05-12 22:38:27,355 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,355 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) about to wait for the following futures []
2022-05-12 22:38:27,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) done waiting for dependent futures
2022-05-12 22:38:27,356 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191627264}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 191627264}
2022-05-12 22:38:27,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,337 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191889408}) to executor  for transfer request: 0.
2022-05-12 22:38:31,337 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) about to wait for the following futures []
2022-05-12 22:38:31,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) done waiting for dependent futures
2022-05-12 22:38:31,338 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191889408}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 191889408}
2022-05-12 22:38:31,338 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,642 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207880192}) to executor  for transfer request: 0.
2022-05-12 22:38:31,642 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) about to wait for the following futures []
2022-05-12 22:38:31,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) done waiting for dependent futures
2022-05-12 22:38:31,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207880192}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 207880192}
2022-05-12 22:38:31,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:38:31,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:38:31,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:38:31,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 4718592}
2022-05-12 22:38:31,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:37,124 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192151552}) to executor  for transfer request: 0.
2022-05-12 22:38:37,124 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:37,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) about to wait for the following futures []
2022-05-12 22:38:37,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) done waiting for dependent futures
2022-05-12 22:38:37,125 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192151552}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 192151552}
2022-05-12 22:38:37,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,341 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208142336}) to executor  for transfer request: 0.
2022-05-12 22:38:40,341 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) about to wait for the following futures []
2022-05-12 22:38:40,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) done waiting for dependent futures
2022-05-12 22:38:40,342 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208142336}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 208142336}
2022-05-12 22:38:40,342 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:42,368 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192413696}) to executor  for transfer request: 0.
2022-05-12 22:38:42,368 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:42,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) about to wait for the following futures []
2022-05-12 22:38:42,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) done waiting for dependent futures
2022-05-12 22:38:42,368 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192413696}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 192413696}
2022-05-12 22:38:42,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:43,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212336640}) to executor  for transfer request: 0.
2022-05-12 22:38:43,297 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:43,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) about to wait for the following futures []
2022-05-12 22:38:43,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) done waiting for dependent futures
2022-05-12 22:38:43,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212336640}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 212336640}
2022-05-12 22:38:43,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:43,449 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:38:43,450 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:43,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:38:43,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:38:43,451 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 4980736}
2022-05-12 22:38:43,451 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:43,573 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208404480}) to executor  for transfer request: 0.
2022-05-12 22:38:43,573 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:43,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) about to wait for the following futures []
2022-05-12 22:38:43,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) done waiting for dependent futures
2022-05-12 22:38:43,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208404480}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 208404480}
2022-05-12 22:38:43,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192675840}) to executor  for transfer request: 0.
2022-05-12 22:38:48,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:48,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) about to wait for the following futures []
2022-05-12 22:38:48,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) done waiting for dependent futures
2022-05-12 22:38:48,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192675840}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 192675840}
2022-05-12 22:38:48,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208666624}) to executor  for transfer request: 0.
2022-05-12 22:38:48,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:48,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) about to wait for the following futures []
2022-05-12 22:38:48,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) done waiting for dependent futures
2022-05-12 22:38:48,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208666624}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 208666624}
2022-05-12 22:38:48,947 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,443 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208928768}) to executor  for transfer request: 0.
2022-05-12 22:38:54,444 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) about to wait for the following futures []
2022-05-12 22:38:54,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) done waiting for dependent futures
2022-05-12 22:38:54,444 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208928768}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 208928768}
2022-05-12 22:38:54,445 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:56,415 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:38:56,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:56,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:38:56,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:38:56,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 5242880}
2022-05-12 22:38:56,417 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:58,989 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209190912}) to executor  for transfer request: 0.
2022-05-12 22:38:58,989 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:58,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) about to wait for the following futures []
2022-05-12 22:38:58,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) done waiting for dependent futures
2022-05-12 22:38:58,990 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209190912}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 209190912}
2022-05-12 22:38:58,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209453056}) to executor  for transfer request: 0.
2022-05-12 22:39:03,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,428 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) about to wait for the following futures []
2022-05-12 22:39:03,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) done waiting for dependent futures
2022-05-12 22:39:03,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209453056}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 209453056}
2022-05-12 22:39:03,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:39:04,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:04,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:39:04,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:39:04,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 5505024}
2022-05-12 22:39:04,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,813 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212598784}) to executor  for transfer request: 0.
2022-05-12 22:39:09,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) about to wait for the following futures []
2022-05-12 22:39:09,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) done waiting for dependent futures
2022-05-12 22:39:09,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212598784}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 212598784}
2022-05-12 22:39:09,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:10,056 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:39:10,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:10,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:39:10,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:39:10,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 5767168}
2022-05-12 22:39:10,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:13,864 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:39:13,865 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:13,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:39:13,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:39:13,865 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 6029312}
2022-05-12 22:39:13,866 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212860928}) to executor  for transfer request: 0.
2022-05-12 22:39:17,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) about to wait for the following futures []
2022-05-12 22:39:17,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) done waiting for dependent futures
2022-05-12 22:39:17,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212860928}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 212860928}
2022-05-12 22:39:17,298 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:39:19,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:39:19,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:39:19,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 6291456}
2022-05-12 22:39:19,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:24,522 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:39:24,522 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:24,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:39:24,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:39:24,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 6553600}
2022-05-12 22:39:24,523 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:28,022 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:39:28,023 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:28,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:39:28,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:39:28,023 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 6815744}
2022-05-12 22:39:28,024 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:31,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:39:31,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:31,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:39:31,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:39:31,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 7077888}
2022-05-12 22:39:31,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,169 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:39:34,170 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:39:34,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:39:34,170 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 7340032}
2022-05-12 22:39:34,171 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:37,847 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:39:37,848 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:37,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:39:37,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:39:37,848 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 7602176}
2022-05-12 22:39:37,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,717 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:39:42,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:39:42,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:39:42,718 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 7864320}
2022-05-12 22:39:42,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,281 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:39:44,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,282 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:39:44,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:39:44,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:39:44,282 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=24>, 'offset': 8126464}
2022-05-12 22:39:44,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,283 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:39:44,283 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:39:44,283 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:39:44,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,703 eolearn.core.eoworkflow DEBUG    Computing DB2Vector(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {}
  meta_info: {}
  bbox: BBox(((219500.0, 1369500.0), (230500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:44,787 eolearn.core.eoworkflow DEBUG    Removing intermediate result for DB2Vector
2022-05-12 22:39:44,789 eolearn.core.eoworkflow DEBUG    Computing VectorToRaster(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((219500.0, 1369500.0), (230500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:44,795 eolearn.core.eoworkflow DEBUG    Removing intermediate result for VectorToRaster
2022-05-12 22:39:44,795 eolearn.core.eoworkflow DEBUG    Computing Extent2Boundary(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((219500.0, 1369500.0), (230500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:44,810 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Boundary
2022-05-12 22:39:44,811 eolearn.core.eoworkflow DEBUG    Computing Extent2Distance(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((219500.0, 1369500.0), (230500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:44,967 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Distance
2022-05-12 22:39:44,968 eolearn.core.eoworkflow DEBUG    Computing SaveTask(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {
    DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
  }
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((219500.0, 1369500.0), (230500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{'eopatch_folder': '30PTU_2_2'})
2022-05-12 22:39:44,973 botocore.loaders DEBUG    Loading JSON file: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/boto3/data/s3/2006-03-01/resources-1.json
2022-05-12 22:39:44,975 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:44,977 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:44,977 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:44,977 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:44,978 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:44,979 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:44,980 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:44,981 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:44,982 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:44,982 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2'}
2022-05-12 22:39:44,982 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:44,982 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:44,982 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:44,982 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:44,983 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:44,983 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:44,983 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:44,983 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:44,983 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:44,983 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:44,983 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:44,983 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:44,983 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:44,983 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:44,983 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:44,983 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:44,983 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:39:44,983 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2
2022-05-12 22:39:44,984 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:44,984 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223944Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:44,984 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223944Z
20220512/us-east-1/s3/aws4_request
4f87e5c3eca40174c2eccdb65b27cbe0a7570b7a136fd5628a6559b778539859
2022-05-12 22:39:44,984 botocore.auth DEBUG    Signature:
53df98d441c1b0e4bbf5be77f7065f207bf19ec7f0decb9131d123939df20331
2022-05-12 22:39:44,984 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:44,984 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:44,984 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:44,984 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:00,307 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2 HTTP/1.1" 400 0
2022-05-12 22:40:00,308 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'GPDEFXQ29TH5G6PR', 'x-amz-id-2': '/IQx52bBlp063+g7FTWpzm/GEz4XRj89Y+oV4baIUMehoJATYYZy2oND0jHMr97+g4ULT5AVf9o=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:59 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:00,308 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:00,312 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:00,312 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:00,312 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:00,312 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:00,312 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:00,313 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:00,313 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:00,313 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:00,313 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:00,313 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:00,313 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:00,313 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:00,314 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:00,314 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:00,314 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:00,314 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:00,314 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:00,315 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:00,315 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:00,315 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:00,315 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224000Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:00,315 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224000Z
20220512/us-east-1/s3/aws4_request
c251d581b71befcebaae46a42aee8086698831352edede67f75dbf27a6848bd8
2022-05-12 22:40:00,315 botocore.auth DEBUG    Signature:
309d54abd8ac82d33530392d3533f93252a5b4f1fc572d23e082a060d5303d0c
2022-05-12 22:40:00,316 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:00,316 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:00,316 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:00,317 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:05,631 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:05,632 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': '53302RWEC41GJ7J3', 'x-amz-id-2': 'rz39p9LRQ9UiH2BMxSE81gCs10WvUk6FGTE1GELDvwWDV+3N9e3o6q685yHNG5pmG/98R+73FX8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:05 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:05,632 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:05,632 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,633 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:05,633 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,633 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:05,633 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:05,634 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:05,634 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,635 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,635 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,635 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:05,635 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:05,635 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:05,635 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224005Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:05,635 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224005Z
20220512/eu-central-1/s3/aws4_request
66b649f622a46547260a1ed3046915a6a2d8027c99318f33adff82147f909aef
2022-05-12 22:40:05,636 botocore.auth DEBUG    Signature:
0ac8e63213eb9aa617c4da890d84f80381ff40c770e46141df8d17ffcf112050
2022-05-12 22:40:05,636 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,636 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:05,637 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:05,637 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:06,678 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:06,679 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Msr2frgYp3BKLFwlT9cx3y0Ow8OALVOUrBLKDIXMihfH7PUbDwZb7GUkRebnnabTdlredgP6J5o=', 'x-amz-request-id': 'PH0VC6DAZC0ESM0Y', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:06,679 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,679 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:06,679 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,680 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:06,680 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:06,680 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:06,680 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:06,681 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:06,682 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:06,682 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2
2022-05-12 22:40:06,682 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,682 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,682 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/eu-central-1/s3/aws4_request
2a793a6848e856349d93bf1203c19022c0e9fca6e97378fb2b23c8aacc50ba6d
2022-05-12 22:40:06,683 botocore.auth DEBUG    Signature:
d4f1aec2fc5856f18e976935a9ec467a5ea020fbaf959483e0541ea4713dbc87
2022-05-12 22:40:06,683 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:06,683 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,683 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,789 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2 HTTP/1.1" 404 0
2022-05-12 22:40:06,790 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'PH0TMRNN52P473PA', 'x-amz-id-2': 'f6MH0c6avnQlbh0c99YXriyM71+d6MVpUq9WIavlqVpy4KCUMD7mfitXZpcyyWrpaYG989J62A8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:06 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:06,790 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,790 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:06,791 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,791 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:06,791 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:06,791 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:06,793 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:06,793 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:06,794 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,794 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,794 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:06,794 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:06,794 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,794 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,794 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:06,794 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:06,795 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,795 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,795 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:06,795 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:06,795 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,795 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,795 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:06,795 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:06,795 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:06,795 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:06,796 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,796 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,796 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/eu-central-1/s3/aws4_request
f43a78049b73adf88e50ac383ef80a5b0a6758bddc7bba9fc918698d31363d6c
2022-05-12 22:40:06,796 botocore.auth DEBUG    Signature:
798e383bfef8592b87eec6bbf45eef32b40067df7aa7bd1ba8c08b68f058c2c8
2022-05-12 22:40:06,796 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:06,796 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,797 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,877 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:06,878 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'YleccWxHB/tIKJR9Sat2yydOv6BIr+bn9UFI+BTmGfo/0pqOxe9HE36c6dDX1HdGDHWjTDY9pTk=', 'x-amz-request-id': 'PH0YNWD6T74FP24J', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:06,878 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,878 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:06,878 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,878 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:06,878 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'PH0YNWD6T74FP24J', 'HostId': 'YleccWxHB/tIKJR9Sat2yydOv6BIr+bn9UFI+BTmGfo/0pqOxe9HE36c6dDX1HdGDHWjTDY9pTk=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'YleccWxHB/tIKJR9Sat2yydOv6BIr+bn9UFI+BTmGfo/0pqOxe9HE36c6dDX1HdGDHWjTDY9pTk=', 'x-amz-request-id': 'PH0YNWD6T74FP24J', 'date': 'Thu, 12 May 2022 22:40:07 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:06,879 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:06,879 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:06,880 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:06,880 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:06,882 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:06,883 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:06,885 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,885 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,885 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:06,885 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:06,885 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,885 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,885 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:06,885 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,885 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,885 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_2/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:06,886 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:06,886 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,886 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,886 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:06,886 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:06,886 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:06,886 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,886 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,886 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,886 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_2%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,886 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/us-east-1/s3/aws4_request
5a8a6c9f52bcb70dc43d02b33d0c45886fa1b5897978760807766d2e00201c23
2022-05-12 22:40:06,886 botocore.auth DEBUG    Signature:
21b47030438a6b333dcb699ab2435dd7d368af2006eb4f3f5589d5f1f8341200
2022-05-12 22:40:06,886 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:06,886 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,887 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,887 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:07,607 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:40:07,608 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'V3SQ9FPCF69G3SRZ', 'x-amz-id-2': 't38GQfNyiX6sx5bXK4S4NxYhphtCU2Zu5DUR5YqVJZY5zaPihoS0CED9qmPN60gWEGuOgNeegH4=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:06 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:07,609 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1V3SQ9FPCF69G3SRZt38GQfNyiX6sx5bXK4S4NxYhphtCU2Zu5DUR5YqVJZY5zaPihoS0CED9qmPN60gWEGuOgNeegH4='
2022-05-12 22:40:07,612 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:07,613 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:07,613 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:07,613 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:07,613 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,613 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:07,613 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:07,614 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,614 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,614 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:07,614 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:07,614 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,615 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,615 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:07,616 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_2%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224007Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:07,616 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224007Z
20220512/eu-central-1/s3/aws4_request
70bd69880eff4dd9939225e09126d54cb3528cf7b00ac0b61122daa163953d0c
2022-05-12 22:40:07,616 botocore.auth DEBUG    Signature:
3e0f67f4fbd0a6be94423659d96bd43bf46d609a91a992190d19059293371729
2022-05-12 22:40:07,616 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:07,616 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:07,617 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:07,617 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:08,588 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,589 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '8bipm1wTUoBvDWgIZjMB7t6BTgisQi9MNF4Lwn1mE0Eq+gpq/U3Gkm6DjmRWg2XpiyYBXBXPAdM=', 'x-amz-request-id': '34DYD4XAB2NBQGVH', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,589 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_2/1000/urlfalseeopatches/30PTU_2_2/2022-05-12T11:03:24.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/bbox.pkl2022-05-12T11:03:44.000Z"fd0dd636bafca22ab0550406db7b3c8d"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/timestamp.pkl2022-05-12T11:03:44.000Z"bddd5da052edd05b16c1bacc1598871b"1858e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/data/eopatches/30PTU_2_2/mask/'
2022-05-12 22:40:08,590 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,590 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,590 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,590 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:08,590 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:08,591 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_2/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:08,592 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,592 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,592 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,592 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_2%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,592 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
c4b5fb7679a4eca8e603f0a97235bc5411e8f448e3452dbfff7ee55904fd9fc9
2022-05-12 22:40:08,592 botocore.auth DEBUG    Signature:
5e1336077a4283fad7976dd5251be34cb6be9590c438446b7e85764e8ff4f5ff
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:08,592 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,592 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,687 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_2%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,688 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'DfBDO1XHu8F5ZatjxJe+gYiWOCsu0A2e6eg3Uk9mVfio3PfneOkpzGRBTVdSVjkeEyrBHeNLVQ4=', 'x-amz-request-id': '34DYWREPZAWJFWPR', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,688 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_2/data/1000/urlfalseeopatches/30PTU_2_2/data/2022-05-12T11:03:31.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/data/BANDS.npy2022-05-12T11:03:46.000Z"668364126ec132a7d0657c0e0d2fb724-26"212960128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/data/CLP.npy2022-05-12T11:03:44.000Z"64200b33409e5329ca46b5baf146334e-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,690 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,691 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,693 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,693 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:08,693 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,693 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,693 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,693 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_2/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,694 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:08,694 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,694 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,694 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:08,694 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:08,694 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,695 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,695 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,695 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_2%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,695 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
02a6e2c6f9ac163b04dc6f27d2401c139939232cc1248cb1407b1f5b9ab6f096
2022-05-12 22:40:08,696 botocore.auth DEBUG    Signature:
428357ed564c07bb2154bfcba7f151f64621349b89fb02fff460e717accdee10
2022-05-12 22:40:08,696 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:08,696 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,697 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,785 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_2%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,786 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Ml0Hpn405M0KrDXzr/WuA4N7uQUYkQLWmVCfeCSpyNlOMxj7OP3glqO1N1K1a7rmt69dHLkOIps=', 'x-amz-request-id': '34DSVS2RZW7QER0K', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,786 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_2/mask/1000/urlfalseeopatches/30PTU_2_2/mask/2022-05-12T11:03:36.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/mask/CLM.npy2022-05-12T11:03:44.000Z"aacc9a9fd97d2a18e07a6a533e6436f0-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_2/mask/IS_DATA.npy2022-05-12T11:03:44.000Z"30cacf5f1ee7603a53f0d2a527451479-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,788 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,789 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,791 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,792 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless'}
2022-05-12 22:40:08,792 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,792 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,792 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,792 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,792 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,792 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,792 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,793 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:08,793 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,793 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,793 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,793 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,793 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,793 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,793 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,793 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,793 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:08,793 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:08,794 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,794 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,794 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
49fb9cd1ff0a99da6358e6d3736574c1ee20e0b28ac9729ff40ae6732e497fec
2022-05-12 22:40:08,794 botocore.auth DEBUG    Signature:
a2f376759e8e2245c32c6a1ec33ca54735580d084df74a175b948dd1ca3a68c7
2022-05-12 22:40:08,794 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,794 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,794 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,878 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:08,878 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DYPJZJYWGR8700', 'x-amz-id-2': 's3y7gKQWl9LZ/BjWy/ftL36PQx5mx9Wc7zMpWB7H1n0gEexFB916oVO6GmeOGMxe+E+lWGVDOUU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,878 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,879 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,879 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,881 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,881 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless/'}
2022-05-12 22:40:08,881 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,881 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,881 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,881 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,881 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,882 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,882 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,883 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,883 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,883 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,883 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:08,883 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:08,883 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,883 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,883 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
ef849ff0d82cd3fe5dd64a7c135523c88461198cf9ae17c3f7cc00b4095ea3e8
2022-05-12 22:40:08,884 botocore.auth DEBUG    Signature:
cec7793b2bbbadcdda96c650bca00106a6de8bbe231629eabbed084651847aab
2022-05-12 22:40:08,884 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,884 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,884 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,965 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:08,966 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DNBGS4S3KCJSPQ', 'x-amz-id-2': 'XWMS7rRLTd2zVG1qm+BvAd4UrmWrCuc+zgQ3uewpUVFbo+wQ0eyVZk47X9tvRKd593fESkz14o0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,966 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,967 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,967 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,967 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,967 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,969 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,970 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,971 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,971 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,971 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,971 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,971 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,971 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,971 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,972 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:08,972 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:08,974 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,974 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,974 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
3b7d9bc26db9d9ea1d035914f8f749424f1426645c1efcaa6e3dc02275fad91f
2022-05-12 22:40:08,974 botocore.auth DEBUG    Signature:
59f2931b898f9e05189c1ed3525b269c0824c0509729aae63c5c5f60efb25e44
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,975 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,975 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,057 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:09,058 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'pQK6PNqyQsIH321JdOUNdAPyHaYR17ayphWtq/9naR29guocRh7zIM18Zw07mJCeey8JLZ/f1E8=', 'x-amz-request-id': '58A2YH67BR41Y1NZ', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,058 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,060 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,060 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,060 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,060 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A2YH67BR41Y1NZ', 'HostId': 'pQK6PNqyQsIH321JdOUNdAPyHaYR17ayphWtq/9naR29guocRh7zIM18Zw07mJCeey8JLZ/f1E8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'pQK6PNqyQsIH321JdOUNdAPyHaYR17ayphWtq/9naR29guocRh7zIM18Zw07mJCeey8JLZ/f1E8=', 'x-amz-request-id': '58A2YH67BR41Y1NZ', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,060 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,062 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,062 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless'}
2022-05-12 22:40:09,062 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,062 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,063 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:09,064 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:09,064 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,064 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,064 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
ccc9b05f8b64254021d3000f36a18a80bf8ca7e2e9816a3ca673c79e56bb24de
2022-05-12 22:40:09,064 botocore.auth DEBUG    Signature:
4c08c0efebbcb4d1a9f778a6f9f34d5bdbbd7d89506321ed55aa9b87f3041c92
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,065 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,065 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,146 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,146 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AF9GCCEFQPBHEE', 'x-amz-id-2': 'Hm1v7N0qkB28+UZXlSijL9Is4kh/m3ibotsTZ5X5GIE4HFBeXjTYaZ0cydufXCQtdqgXdNya/OI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,147 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,147 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,147 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,147 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,147 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,150 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless/'}
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,151 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:09,151 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:09,151 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,151 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,151 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
74969983f2937a1473231cb16e218c798fe3197c3d267a00ca87f53d6daa2d82
2022-05-12 22:40:09,151 botocore.auth DEBUG    Signature:
d951bccce5dab909c19d313cafc651a16e6edef4d5fc53d00b8c5f74fa260a87
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,151 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,151 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,234 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,234 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AC6BM9R39YGZ5F', 'x-amz-id-2': 'zDDWLapAUwuFLVSaj/4VulFNHfo18GD8BTjckz0M2+9THU8OOZqXKP+qSMQjoN9otxz5/tZLzMk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,235 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,235 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,235 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,235 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,235 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,236 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2'}
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:09,237 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2
2022-05-12 22:40:09,238 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,238 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,238 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
521d0f82559ecbef8d1edc3bd8b4741a34e6cdffc7337fde7bc2397869e18963
2022-05-12 22:40:09,238 botocore.auth DEBUG    Signature:
ce068e9b5c7fc5ee36f9dab4d0ee8128c7b07cdd31f93b733f46b23f82e75804
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,238 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,318 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2 HTTP/1.1" 404 0
2022-05-12 22:40:09,319 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A4321HFPE33GMV', 'x-amz-id-2': 'ckktBOupvi4wrypqyL08GTHam6R7Ep2li9/L/2z111s9Y7vsNhay8d5pV3n+sdIbSZWOoICsg8A=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,319 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,319 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,320 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,320 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,320 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,323 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:09,323 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,323 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,323 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,323 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,323 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,324 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,324 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,324 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:09,324 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,324 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,324 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,325 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,325 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,325 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,325 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,325 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,325 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:09,325 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:09,326 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,326 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,326 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
31c68d3d63c2dd1ea4e9e290681db6248f61a719eb7028e712f3a7be3640bfec
2022-05-12 22:40:09,326 botocore.auth DEBUG    Signature:
c5af6d8a3e700be55416a12f23bed51fa661aa17e0836bf355f0c81873954376
2022-05-12 22:40:09,326 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,326 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,327 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,408 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:09,409 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NOyLy0Uk2UA8E20HGLiRo9u0KcmPefeiJWkNRe1ZJgonnYTNf+6VUPlwbxn9Xu/gLKzMomdZ9c4=', 'x-amz-request-id': '58A62QC903S5CB8H', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,409 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,410 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,411 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,411 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,411 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A62QC903S5CB8H', 'HostId': 'NOyLy0Uk2UA8E20HGLiRo9u0KcmPefeiJWkNRe1ZJgonnYTNf+6VUPlwbxn9Xu/gLKzMomdZ9c4=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'NOyLy0Uk2UA8E20HGLiRo9u0KcmPefeiJWkNRe1ZJgonnYTNf+6VUPlwbxn9Xu/gLKzMomdZ9c4=', 'x-amz-request-id': '58A62QC903S5CB8H', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,411 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,415 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2'}
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,416 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,416 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,416 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:09,416 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,416 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,416 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,417 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:09,417 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2
2022-05-12 22:40:09,418 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,418 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,418 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
521d0f82559ecbef8d1edc3bd8b4741a34e6cdffc7337fde7bc2397869e18963
2022-05-12 22:40:09,418 botocore.auth DEBUG    Signature:
ce068e9b5c7fc5ee36f9dab4d0ee8128c7b07cdd31f93b733f46b23f82e75804
2022-05-12 22:40:09,419 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,419 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,419 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,502 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2 HTTP/1.1" 404 0
2022-05-12 22:40:09,502 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A5SE4HK3QG7QA7', 'x-amz-id-2': 'zbTvT1vbE5PbU5Fo4FuO24+4PuE0NoS9BSUzoo7ZDg399uDdLSKf+hSTdfIbSMER7Ox7TwLvlHw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,503 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,503 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,503 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,503 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,503 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,506 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,508 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,508 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,509 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:09,509 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:09,510 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,510 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,510 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
31c68d3d63c2dd1ea4e9e290681db6248f61a719eb7028e712f3a7be3640bfec
2022-05-12 22:40:09,510 botocore.auth DEBUG    Signature:
c5af6d8a3e700be55416a12f23bed51fa661aa17e0836bf355f0c81873954376
2022-05-12 22:40:09,510 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,511 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,511 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,592 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:09,592 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'pCBgxs1W33UnmPdS9mP22QglY/sKC+WORW7vp5RqcYC0J5nq4LOIS5dJWhbdj+1Hu5EC7ZGz69A=', 'x-amz-request-id': '58AD7ZPRBN4QN9S9', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,592 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,593 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,593 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,593 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,593 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58AD7ZPRBN4QN9S9', 'HostId': 'pCBgxs1W33UnmPdS9mP22QglY/sKC+WORW7vp5RqcYC0J5nq4LOIS5dJWhbdj+1Hu5EC7ZGz69A=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'pCBgxs1W33UnmPdS9mP22QglY/sKC+WORW7vp5RqcYC0J5nq4LOIS5dJWhbdj+1Hu5EC7ZGz69A=', 'x-amz-request-id': '58AD7ZPRBN4QN9S9', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,594 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,595 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,596 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless'}
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,597 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,597 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,598 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:09,598 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:09,598 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,598 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,598 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
ccc9b05f8b64254021d3000f36a18a80bf8ca7e2e9816a3ca673c79e56bb24de
2022-05-12 22:40:09,599 botocore.auth DEBUG    Signature:
4c08c0efebbcb4d1a9f778a6f9f34d5bdbbd7d89506321ed55aa9b87f3041c92
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,599 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,599 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,678 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,678 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A0GPRBSJYK9HG4', 'x-amz-id-2': 'kn2E0dsbrHRoTYfOfwlMQd896Iei5rZLXy4gyAFF1CWVpmIlUKfiGZqeOJzS32dXnrAzNqGBw4E=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,679 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,679 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,679 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,679 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,679 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,680 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,681 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless/'}
2022-05-12 22:40:09,681 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,681 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,681 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,681 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,681 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,682 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,682 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,682 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:09,682 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,682 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,682 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,682 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,683 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,683 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,683 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,683 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,683 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:09,683 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:09,683 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,684 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,684 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
74969983f2937a1473231cb16e218c798fe3197c3d267a00ca87f53d6daa2d82
2022-05-12 22:40:09,684 botocore.auth DEBUG    Signature:
d951bccce5dab909c19d313cafc651a16e6edef4d5fc53d00b8c5f74fa260a87
2022-05-12 22:40:09,684 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,684 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,684 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,764 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,764 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AAZ29GR7Z7NZ0F', 'x-amz-id-2': 'r+56S+OD587TplmOL2c2rG1K3T0R4p3AAaaIcblJIWTl63OsJ+iW1w2I3vRk4wZh/mlJGeKWsQo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,764 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,764 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,764 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,764 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,765 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,766 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,767 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:09,767 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,767 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,767 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:09,768 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,768 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:09,768 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:09,769 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:09,769 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:09,769 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,769 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_2/data_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224009Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:09,769 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
bd21230645a45ac722af2edd6f0ba81072ed45ecce5197117f4c1e5732beb8bb
2022-05-12 22:40:09,769 botocore.auth DEBUG    Signature:
e0a8344a682f59c86352858ae8e6ab916fea06b844e7d8abadf2eb7c91036598
2022-05-12 22:40:09,769 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:09,769 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,769 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,861 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_2/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:09,861 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hODp98sP41s98y9V4U0yEQ3OpXAVCVpm8Xc08rrMHdrzi5aKi1vny9ZrZj9F4WD2nKyKpXUtYK0=', 'x-amz-request-id': '58A83HTQ1DRWC8ND', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,861 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:09,861 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:09,861 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A83HTQ1DRWC8ND', 'HostId': 'hODp98sP41s98y9V4U0yEQ3OpXAVCVpm8Xc08rrMHdrzi5aKi1vny9ZrZj9F4WD2nKyKpXUtYK0=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'hODp98sP41s98y9V4U0yEQ3OpXAVCVpm8Xc08rrMHdrzi5aKi1vny9ZrZj9F4WD2nKyKpXUtYK0=', 'x-amz-request-id': '58A83HTQ1DRWC8ND', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:09,862 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,862 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,863 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,863 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,863 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,863 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:09,863 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:09,863 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,863 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,863 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
31c68d3d63c2dd1ea4e9e290681db6248f61a719eb7028e712f3a7be3640bfec
2022-05-12 22:40:09,863 botocore.auth DEBUG    Signature:
c5af6d8a3e700be55416a12f23bed51fa661aa17e0836bf355f0c81873954376
2022-05-12 22:40:09,863 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,864 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,864 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,944 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:09,944 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '968f66BgFBdhHH48BCjW32SR9B+awj7lgJaNsGzNxT/Vv47WmpFwZe/aHNUNZs2m1oaSzGcf7kc=', 'x-amz-request-id': '58AAWF3RY5J9E8QF', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,945 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,945 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,945 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,946 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,946 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58AAWF3RY5J9E8QF', 'HostId': '968f66BgFBdhHH48BCjW32SR9B+awj7lgJaNsGzNxT/Vv47WmpFwZe/aHNUNZs2m1oaSzGcf7kc=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '968f66BgFBdhHH48BCjW32SR9B+awj7lgJaNsGzNxT/Vv47WmpFwZe/aHNUNZs2m1oaSzGcf7kc=', 'x-amz-request-id': '58AAWF3RY5J9E8QF', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,946 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,947 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,947 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless'}
2022-05-12 22:40:09,947 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,947 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,948 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,948 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,949 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,949 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,949 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,949 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,949 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,949 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:09,949 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:09,950 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,950 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,950 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
ccc9b05f8b64254021d3000f36a18a80bf8ca7e2e9816a3ca673c79e56bb24de
2022-05-12 22:40:09,950 botocore.auth DEBUG    Signature:
4c08c0efebbcb4d1a9f778a6f9f34d5bdbbd7d89506321ed55aa9b87f3041c92
2022-05-12 22:40:09,950 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,951 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,951 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,031 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,032 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58ABNRBVZ2VV72ST', 'x-amz-id-2': '7KNBwyvAGBtSlm4hc0ogTjFMUJYFHS/63i36NlHyuak9UHP9MJSXl7BqZ2LCd2CARNBKNR7u380=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,032 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,033 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,033 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,033 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,033 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,035 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,035 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless/'}
2022-05-12 22:40:10,035 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,035 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,036 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,036 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,036 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,036 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,036 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,036 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:10,036 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,036 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,036 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,037 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,037 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,037 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,037 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,037 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,037 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:10,037 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:10,037 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,037 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,038 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
0f7e76f6c7ebd96efe188107548a176c35856c8b1ebbc55ac748e2ab5cf0b42b
2022-05-12 22:40:10,038 botocore.auth DEBUG    Signature:
10f38982f0272e84732b4ed3b69813ca328355142bc6ae4a8a29673c9defcf35
2022-05-12 22:40:10,038 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,038 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,039 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,123 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:10,123 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'GBLqcpwAwKJFU8LD0y/UDBVJBH/qiniitd9WOKKeoaezv8RlDn8sEAbm9Ypyp7yKGo8KUwp1nNo=', 'x-amz-request-id': 'ZX1078QS1T8VZ97D', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,124 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,124 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,125 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,125 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,125 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX1078QS1T8VZ97D', 'HostId': 'GBLqcpwAwKJFU8LD0y/UDBVJBH/qiniitd9WOKKeoaezv8RlDn8sEAbm9Ypyp7yKGo8KUwp1nNo=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'GBLqcpwAwKJFU8LD0y/UDBVJBH/qiniitd9WOKKeoaezv8RlDn8sEAbm9Ypyp7yKGo8KUwp1nNo=', 'x-amz-request-id': 'ZX1078QS1T8VZ97D', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,125 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,127 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,127 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless'}
2022-05-12 22:40:10,127 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,127 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,128 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,128 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,128 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,128 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,128 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,128 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:10,128 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,128 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,128 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,129 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:10,129 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:10,130 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,130 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,130 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
347e33cfdfbf188490fc5bcdab8a4ac411c999cf2bf4f763fe366365c43b8631
2022-05-12 22:40:10,130 botocore.auth DEBUG    Signature:
d409bc04d73ab3b317846fe68adc9d33f0f75a51dcc7d617846a743eb6adb27b
2022-05-12 22:40:10,130 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,130 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,131 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,212 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,213 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1B9PV6P1Y7QGD0', 'x-amz-id-2': 'YT6CkylevdB2U3oPxoNVyVoC6EzrvYnAQthoNNKyLn8BGcDxZPPARdBzQRzmn2hQzruDF7gDgDo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,213 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,213 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,213 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,213 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,213 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,215 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,215 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless/'}
2022-05-12 22:40:10,216 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,216 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,216 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,216 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,216 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,216 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,217 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,217 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:10,217 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,217 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,217 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,217 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,217 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,217 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,217 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,217 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,218 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:10,218 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:10,218 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,218 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,218 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
95d644809fc08b0e64247f8320bc0c6278607c89fc32711c0d44b8038a0baf61
2022-05-12 22:40:10,218 botocore.auth DEBUG    Signature:
177e0270bbf02ace42722e2ada5be6c107c99625472e24d9f3b0648929c214ba
2022-05-12 22:40:10,219 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,219 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,219 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,305 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,306 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX10XXN14KQFJZXH', 'x-amz-id-2': 'XxQE46qzbvdxQfThxm8vvtZ545dj9+tLgfcCUVAYK+xl2TH3GOUbCuu4gqTCyQTBLoHCR+p5CTY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,306 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,306 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,306 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,306 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,307 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,308 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,308 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:10,308 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,309 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:10,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,310 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,310 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,310 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,310 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:10,310 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:10,311 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,311 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,311 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
bf1aad81429e8e5294327c70381fde91a0f3dec684831274cf2495185c604a23
2022-05-12 22:40:10,311 botocore.auth DEBUG    Signature:
9a6cd8f2ae7167d9cc8995dce992a313e91713728adede6d5c9524bfd056d1fd
2022-05-12 22:40:10,311 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,311 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,312 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,396 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:10,396 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'RDtTNe8qCKNS+KTlv6Uvq8mZTl6V9JZUxEdPVe/iFFDHnZPyDhphTTrR9eYZkrviQdg523i1nCI=', 'x-amz-request-id': 'ZX1E95PKQTVF4RWT', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,396 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,397 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,397 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,397 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,398 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX1E95PKQTVF4RWT', 'HostId': 'RDtTNe8qCKNS+KTlv6Uvq8mZTl6V9JZUxEdPVe/iFFDHnZPyDhphTTrR9eYZkrviQdg523i1nCI=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'RDtTNe8qCKNS+KTlv6Uvq8mZTl6V9JZUxEdPVe/iFFDHnZPyDhphTTrR9eYZkrviQdg523i1nCI=', 'x-amz-request-id': 'ZX1E95PKQTVF4RWT', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,398 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,400 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,400 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless'}
2022-05-12 22:40:10,400 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,400 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,400 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,400 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,400 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,401 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,401 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,401 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:10,401 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,401 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,401 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,402 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,402 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,402 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,402 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,402 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,402 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:10,403 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:10,403 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,403 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,403 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
347e33cfdfbf188490fc5bcdab8a4ac411c999cf2bf4f763fe366365c43b8631
2022-05-12 22:40:10,404 botocore.auth DEBUG    Signature:
d409bc04d73ab3b317846fe68adc9d33f0f75a51dcc7d617846a743eb6adb27b
2022-05-12 22:40:10,404 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,404 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,405 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,485 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,485 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX18PARCNAZRMYGN', 'x-amz-id-2': 'j4u4XJS9Pq26wHxcwgjXeYpn3xIhOljVKuV8b6lsHY5tHmqjouTKT4oqwqiIYra0D9q5VL4//nc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,485 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,485 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,485 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,486 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,486 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,486 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,486 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless/'}
2022-05-12 22:40:10,486 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,486 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,486 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,486 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,486 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,486 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,487 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,487 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:10,487 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,487 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,487 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,487 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,487 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,487 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,487 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,487 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,487 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:10,487 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:10,487 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,487 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,487 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
95d644809fc08b0e64247f8320bc0c6278607c89fc32711c0d44b8038a0baf61
2022-05-12 22:40:10,487 botocore.auth DEBUG    Signature:
177e0270bbf02ace42722e2ada5be6c107c99625472e24d9f3b0648929c214ba
2022-05-12 22:40:10,487 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,487 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,488 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,566 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,566 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1CQEQA1A4H4192', 'x-amz-id-2': 'mUDc6M4Pp33xcH0cM6uATOBYu+ygoxWJO2oIySl8AcMjOreeXW9kXuYEZPtBN+F2uLgdKkocRSU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,567 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,567 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,567 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,567 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,567 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,569 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,569 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2'}
2022-05-12 22:40:10,569 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,569 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,570 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,570 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,570 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,570 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,570 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,570 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:10,570 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,570 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,570 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,571 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,571 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,571 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,571 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,571 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,571 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:10,571 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2
2022-05-12 22:40:10,571 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,571 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,572 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
9860d9dd096e00ae28741146d85ad9d5121f3db9b2cb71ee47ea46dab5a51162
2022-05-12 22:40:10,572 botocore.auth DEBUG    Signature:
3445c25218fa32127df61463a67c805deb14e9f5a5145d2bb7a62f021fc1e663
2022-05-12 22:40:10,572 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,572 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,572 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,651 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2 HTTP/1.1" 404 0
2022-05-12 22:40:10,652 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1D116MPE7Y3MEH', 'x-amz-id-2': '2+HC/QtEKC/sTW4NZL3Ts7pM3OFjh+wjOpzp7Aisu/mHwcVDTC+Oda9JHakybq0lNvLrxDOM2qA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,652 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,652 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,652 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,652 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,653 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,654 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,654 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:10,654 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,655 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,655 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,655 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:10,655 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,655 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,655 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,656 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,656 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,656 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:10,656 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:10,657 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,657 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,657 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
bf1aad81429e8e5294327c70381fde91a0f3dec684831274cf2495185c604a23
2022-05-12 22:40:10,657 botocore.auth DEBUG    Signature:
9a6cd8f2ae7167d9cc8995dce992a313e91713728adede6d5c9524bfd056d1fd
2022-05-12 22:40:10,657 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,657 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,658 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,737 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:10,737 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Vt9S9jZwzb2qPxVh7C+eO47jkIdeIEJWo0f8KXh3HCoTa+nam2AgMTXZgMia6ZGrflYFQADvFs0=', 'x-amz-request-id': 'ZX1BPFGPDQCN2EZC', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,738 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,738 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,738 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,739 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,739 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX1BPFGPDQCN2EZC', 'HostId': 'Vt9S9jZwzb2qPxVh7C+eO47jkIdeIEJWo0f8KXh3HCoTa+nam2AgMTXZgMia6ZGrflYFQADvFs0=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Vt9S9jZwzb2qPxVh7C+eO47jkIdeIEJWo0f8KXh3HCoTa+nam2AgMTXZgMia6ZGrflYFQADvFs0=', 'x-amz-request-id': 'ZX1BPFGPDQCN2EZC', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,739 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,741 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,741 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2'}
2022-05-12 22:40:10,741 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,741 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,741 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,741 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,741 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,742 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,742 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,742 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:10,742 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,742 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,742 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,742 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,742 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,742 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,742 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,743 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,743 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:10,743 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2
2022-05-12 22:40:10,743 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,743 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,743 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
9860d9dd096e00ae28741146d85ad9d5121f3db9b2cb71ee47ea46dab5a51162
2022-05-12 22:40:10,743 botocore.auth DEBUG    Signature:
3445c25218fa32127df61463a67c805deb14e9f5a5145d2bb7a62f021fc1e663
2022-05-12 22:40:10,743 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,744 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,744 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,838 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2 HTTP/1.1" 404 0
2022-05-12 22:40:10,838 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX15B7Z6RQHEAAJW', 'x-amz-id-2': '4Q1szUVpED0lqaq8GCQ9+8T+vHi/IbMS8LFTPHbZbeGMBGA2XDB0EBWuzv41Dwp/YY86mcXyRsM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,838 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,839 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,839 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,839 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,839 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,841 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,841 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:10,841 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,841 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,841 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,841 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,842 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,842 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,842 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,842 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:10,842 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,842 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,842 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,842 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,843 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,843 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,843 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,843 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,843 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:10,843 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:10,843 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,843 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,844 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
bf1aad81429e8e5294327c70381fde91a0f3dec684831274cf2495185c604a23
2022-05-12 22:40:10,844 botocore.auth DEBUG    Signature:
9a6cd8f2ae7167d9cc8995dce992a313e91713728adede6d5c9524bfd056d1fd
2022-05-12 22:40:10,844 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,844 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,844 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,927 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:10,928 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'a/BY9DAcRwnGOqWm4lYNybTf3RCvxk48ac46Sr6dfoAjak4QdcmZNMqFj01htMXuQdNhxfLPJ3Y=', 'x-amz-request-id': 'ZX1F0HMFB2F2C7KK', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,928 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,929 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,929 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,929 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,929 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX1F0HMFB2F2C7KK', 'HostId': 'a/BY9DAcRwnGOqWm4lYNybTf3RCvxk48ac46Sr6dfoAjak4QdcmZNMqFj01htMXuQdNhxfLPJ3Y=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'a/BY9DAcRwnGOqWm4lYNybTf3RCvxk48ac46Sr6dfoAjak4QdcmZNMqFj01htMXuQdNhxfLPJ3Y=', 'x-amz-request-id': 'ZX1F0HMFB2F2C7KK', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,930 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,931 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,932 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless'}
2022-05-12 22:40:10,932 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,932 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,932 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,932 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,932 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,932 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,932 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,933 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:10,933 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,933 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,933 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,933 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,933 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,933 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,933 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,933 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,933 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:10,934 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:10,934 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,934 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,934 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
347e33cfdfbf188490fc5bcdab8a4ac411c999cf2bf4f763fe366365c43b8631
2022-05-12 22:40:10,934 botocore.auth DEBUG    Signature:
d409bc04d73ab3b317846fe68adc9d33f0f75a51dcc7d617846a743eb6adb27b
2022-05-12 22:40:10,934 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,935 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,935 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,017 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,017 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX17XNG6R3AMH0RW', 'x-amz-id-2': 'f+NDCkVu9UoADgrTbwwY0GnkTYr/xG8wDSzshtDiG0Sb6ibSPp8uAplQ1VLB/luGOB8mQsdkYFg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,017 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,018 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,018 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,018 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,018 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,019 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,020 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless/'}
2022-05-12 22:40:11,020 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,020 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,020 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,020 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,020 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,020 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,020 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,021 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:11,021 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,021 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,021 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,021 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,021 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,021 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,021 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,021 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,021 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:11,021 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:11,022 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,022 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,022 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
c7f28f836fe9d1c2380e84ef074d3d5d16d297d89e68dba385a1c7de8da64819
2022-05-12 22:40:11,022 botocore.auth DEBUG    Signature:
154641c1de6590b69bb9e1834dcec29a08f2ff165e3e2ea30534e4ac412d488c
2022-05-12 22:40:11,022 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,022 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,023 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,102 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,103 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX33XDCMCZHPGKR', 'x-amz-id-2': 'Wlew+hGiy/YtSav0qcz+FzLOptzXSkN4UEZzxMCSLcqkLV33NwiBG9rGGEHOOzzd5bSWQ3qnEl0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,103 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,103 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,103 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,103 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,104 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,105 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,106 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:11,106 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,106 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,106 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,106 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,106 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,106 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,106 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,107 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,107 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,107 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:11,107 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:11,107 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,107 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,107 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,108 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:11,108 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,108 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,108 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:11,108 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:11,108 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:11,108 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:11,108 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,109 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_2/mask_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224011Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:11,109 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
cade6de89943bf07f7f1ee9e6adebf5f83a1ff48d88025a20f6d2c24e2a790e3
2022-05-12 22:40:11,109 botocore.auth DEBUG    Signature:
7026457b8a109a2e06b88c94b6797a04b8c9ec38ff628b139b3d8174af747d18
2022-05-12 22:40:11,109 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:11,109 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,110 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,249 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,249 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'TbaQlJPoJKxyjgIeSWN25XxPwFWKIfhJGHMmZyyp0NgYO8Pl+ksLAEIDqpmgmmLBfUyFUNINDc4=', 'x-amz-request-id': 'HZX5GHJFSWX9MP2A', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,250 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,250 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:11,250 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,250 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:11,250 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX5GHJFSWX9MP2A', 'HostId': 'TbaQlJPoJKxyjgIeSWN25XxPwFWKIfhJGHMmZyyp0NgYO8Pl+ksLAEIDqpmgmmLBfUyFUNINDc4=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'TbaQlJPoJKxyjgIeSWN25XxPwFWKIfhJGHMmZyyp0NgYO8Pl+ksLAEIDqpmgmmLBfUyFUNINDc4=', 'x-amz-request-id': 'HZX5GHJFSWX9MP2A', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:11,250 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,252 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,252 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:11,252 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,253 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,253 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,253 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,253 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,253 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,253 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,253 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:11,253 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,253 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,254 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,254 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,254 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,254 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,254 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,254 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,254 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:11,254 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:11,255 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,255 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,255 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
d3aca9d698629c4587015da57d930328372292adfa9cf000ec7baccfc802496c
2022-05-12 22:40:11,255 botocore.auth DEBUG    Signature:
d00cf43918645c88733bcbb433dc980338bb28e684a60d61ac7a952f23ec20fa
2022-05-12 22:40:11,255 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,255 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,256 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,337 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:11,338 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qydKowzxHIMRO07azj24EvUA86ezxBiPkFutJs07IBAznZTqc9SzfQ+QIYHjNAakKncLSr+QUC8=', 'x-amz-request-id': 'HZX31R2NFSCBN2TQ', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,338 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,339 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,339 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,340 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,340 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX31R2NFSCBN2TQ', 'HostId': 'qydKowzxHIMRO07azj24EvUA86ezxBiPkFutJs07IBAznZTqc9SzfQ+QIYHjNAakKncLSr+QUC8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'qydKowzxHIMRO07azj24EvUA86ezxBiPkFutJs07IBAznZTqc9SzfQ+QIYHjNAakKncLSr+QUC8=', 'x-amz-request-id': 'HZX31R2NFSCBN2TQ', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,340 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,341 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,341 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless'}
2022-05-12 22:40:11,342 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,342 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,342 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,342 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,342 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,342 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,342 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,342 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:11,342 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,342 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,343 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,343 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,343 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,343 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,343 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,343 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,343 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:11,343 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:11,344 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,344 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,344 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
17089584457e6ec0fc40aa08b32c8a86d2f2aebfb9dc7489d3fe377314676333
2022-05-12 22:40:11,344 botocore.auth DEBUG    Signature:
7ed86dec3c78c02ce37aa2d349e0d93f5e25eba41c4f71400f67954b489c1923
2022-05-12 22:40:11,344 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,344 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,344 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,421 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,422 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX1FP92R3ZHH127', 'x-amz-id-2': 'aj5Huh+Knw9v0v1D/yxyWQJ6LXRVwFxz8Ckxb5VDmRprjfXU6EI87GmAtOGH8kAb/nGOJpc/FHg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,422 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,423 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,423 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,423 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,423 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,426 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,426 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless/'}
2022-05-12 22:40:11,426 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,426 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,426 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,426 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,427 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,427 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,427 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,427 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:11,427 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,427 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,427 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,427 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,427 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,427 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,428 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,428 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,428 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:11,428 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:11,428 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,428 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,428 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
c7f28f836fe9d1c2380e84ef074d3d5d16d297d89e68dba385a1c7de8da64819
2022-05-12 22:40:11,428 botocore.auth DEBUG    Signature:
154641c1de6590b69bb9e1834dcec29a08f2ff165e3e2ea30534e4ac412d488c
2022-05-12 22:40:11,429 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,429 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,429 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,513 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,514 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'xZTS6cL0iiml+n9c9OvXmyo5yYAIJJ3FmIqe14bdOo2r2SjeYkLe/wGur6JZLrlVn6EjIAdfT9g=', 'x-amz-request-id': 'HZX75NSC3YNFZ5YZ', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,514 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,514 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,515 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,515 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,515 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX75NSC3YNFZ5YZ', 'HostId': 'xZTS6cL0iiml+n9c9OvXmyo5yYAIJJ3FmIqe14bdOo2r2SjeYkLe/wGur6JZLrlVn6EjIAdfT9g=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'xZTS6cL0iiml+n9c9OvXmyo5yYAIJJ3FmIqe14bdOo2r2SjeYkLe/wGur6JZLrlVn6EjIAdfT9g=', 'x-amz-request-id': 'HZX75NSC3YNFZ5YZ', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,515 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,517 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,517 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless'}
2022-05-12 22:40:11,517 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,517 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,517 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,517 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,517 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,518 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,518 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,518 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:11,518 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,518 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,518 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,518 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,518 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,518 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,518 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,518 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,519 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:11,519 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:11,519 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,519 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,519 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
0239d595474adc4214db6b895031687dd4bae4385de9f8bd87b38510e37cf3d5
2022-05-12 22:40:11,519 botocore.auth DEBUG    Signature:
801d79e0c2e84773d73f609e6be9e8cfd656592216ec834588202e4443266558
2022-05-12 22:40:11,519 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,520 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,520 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,601 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,601 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXATT977K5FGMKZ', 'x-amz-id-2': 'zUUD4+4Z3T97qjb9GT5ACDt00tvZGSnx63RbLCQK5gJOfX8XIGZy1Sow7UzjI75VAhBTJqwPv1U=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,601 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,602 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,602 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,602 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,602 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,604 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,604 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless/'}
2022-05-12 22:40:11,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,605 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,605 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,605 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:11,605 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,605 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,605 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,605 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,606 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,606 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,606 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,606 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,606 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:11,606 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:11,606 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,607 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,607 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
54d27bb90ac7828e88efd365191b1b638e9565585211816116ee2978d0370652
2022-05-12 22:40:11,607 botocore.auth DEBUG    Signature:
1039159be99d9637f9669942868df00fab98c5d8df66e976d219751bef22a3cc
2022-05-12 22:40:11,607 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,607 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,608 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,688 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,689 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX8738VFR31SH35', 'x-amz-id-2': '2vYCTLC3MRx4TwTpohi2+eiqTZhkdAnDJhY59oT7HcdvEymEcfjiT3G7zOcm3Xo0yADqPXbZkg8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,689 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,689 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,689 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,689 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,690 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,691 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,691 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:11,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,692 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,692 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,692 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,692 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,692 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:11,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,692 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,693 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,693 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,693 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,693 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,693 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,693 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:11,693 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:11,694 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,694 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,694 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
d3aca9d698629c4587015da57d930328372292adfa9cf000ec7baccfc802496c
2022-05-12 22:40:11,694 botocore.auth DEBUG    Signature:
d00cf43918645c88733bcbb433dc980338bb28e684a60d61ac7a952f23ec20fa
2022-05-12 22:40:11,694 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,694 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,694 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,775 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:11,775 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '0DnVhE93ZUCs3XD1iRsmfyQanhZdlwu56EYKHdDCcuBC25dh2WV1S1janJruKnxKe++EkzWAwe8=', 'x-amz-request-id': 'HZX58S2R3E97K82S', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,775 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,776 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,776 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,776 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,776 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX58S2R3E97K82S', 'HostId': '0DnVhE93ZUCs3XD1iRsmfyQanhZdlwu56EYKHdDCcuBC25dh2WV1S1janJruKnxKe++EkzWAwe8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '0DnVhE93ZUCs3XD1iRsmfyQanhZdlwu56EYKHdDCcuBC25dh2WV1S1janJruKnxKe++EkzWAwe8=', 'x-amz-request-id': 'HZX58S2R3E97K82S', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,776 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,778 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless'}
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,778 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,778 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,778 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,778 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:11,778 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:11,779 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,779 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,779 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
0239d595474adc4214db6b895031687dd4bae4385de9f8bd87b38510e37cf3d5
2022-05-12 22:40:11,779 botocore.auth DEBUG    Signature:
801d79e0c2e84773d73f609e6be9e8cfd656592216ec834588202e4443266558
2022-05-12 22:40:11,779 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,779 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,779 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,858 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,858 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX5724FB5TG7VJY', 'x-amz-id-2': 'od7b8vlDW/VwAcZ5mZIzQHdwvaiq+sXPHvGS7znNOK/sxJVqWl5/hbbRGBaOV0yOEcgdFXVTFQM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,858 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,859 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,859 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,859 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless/'}
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,860 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:11,860 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:11,860 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,860 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,860 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
54d27bb90ac7828e88efd365191b1b638e9565585211816116ee2978d0370652
2022-05-12 22:40:11,860 botocore.auth DEBUG    Signature:
1039159be99d9637f9669942868df00fab98c5d8df66e976d219751bef22a3cc
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,861 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,861 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,942 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,943 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX44PT2GPPHEDNW', 'x-amz-id-2': 'ueVMItJf1Lezg0xR/OhAgyXbUmFjdcLE6pjim8Tfq1LzSgTdYntKOpXVeD3je5MwH3PLUIXcmcw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,943 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,943 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,943 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,943 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,943 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,945 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,945 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2'}
2022-05-12 22:40:11,945 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,945 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,945 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,946 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,946 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,946 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:11,946 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,946 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,946 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,946 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,946 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,947 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,947 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,947 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,947 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:11,947 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2
2022-05-12 22:40:11,947 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,947 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,947 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
c3a6ebc7bbc704089ada0c1936f778b439cee6249c9e8430bea947f5593530eb
2022-05-12 22:40:11,947 botocore.auth DEBUG    Signature:
b3428dfa007d5946090c94423dc34195c9e8a5ec63b389e71c6ae827a0df8c4e
2022-05-12 22:40:11,947 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,947 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,947 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,027 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2 HTTP/1.1" 404 0
2022-05-12 22:40:12,027 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX0YQBZ3Y190WXH', 'x-amz-id-2': 'MCo5ebaoFIUTfYSdUiFpTz19xdIC+D9nNKyUAQtpkjGR/FXX3XN5GmcdHPCYFDVwFvsig4A7M98=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,028 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,028 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,028 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,028 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,028 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,029 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,030 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,031 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,031 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,031 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:12,031 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:12,031 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,031 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,031 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
35c3045e86d9717c194f7d19e6aee724c1d29aaa0e836a962d48ce3c41407a92
2022-05-12 22:40:12,032 botocore.auth DEBUG    Signature:
13caaf61b1f01a69c1dfb43f6772c6b8352b2f36e863c61a2e1fd86e746b696a
2022-05-12 22:40:12,032 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,032 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,032 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,111 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:12,111 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SO4w0Dv+FN07F17DP8ilLmOv74Cy22PF9ExDciptOqCVpG4GrGV7YsmTD9ydA5StCreNJdu6maM=', 'x-amz-request-id': 'ZJF6MRRB6WM69AJF', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,111 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,112 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,112 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,112 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,112 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF6MRRB6WM69AJF', 'HostId': 'SO4w0Dv+FN07F17DP8ilLmOv74Cy22PF9ExDciptOqCVpG4GrGV7YsmTD9ydA5StCreNJdu6maM=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'SO4w0Dv+FN07F17DP8ilLmOv74Cy22PF9ExDciptOqCVpG4GrGV7YsmTD9ydA5StCreNJdu6maM=', 'x-amz-request-id': 'ZJF6MRRB6WM69AJF', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,113 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,115 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,115 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2'}
2022-05-12 22:40:12,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,116 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,116 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,117 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2
2022-05-12 22:40:12,118 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2
2022-05-12 22:40:12,118 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,118 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,118 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
89d3301732af34f13d3df800e510c7930f2ad864cb454bd819d160f371549b74
2022-05-12 22:40:12,118 botocore.auth DEBUG    Signature:
2323f29eda44895793d600b51726c2a4fd3ca8bd87ed7c907567fff7a2f5ee71
2022-05-12 22:40:12,119 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,119 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,119 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,201 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2 HTTP/1.1" 404 0
2022-05-12 22:40:12,202 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJFC9A7XRNZBVXH0', 'x-amz-id-2': 'qU4S9IEjBoAgm84PqUbUqb+WxIY2c2Mzt92MX7LSFVYYJVKaFVG4pyGW9Rgy/SAeFJUqj0zYlCQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,202 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,202 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,202 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,202 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,203 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,204 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,205 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,206 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,206 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,206 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:12,207 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:12,207 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,207 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,207 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
35c3045e86d9717c194f7d19e6aee724c1d29aaa0e836a962d48ce3c41407a92
2022-05-12 22:40:12,207 botocore.auth DEBUG    Signature:
13caaf61b1f01a69c1dfb43f6772c6b8352b2f36e863c61a2e1fd86e746b696a
2022-05-12 22:40:12,207 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,208 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,208 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,288 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:12,289 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'TvrdbbS7D24No/vM/4xQYjFsWm9Xtrej9WREc73asYdEneEdGva8BacdTZTEthz6IRHp2F34R/A=', 'x-amz-request-id': 'ZJF80Z6EGXACZYW1', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,289 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,290 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,290 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,291 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,291 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF80Z6EGXACZYW1', 'HostId': 'TvrdbbS7D24No/vM/4xQYjFsWm9Xtrej9WREc73asYdEneEdGva8BacdTZTEthz6IRHp2F34R/A=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'TvrdbbS7D24No/vM/4xQYjFsWm9Xtrej9WREc73asYdEneEdGva8BacdTZTEthz6IRHp2F34R/A=', 'x-amz-request-id': 'ZJF80Z6EGXACZYW1', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,291 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,292 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,293 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless'}
2022-05-12 22:40:12,293 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,293 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,293 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,293 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,293 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,293 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,293 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,294 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,294 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,294 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:12,294 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:12,295 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,295 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,295 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
b748e5bf1e1e60f414e053071552ea406514b9e67f01596171cf9e7db5e4c596
2022-05-12 22:40:12,295 botocore.auth DEBUG    Signature:
73613bb4350521b212db5eb0ee824bfae575d36d59449601c1fe7b58c558abca
2022-05-12 22:40:12,295 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,295 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,296 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,376 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:12,376 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF1R4ZYEJA37SZG', 'x-amz-id-2': '8dlY4EZgtLXYeLCn2zlhYZ3Kzfun+U/k4A5ET0Hxv0Y7yvI/CAA/CpDzBXyGnoWgyY6TMjHZtjw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,376 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,376 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,377 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,377 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,377 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,378 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,378 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless/'}
2022-05-12 22:40:12,378 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,378 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,378 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,379 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,379 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,379 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,379 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,379 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:12,379 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,379 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,379 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,379 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,380 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,380 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,380 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,380 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,380 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:12,380 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:12,380 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,380 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,380 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
0b1bc03624897cdadb08356956d3cc2754d0c7676077b0c1d5016db9e006ca2d
2022-05-12 22:40:12,381 botocore.auth DEBUG    Signature:
ad7b5bff1c2c5e5bd1b0e0a4d9de017eb26808e56c4102c12c707bff93ce361d
2022-05-12 22:40:12,381 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,381 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,381 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,482 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:12,482 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF4A313EA66PWCV', 'x-amz-id-2': 'ffAkiTUgQqEJ+sc5IIFDPxSoL+06cLL6lgDLSyCJGvye6xor6uhYbZwml6ugq4/irZTJ0QXI9ps=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,483 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,483 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,483 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,483 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,483 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,486 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,487 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,487 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,487 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:12,487 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:12,487 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,487 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,487 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,488 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:12,488 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:12,488 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:12,488 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:12,488 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:12,488 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:12,488 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:12,489 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,489 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_2/vector_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224012Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:12,489 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
4c6e1cce25a9ab8a512250f6a5739418d11d1a490880d028f6bf08ba7bd54c02
2022-05-12 22:40:12,489 botocore.auth DEBUG    Signature:
29ed4dadb41592e61ba15bb9ecaaeae8cdb80d47e7fa63d884f7069be1912be5
2022-05-12 22:40:12,489 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:12,490 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,490 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,592 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_2/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:12,592 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'AzpCz12/IDdwgRt6C7RWUGgwgodlm4nUH00WQtTijVCPl2rC1GKyDp+ZTQl9M30ghXas8qO8BAw=', 'x-amz-request-id': 'ZJF7NMP8E8CMCNW9', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,593 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,593 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:12,593 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,593 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:12,593 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF7NMP8E8CMCNW9', 'HostId': 'AzpCz12/IDdwgRt6C7RWUGgwgodlm4nUH00WQtTijVCPl2rC1GKyDp+ZTQl9M30ghXas8qO8BAw=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'AzpCz12/IDdwgRt6C7RWUGgwgodlm4nUH00WQtTijVCPl2rC1GKyDp+ZTQl9M30ghXas8qO8BAw=', 'x-amz-request-id': 'ZJF7NMP8E8CMCNW9', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:12,593 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,594 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/'}
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,594 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,594 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,594 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,595 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/
2022-05-12 22:40:12,595 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/
2022-05-12 22:40:12,595 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,595 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,595 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
35c3045e86d9717c194f7d19e6aee724c1d29aaa0e836a962d48ce3c41407a92
2022-05-12 22:40:12,595 botocore.auth DEBUG    Signature:
13caaf61b1f01a69c1dfb43f6772c6b8352b2f36e863c61a2e1fd86e746b696a
2022-05-12 22:40:12,595 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,595 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,595 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,675 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/ HTTP/1.1" 200 0
2022-05-12 22:40:12,676 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '83Z9ODfSlMjXIsMjdkTO7CqBXAQb+jDitDzmdKF/OzpSXnNT1g1Rth4F00oqGvO/dNrs2C7mdrM=', 'x-amz-request-id': 'ZJFDZFJPG1WANP46', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:24 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,676 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,676 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,676 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,676 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,676 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJFDZFJPG1WANP46', 'HostId': '83Z9ODfSlMjXIsMjdkTO7CqBXAQb+jDitDzmdKF/OzpSXnNT1g1Rth4F00oqGvO/dNrs2C7mdrM=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '83Z9ODfSlMjXIsMjdkTO7CqBXAQb+jDitDzmdKF/OzpSXnNT1g1Rth4F00oqGvO/dNrs2C7mdrM=', 'x-amz-request-id': 'ZJFDZFJPG1WANP46', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:24 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 24, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,677 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,677 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,678 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless'}
2022-05-12 22:40:12,678 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,678 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,678 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,678 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,678 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,678 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,678 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,678 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:12,678 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,679 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,679 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,679 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,679 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,679 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,679 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,679 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,679 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:12,679 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:12,679 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,680 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,680 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
b748e5bf1e1e60f414e053071552ea406514b9e67f01596171cf9e7db5e4c596
2022-05-12 22:40:12,680 botocore.auth DEBUG    Signature:
73613bb4350521b212db5eb0ee824bfae575d36d59449601c1fe7b58c558abca
2022-05-12 22:40:12,680 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,680 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,680 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,760 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:12,760 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJFFP3WV83ZH9VZG', 'x-amz-id-2': 'QWUiTuWQWwEKNwYNWCPG6MaIzbHaHOEJF4vg1HVmJzvdhps7R+b8obbuo13Qde5F/JdZ2DomEpU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,760 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,760 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,760 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,760 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,760 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,761 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,761 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless/'}
2022-05-12 22:40:12,761 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,761 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,761 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,762 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,762 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,762 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:12,762 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:12,762 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,762 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,762 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
0b1bc03624897cdadb08356956d3cc2754d0c7676077b0c1d5016db9e006ca2d
2022-05-12 22:40:12,762 botocore.auth DEBUG    Signature:
ad7b5bff1c2c5e5bd1b0e0a4d9de017eb26808e56c4102c12c707bff93ce361d
2022-05-12 22:40:12,762 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,762 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,762 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,844 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:12,845 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NVYL5Za/nNcTdGrDR1GS12IoOr97aCBjsxNSWSricl8oX6qocTfHpm6ZGLnHakez8mmRnNntx/8=', 'x-amz-request-id': 'ZJFASE98FPFBR830', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,845 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,846 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,846 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,846 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,846 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJFASE98FPFBR830', 'HostId': 'NVYL5Za/nNcTdGrDR1GS12IoOr97aCBjsxNSWSricl8oX6qocTfHpm6ZGLnHakez8mmRnNntx/8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'NVYL5Za/nNcTdGrDR1GS12IoOr97aCBjsxNSWSricl8oX6qocTfHpm6ZGLnHakez8mmRnNntx/8=', 'x-amz-request-id': 'ZJFASE98FPFBR830', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,848 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,851 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,852 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,852 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,852 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,853 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,854 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,854 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,856 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,856 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,858 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,858 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,858 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,859 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,859 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,859 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,859 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,860 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,861 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,862 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,863 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,864 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,865 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,865 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,864 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,865 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,866 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,869 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless'}
2022-05-12 22:40:12,868 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,867 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,869 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless'}
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,870 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,873 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless'}
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,875 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:12,875 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:12,876 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,876 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,876 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
a02109b6c0223a6a500635ae0d0711524a30b418ff3e2bac033f037b1962a10d
2022-05-12 22:40:12,876 botocore.auth DEBUG    Signature:
208bf06e60aa700076e646cceb525334fb112b770d8a57433660b43ab76597f0
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,876 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,876 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,873 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless'}
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,878 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,878 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:12,878 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:12,878 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,878 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,878 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
de4e5cf2f008a9ab165da8b45ad09371d69e5af020e23fd16ed2c238252abdab
2022-05-12 22:40:12,878 botocore.auth DEBUG    Signature:
525267abbca4bb64478facd467499867422aec9f55e9bb151d7c9285059e6776
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,878 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,878 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,878 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,879 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,880 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,880 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:12,880 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:12,880 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,880 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,880 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
7d7c67d15bcbaef5b8f06949f28b62450ea49c4a2254458be19e2da1bc7cda40
2022-05-12 22:40:12,880 botocore.auth DEBUG    Signature:
d9f5943c51590a33931517c98c2937dc51aed3ea7a2981a4fdb4f24949369288
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,880 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,880 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,880 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,881 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,881 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,881 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,881 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,882 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,882 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,882 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:12,882 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:12,883 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,883 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,883 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
a02109b6c0223a6a500635ae0d0711524a30b418ff3e2bac033f037b1962a10d
2022-05-12 22:40:12,883 botocore.auth DEBUG    Signature:
208bf06e60aa700076e646cceb525334fb112b770d8a57433660b43ab76597f0
2022-05-12 22:40:12,883 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,883 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,883 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,883 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:23,676 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,676 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCNDCDGGRRSRJD4', 'x-amz-id-2': '3+uVnsoNIN+itE+hmRNWD61re63ROMBNXcpMg1Uoj4PWZaauFZxaALa1HOie0/Lqs8BDdctvk1I=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,676 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,680 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,680 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,680 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,680 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,680 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,680 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,681 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,682 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,682 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,682 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,683 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,683 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,683 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,683 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,683 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,683 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,683 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,689 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,689 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCTW8ZZCGKG24SX', 'x-amz-id-2': '1qzYOIYedaxwL/E0r6nXF5bmmM9aAaYVIQtnr+uhLGyUVBgd5tPbuUL6IAVNlnhwlJexVLgGe4I=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:22 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,689 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,690 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,690 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,691 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,691 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,691 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,692 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,692 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,692 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,692 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,692 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,692 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,692 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,692 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,719 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,719 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,720 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCRF4E1HEG0Y92Z', 'x-amz-id-2': 'sO4gn1GEwpM26TD74aGi3Zl7Tov5o8KskSE6lMnlpXoqwEpBuebYnziQosJZKvhNm06/OFqHFyY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:22 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,720 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCVB8J6Z1EE074E', 'x-amz-id-2': '+Gom+OaDo5Z5DGp02iLCeWdGBuXe0XtF5z9CztaIy5E3OCRrbfG95AGkHfhnfe3L4C3YbkbWiJQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,720 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,720 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,721 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,722 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,722 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,724 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,724 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,724 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,725 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,725 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,725 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,725 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,725 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,725 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,725 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,725 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,725 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,725 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,725 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,725 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,725 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,725 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,725 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,725 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,725 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,725 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,726 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,726 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,726 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,726 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,726 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:24,686 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,687 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAGEKPKKX1DR47NM', 'x-amz-id-2': 'rE86np1SMX0rKpmdtlUOOvGHFWgJk4orkfz6n3w5W8gLp7DRChz1L2/eeX9N5ffXIUFQDTdPipg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,687 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,688 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,688 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,688 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,688 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,688 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,688 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,689 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,689 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,689 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,689 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,689 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,689 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,689 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,690 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,690 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,690 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,690 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,690 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,690 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,691 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,691 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,692 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,692 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAGBNZS008D67JHM', 'x-amz-id-2': 'TpI+NupahsoXZnncMY0FxbK5j3PZIsjpStPI1D++yzPdNYulybYdlfwEx6dH5K0Ta6ns8MmST34=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,693 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,693 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,693 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,693 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,694 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,694 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,694 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,694 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,695 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,695 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,695 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,695 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,695 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,695 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,696 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,696 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,696 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,696 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,696 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,696 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,697 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,697 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,699 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,700 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAGBA0KDNXHCMV8H', 'x-amz-id-2': '/6T7lhk3Bb2ElHoe++4UN8YabJJhQjyuZ/Wp6/CYrRuuoKwIgMqvmZf3FK9lPMBMZ4SZmRxTwao=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,700 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,700 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,700 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,700 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,700 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,700 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,700 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,700 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,700 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,700 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,700 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,700 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,701 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,701 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,701 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,701 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,701 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,701 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,701 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,701 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,701 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,701 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,706 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,706 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAG3G4Q0RM8SX64F', 'x-amz-id-2': 'fkaGIqeQLbwaFwus0olEjrxrxYIZL8vU8bDE6o8uIPq2ifOphDZH6Zci5qD/BipsyTXQI+IxA8o=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,706 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,706 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,706 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,706 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,706 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,706 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,706 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,707 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,707 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,707 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,707 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,707 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,707 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,707 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,707 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,707 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,707 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,707 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,707 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,707 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,707 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,708 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:30,014 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,014 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'dsLoqUIMBCIDFtHapsi0Rf16TEEL57VRBxhY8i91XuWJsUZOuAp5XF0gDjiPh2sws728Je2dkY8=', 'x-amz-request-id': 'BAYE6ZKZ6X32TVV8', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,014 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,015 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,015 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,015 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,015 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,015 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,015 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:30,015 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,016 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,016 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,016 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,016 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,016 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,016 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:30,016 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless
2022-05-12 22:40:30,016 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,017 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,017 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
9b5d933cb7ffbebbfc36da678626782f50d7d4d8aa36e4cd8c427a92b99e652f
2022-05-12 22:40:30,017 botocore.auth DEBUG    Signature:
6e5e23d66254ad9eea17da2da73c76247ffc69d6895ada6896e6d49fb5797443
2022-05-12 22:40:30,017 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,017 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,018 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,019 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,020 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'iHtvnn41DGT2fSFjy0ONIQP1fKwsyGu6aF0RRiXgM0/muxwyD9O+qXOf3wQtif84tA22GSvX74k=', 'x-amz-request-id': 'BAY90CM4RYZMDTYY', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,020 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,020 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,020 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,020 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,020 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,021 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,021 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:30,021 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,021 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,021 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,021 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,021 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,022 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,022 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:30,022 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:30,022 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,022 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,022 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
757b8ec364f1fc50526d818a82af70a954ea214c7901c789e4970b85d3ca8256
2022-05-12 22:40:30,022 botocore.auth DEBUG    Signature:
4df193b75fe2720251e5a7d86b53f29368864def29fc46c5f7aa3a6d0c4e3e0e
2022-05-12 22:40:30,023 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,023 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,023 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,036 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,036 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'r55szfDDDa9Z4TJvXs3RUTQqxc16FXOezeg6mHfJpeU7y4JU49vQiB0Fgg/S8rXxE+sSw4wvPaw=', 'x-amz-request-id': 'BAY2HX2M129GWTQK', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,036 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,036 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,036 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,036 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,036 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:30,036 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,037 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,037 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'WiLIebqsvgk5z5rwKgRmmwOYDBuBmqFrQE8S21JNB0Pkiqa3WotHACzEAc2IMSbMXYqUqVLSR/M=', 'x-amz-request-id': 'BAY4RJYV0KK0G2F6', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,037 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:30,037 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless
2022-05-12 22:40:30,037 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,037 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,037 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,037 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,037 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
9ce1ba987011cbf78e1b357079184171b0eb29aaf85afb20e61c16b2668c8b31
2022-05-12 22:40:30,038 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,038 botocore.auth DEBUG    Signature:
f9a867c1fc2af76db4598e523e1c2edc0212095b2e13832db246dd7a0ae87e38
2022-05-12 22:40:30,038 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,038 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,038 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,038 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,038 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:30,038 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,038 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,039 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:30,039 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless
2022-05-12 22:40:30,039 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,039 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,039 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
757b8ec364f1fc50526d818a82af70a954ea214c7901c789e4970b85d3ca8256
2022-05-12 22:40:30,039 botocore.auth DEBUG    Signature:
4df193b75fe2720251e5a7d86b53f29368864def29fc46c5f7aa3a6d0c4e3e0e
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,039 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,039 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,098 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,099 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTX1E0RF8N38QD8', 'x-amz-id-2': 'V0hNaCqnfmqCFX252npOtY76ctzwIDUH7YpO01h4jtC0pLbWfyX0rxXr/0Hsy6hh/EYbL5jlngY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,099 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,099 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,099 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,099 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,099 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,099 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,100 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,100 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless/'}
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,101 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,101 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,101 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,101 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:30,101 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless/
2022-05-12 22:40:30,102 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,102 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,102 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,102 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
be0ffd5ffdd9e73e464b4660276f0829aee4d23a283f632b03cb64dbd9ae467d
2022-05-12 22:40:30,102 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTZ5YTZB9V055N8', 'x-amz-id-2': '3Q+CGyhbmaUDDm1kL407K3qvYCxopX0xjEwCmLX8xo/dS/75GLyy0mGKw11w4EFfG52d7KGaL1Y=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,102 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,102 botocore.auth DEBUG    Signature:
e5d5163e136e5adf7ff000393d949089ee0b369cf4b25f0c74a5bfe5a979f39b
2022-05-12 22:40:30,103 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,103 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,103 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,103 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,103 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,103 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,103 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,104 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,104 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,105 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless/'}
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,105 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,105 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,105 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:30,106 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:30,106 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,106 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,106 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
388eed6a848d7216ecc76c29600d0b5f3a0970176a998539f0ff22bc3a6a8713
2022-05-12 22:40:30,106 botocore.auth DEBUG    Signature:
b5be08c164e4b66bf26db49205bc9872a61636bd2bdf7db1f544d64f0c2ebed9
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,106 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,106 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,119 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,120 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTRDWSZ1RMH2S9V', 'x-amz-id-2': 'd294zRrl5uf43jcLGfhB6px7Li4g638HHzTcqvTu0oSjS8p37eaiekikIMZR5VC6ubRjTXB9y+M=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,120 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,120 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,121 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless/'}
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,122 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,122 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,122 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,122 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,122 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,122 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:30,122 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless/
2022-05-12 22:40:30,122 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,122 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,122 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
a2d87244f577ce030d0f3de8d1c2c89330dd542bbe2f1c20cbdbe3de6dba50fe
2022-05-12 22:40:30,122 botocore.auth DEBUG    Signature:
df4691c8aacc9b8c9b499c18d77382aadcdf6da305c12d3808e87f2ba5cfcc29
2022-05-12 22:40:30,123 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,123 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,123 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,123 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,123 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTME58B8EYTWV3W', 'x-amz-id-2': 'hVF4D40b3BEsnLoh1Wx6rEO8v80Z5HomXPuq4Ic32Td5p2QNKCQPKyi/t87jaMXHEYL/S2gcXqo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,123 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,123 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,124 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,124 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,124 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,124 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless/'}
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,125 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,125 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,126 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:30,126 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/
2022-05-12 22:40:30,126 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,126 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,126 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
388eed6a848d7216ecc76c29600d0b5f3a0970176a998539f0ff22bc3a6a8713
2022-05-12 22:40:30,126 botocore.auth DEBUG    Signature:
b5be08c164e4b66bf26db49205bc9872a61636bd2bdf7db1f544d64f0c2ebed9
2022-05-12 22:40:30,126 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,126 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,126 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,185 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,186 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ZJKyHK42aYP2+bXuRU4W3/8SLcX4WasAGE0wduVr3aJ0WnKK9U6nYQ34Mcq6UeHRjqMLKCOBB2s=', 'x-amz-request-id': 'EXTPQ1PNNXH44982', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,186 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,187 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,187 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,187 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,187 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTPQ1PNNXH44982', 'HostId': 'ZJKyHK42aYP2+bXuRU4W3/8SLcX4WasAGE0wduVr3aJ0WnKK9U6nYQ34Mcq6UeHRjqMLKCOBB2s=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'ZJKyHK42aYP2+bXuRU4W3/8SLcX4WasAGE0wduVr3aJ0WnKK9U6nYQ34Mcq6UeHRjqMLKCOBB2s=', 'x-amz-request-id': 'EXTPQ1PNNXH44982', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,187 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,188 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,190 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,191 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'KKVSECQewKsa1mhrJ7k3+Oh7I3DFdbBosPi2clZc6Gs6Y+ISd7hR4mpAvQ+FaVzHJXihqtJ9Vbs=', 'x-amz-request-id': 'EXTREHG862DPDK9P', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,191 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl'}
2022-05-12 22:40:30,191 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,192 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,193 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,193 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,193 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTREHG862DPDK9P', 'HostId': 'KKVSECQewKsa1mhrJ7k3+Oh7I3DFdbBosPi2clZc6Gs6Y+ISd7hR4mpAvQ+FaVzHJXihqtJ9Vbs=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'KKVSECQewKsa1mhrJ7k3+Oh7I3DFdbBosPi2clZc6Gs6Y+ISd7hR4mpAvQ+FaVzHJXihqtJ9Vbs=', 'x-amz-request-id': 'EXTREHG862DPDK9P', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,194 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,194 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,197 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,198 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy'}
2022-05-12 22:40:30,198 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,199 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,200 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,200 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,201 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,201 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
5045d77f37cf4b204a3627cd86ad6bf055a88d49c651517b223f329a8b034942
2022-05-12 22:40:30,201 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,201 botocore.auth DEBUG    Signature:
3adf4cbb330ec8a728ba67df84cc7183da47b52cac3d6dd79fcd0443f0af283f
2022-05-12 22:40:30,201 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,201 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,201 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,201 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,201 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,201 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,201 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,201 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,202 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,202 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
c79c4637cb5c99e1c6b72523523e28db5937a6a0d18643d165a5e6ff84852a2a
2022-05-12 22:40:30,202 botocore.auth DEBUG    Signature:
a1b0b936225d525b2e51a7adf8d364394effff4dfcd004a6d2333b77113bb953
2022-05-12 22:40:30,202 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,202 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,202 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,205 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,205 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'GivGH/geHnXA0EAULelPAXYhQL0B+0utLbubUvjyFFuKjPB/88Qk6Uy74E5gLcYM7z3zOUuaDyo=', 'x-amz-request-id': 'EXTQBYCAQTZ0JGHJ', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,205 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,206 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,206 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,206 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,206 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTQBYCAQTZ0JGHJ', 'HostId': 'GivGH/geHnXA0EAULelPAXYhQL0B+0utLbubUvjyFFuKjPB/88Qk6Uy74E5gLcYM7z3zOUuaDyo=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'GivGH/geHnXA0EAULelPAXYhQL0B+0utLbubUvjyFFuKjPB/88Qk6Uy74E5gLcYM7z3zOUuaDyo=', 'x-amz-request-id': 'EXTQBYCAQTZ0JGHJ', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,206 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,206 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,206 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless/DISTANCE.npy'}
2022-05-12 22:40:30,206 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,206 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,206 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,206 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,206 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,207 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,207 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,207 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,207 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,207 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,207 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,207 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,207 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,207 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,207 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,207 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,207 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,207 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,207 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,207 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,207 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
dc5a4cc7a2f68ada28251e7b744cac7cf694381bb737123fdb0f3c1b72cf5d61
2022-05-12 22:40:30,207 botocore.auth DEBUG    Signature:
0097bc266c243ffae3a389e17dca38bdca75ec8a20880a0321d50347c0252bc3
2022-05-12 22:40:30,207 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,207 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,207 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,208 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,208 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SN6Re5XXdPWQLssF9Cqv7ukRucW4/pGLzokLxsPDc5Si1Ep6At2h6v0imE2Vh8N7mL52ZPCNU4U=', 'x-amz-request-id': 'EXTY0BZMPNEEG5WN', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,208 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,209 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,209 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,209 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,209 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTY0BZMPNEEG5WN', 'HostId': 'SN6Re5XXdPWQLssF9Cqv7ukRucW4/pGLzokLxsPDc5Si1Ep6At2h6v0imE2Vh8N7mL52ZPCNU4U=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'SN6Re5XXdPWQLssF9Cqv7ukRucW4/pGLzokLxsPDc5Si1Ep6At2h6v0imE2Vh8N7mL52ZPCNU4U=', 'x-amz-request-id': 'EXTY0BZMPNEEG5WN', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,209 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,210 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless/EXTENT.npy'}
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,210 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,210 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,210 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,210 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,210 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,210 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,211 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
0db359bafca2672ae2565e330453fa61a6227fc73f5f1c570bb31fc0449a2ad7
2022-05-12 22:40:30,211 botocore.auth DEBUG    Signature:
3ad9ae2dd4f6bfc3baa184d90d1840831a3199591db85b5e41fe92803f4a5ac9
2022-05-12 22:40:30,211 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,211 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,211 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,289 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,290 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTWTK12F9G2VPMQ', 'x-amz-id-2': 'y3qOsb75kLrpAb2H5CBCSstn08nHh10a2MeHoYtNGTPxCjWtAJ+aE/vGQxlaZ+dtqYWluLL3lSc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,290 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 404 0
2022-05-12 22:40:30,290 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,291 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTVRHSPCC2C0JS9', 'x-amz-id-2': 'CA65oYVBDbKrmRXd9q1b5bn/Y+ecT4EObtnzYWr6BCQ2Tw6/xuGBh1vDfL8fC7EeD6P+DlCkTVw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,291 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,291 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,292 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,292 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,292 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,292 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,293 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,293 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,295 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,295 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,296 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy/'}
2022-05-12 22:40:30,297 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,298 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless/EXTENT.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,298 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,298 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless/DISTANCE.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,300 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTQRQQW0CD81F54', 'x-amz-id-2': 'fW7bKteDidSp1nRuSa96G8wK51Tp3p04y2Ej5nBal8eZwhEnX0Pc+0P+y8If+iRig8Mi0VjpeZQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,300 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTRB1XZFMM19N01', 'x-amz-id-2': 'lFVy0JkNwk4NPBv9DoBL023vx8uwn6Ry9qw+WiExKDCu9dyJc+/Ey2MaVNgCV45sZGOeExoh59k=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,301 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,300 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,299 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl/'}
2022-05-12 22:40:30,301 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,300 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,301 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,301 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,301 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,302 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,303 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,304 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,304 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/data_timeless/DISTANCE.npy/'}
2022-05-12 22:40:30,302 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,307 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_2/mask_timeless/EXTENT.npy/'}
2022-05-12 22:40:30,307 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,308 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,308 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,311 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,311 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,311 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,312 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,312 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,312 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,312 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,312 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
a39e121c4f0e8995d458bedb043821955cd2624d9ac6863255afb6a904494224
2022-05-12 22:40:30,313 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,313 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,313 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,313 botocore.auth DEBUG    Signature:
c92a8135a8b39d00bcca5b87b68900b65fd6eb99ea3f7a7a5d2b6a31c8347814
2022-05-12 22:40:30,313 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,313 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,313 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,313 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,313 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
4864ff2435e130934db962e3a02c3aee75c7aacfc7ee9370709c4ddf35b4dc6b
2022-05-12 22:40:30,313 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,313 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,314 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,314 botocore.auth DEBUG    Signature:
4438f7579bf87eb55537a15f8a070d510bfbd7f00dd8cb6b224f6d051d961037
2022-05-12 22:40:30,314 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,314 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
16de0b0f57e708e4d57fdc621753b5834e5c432776a8008b735831da0f2e9976
2022-05-12 22:40:30,314 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,314 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,314 botocore.auth DEBUG    Signature:
4c6088bf07c13bbf6bdd7ec7e2fd5d26947e0ddca1b22d1206a76b7dcf0e8dc5
2022-05-12 22:40:30,314 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,315 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,315 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,315 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,315 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,315 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
d459007e861e74f729126e38a8d51ecb9f8f157589c3edae44cd18540150b40b
2022-05-12 22:40:30,316 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,316 botocore.auth DEBUG    Signature:
9812c8ba229389d3f28cceade5590a94e587147b3deefd81a6929dd1a4f20ea0
2022-05-12 22:40:30,316 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,317 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,317 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,398 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,398 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTP1GBN116MX6V4', 'x-amz-id-2': 'sLUV5SK/uLPkjFFn/GXIKZFLGZr9FQ/tiVYfXoFlgQZzdN3BtZs0Sa3AStu0I8ElPWGMqMPSt+Q=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,398 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,398 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,398 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,398 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,400 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl/ HTTP/1.1" 404 0
2022-05-12 22:40:30,400 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTK2Z8SSCS3VR9P', 'x-amz-id-2': 'LcmswzjDnF3BezORy7vRAiG/ldYeCM4BQNAFAY/+Gj0TaZ7+q2VsIpQXjJHJQz7YRjPPn91nibo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,401 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,401 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,401 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/data_timeless/DISTANCE.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,405 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTTWC4XE4B5M91M', 'x-amz-id-2': '2X7vd5HXTZ0MEgcliR2Yo1YIq7PmniPQS1a7sfpNGv/yf5WgG1p7f5KKcXufxh37vLNTxL9rz3U=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,406 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,406 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,406 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,406 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,406 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_2/mask_timeless/EXTENT.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,406 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,406 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,407 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,407 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTJAA3EBFR9C34Q', 'x-amz-id-2': 'EgmxXMAo3C1Ed8skYVIK48DJbMGONJ3rLNMY2KNaYoVGr8NYQkhilh+1s2Z/xwei+asLMLO8OXo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,407 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,408 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,409 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,409 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,409 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,410 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,412 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,412 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,414 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,414 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,412 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,415 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,416 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,416 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,417 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,417 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,418 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,418 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,420 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,420 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,421 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,421 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,421 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,421 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,422 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,424 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,422 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,423 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,422 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,424 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,424 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,425 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,425 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,426 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,426 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,428 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,428 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,428 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,429 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,430 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,430 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,430 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,431 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,431 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,431 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,433 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,433 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'B0sS5nt7r9iMdSqG874dtg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,433 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,433 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,436 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,438 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,437 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,438 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,438 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,439 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,439 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,439 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,439 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,439 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,439 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,439 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
768726c636a7314930903ced5f3c9628d88242a5cec1eace3c2a720965fb8429
2022-05-12 22:40:30,439 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,440 botocore.auth DEBUG    Signature:
b5f6db5d08bdbdf527dd2bec91c25702c0fecdb9fbdaac886e048748b0c20b97
2022-05-12 22:40:30,440 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,440 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,440 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,440 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,440 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,440 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,440 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,440 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,441 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,441 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
b28b4cc5f50aecfe0d3f62d80218b0632e577596834b15f5a3c66fa91ee5319b
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,441 botocore.auth DEBUG    Signature:
15f8f964c6479302565c0a5d7dda1e7dfd8256cd9c12e7778486f95d3e51114a
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,441 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,442 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,442 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,442 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,442 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,442 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,442 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,442 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,442 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,442 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,442 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,442 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,442 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,443 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,443 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
67fccf67cf9130e73a3b029a4668437a630f2841bff9a0beb1915d3b9dd646bf
2022-05-12 22:40:30,443 botocore.auth DEBUG    Signature:
7705d8bb360596106499e50d1e8ebb610e64716a65f35d5a8069d9a2dc443c95
2022-05-12 22:40:30,443 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,443 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,443 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,443 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,443 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,446 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,446 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'S/Wz7xyo6r7KThbY4TUDPg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,446 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,446 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,446 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,446 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,446 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,446 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
7049712f99f5ca1d4162ea23bbdf81de6e32aaec365f5c5cad3b2e66fa68d412
2022-05-12 22:40:30,446 botocore.auth DEBUG    Signature:
fb0dd38fb722b00a28588e3184c16a97843b2be2ff9270c5649fafdf9f4b1e14
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,446 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,447 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,447 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,447 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:31,562 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,566 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,572 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,581 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,637 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,638 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 400 None
2022-05-12 22:40:31,639 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK7WNVT6EP0JH5F', 'x-amz-id-2': 'KtOFOV4hHfjDNhdTgxAbUHzd5MjzxlPsjoqEuxm8O67Bz4T2SF9DEQsWfUsVgIxDdfPrmVb6x7g=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,639 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK7WNVT6EP0JH5FKtOFOV4hHfjDNhdTgxAbUHzd5MjzxlPsjoqEuxm8O67Bz4T2SF9DEQsWfUsVgIxDdfPrmVb6x7g='
2022-05-12 22:40:31,645 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,646 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,646 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,646 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,646 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,646 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,647 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,647 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,648 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,648 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,648 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,649 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,649 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,649 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,650 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,650 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_2_2/mask_timeless/EXTENT.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,650 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK5SZ94KC6XMMJQ', 'x-amz-id-2': '5dNLP9OR5JZB5ZfwxScqrp4fVYrbvqBB9YNdDzKMp+dmiZRV2qQX/fvxDc5RWnjRxrmKkKSxtL0=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,650 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,650 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK5SZ94KC6XMMJQ5dNLP9OR5JZB5ZfwxScqrp4fVYrbvqBB9YNdDzKMp+dmiZRV2qQX/fvxDc5RWnjRxrmKkKSxtL0='
2022-05-12 22:40:31,651 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK7GCYG4Z3SWH8M', 'x-amz-id-2': 'KGilIBRzsxoLCrudBayKtnUFumKbXgE8IUVMhRtxFNSCYvg0EH9sXKeE8pMQEdlO1qsuT+1aw2Q=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,651 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,652 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,652 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK7GCYG4Z3SWH8MKGilIBRzsxoLCrudBayKtnUFumKbXgE8IUVMhRtxFNSCYvg0EH9sXKeE8pMQEdlO1qsuT+1aw2Q='
2022-05-12 22:40:31,652 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,652 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,654 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,654 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,654 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,654 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,654 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,654 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,654 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,654 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
f57ea82d51f18b7b8d1d32a3d4963c03662955cce6bb2d2fd5eb5f039895a6e2
2022-05-12 22:40:31,654 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,654 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,654 botocore.auth DEBUG    Signature:
3b81ebcab40456d3320db094b05137144e1c2c5557a8cebb771432e764e99e9c
2022-05-12 22:40:31,654 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,655 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,655 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,655 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,655 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,655 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,655 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,655 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,655 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,655 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,655 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,656 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,656 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,656 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,656 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,656 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,657 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,657 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,657 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,657 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,657 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_2/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,657 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
725ca3125c3154284523d121adf68660592243e6eddee8a48920b9ce5db1f8ac
2022-05-12 22:40:31,657 botocore.auth DEBUG    Signature:
0386ad1bb0c7a270d7cac4c03a68bcbbf45072840b99133e450b1d7ed3aa6fa9
2022-05-12 22:40:31,657 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,657 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,657 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,657 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
c522470d6a5d168d1e471b4a292d31c29d8b6e73c3eae07c9fd7f12210698729
2022-05-12 22:40:31,657 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,657 botocore.auth DEBUG    Signature:
b6ba6d48b0f5b8f6bd4c5d924219a81d5adfa653b1604305bf1b1ff7812d8acf
2022-05-12 22:40:31,658 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,658 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,658 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,658 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,658 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,658 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,661 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,662 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_2_2/data_timeless/DISTANCE.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,662 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AKD55ZDDEEFQMKE', 'x-amz-id-2': 'wrYqzTp8J0DqWBZKILu8NQtv7M0dHDwWaplisDDHWhM7Oq1NhHf6dEHo7OTtTCAClYtRqt+V450=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,662 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AKD55ZDDEEFQMKEwrYqzTp8J0DqWBZKILu8NQtv7M0dHDwWaplisDDHWhM7Oq1NhHf6dEHo7OTtTCAClYtRqt+V450='
2022-05-12 22:40:31,663 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,663 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,663 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,663 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,664 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,664 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,664 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,664 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,664 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,664 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,664 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_2/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,664 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
720b9d6417d2f01595bcbc2b1fb9a290808f4d2a6384831642717430bf40c06e
2022-05-12 22:40:31,664 botocore.auth DEBUG    Signature:
7bc8d5616b5ff4ea074fa2965bec738b44a527082580f2109cbb1ddc5c11c4c2
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,664 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,665 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,665 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:34,547 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,553 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,563 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,568 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,637 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,642 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,655 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,658 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,729 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_2/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 200 0
2022-05-12 22:40:34,730 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '3G6zRQMQCm97pftVfNKNToRtHSdH0Yu5mao/TIvZ4J++qCoIVrgGOvQg7ROs4E/MpSyIVeKTuTk=', 'x-amz-request-id': '789AM548N0BBDHYS', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"074b12e67b7bafd88c752a86f3be1db6"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:34,730 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:34,731 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:34,731 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:34,731 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:34,731 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:34,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:08,107 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_2/mask_timeless/EXTENT.npy HTTP/1.1" 200 0
2022-05-12 22:41:08,108 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'rMyLRn/4nk0M9vQAxyclIQLI/xJ/Ve827/4Fiy8IvTn5EayjVZ/gsoJSt9jGGF9ZQjHBJx+nWlw=', 'x-amz-request-id': '789DXEE5ZXCT8ASP', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:08,108 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:08,108 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:08,109 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:08,109 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:08,109 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:08,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:13,436 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_2/mask_timeless/BOUNDARY.npy HTTP/1.1" 200 0
2022-05-12 22:41:13,437 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7L7rqxX1FncxIqkpoHPC9nJP9YbOEkPn/y9uwQ/5efN/FL8C+qN7ogC5FMyZexHHpKVH4ChVn4U=', 'x-amz-request-id': '7897D2R0H8DRFJAZ', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:13,437 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:13,437 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:13,437 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:13,438 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:13,438 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:13,439 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:46,311 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_2/data_timeless/DISTANCE.npy HTTP/1.1" 200 0
2022-05-12 22:41:46,312 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '4256uo0uSyIVvlHisa35FxPcJrluDNOKtmm0HJn+1YfkM1QauEQ3R7CIK1h4dBXNVJIgGchaQmQ=', 'x-amz-request-id': '789AQ8FQMY4DQW29', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"4bf5b3ef1ca8eabeca4e16d8e135033e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:46,312 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:46,312 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:46,312 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:46,312 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:46,312 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:46,314 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:46,332 eolearn.core.eoworkflow DEBUG    Removing intermediate result for SaveTask
2022-05-12 22:41:46,334 eolearn.core.eoworkflow DEBUG    Workflow finished with WorkflowResults(
  Dependency(SaveTask):
    EOPatch(
      data: {
        BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
        CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
      }
      mask: {
        CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
        IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
      }
      scalar: {}
      label: {}
      vector: {}
      data_timeless: {
        DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
      }
      mask_timeless: {
        BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
        EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
      }
      scalar_timeless: {}
      label_timeless: {}
      vector_timeless: {
        GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
      }
      meta_info: {}
      bbox: BBox(((219500.0, 1369500.0), (230500.0, 1380500.0)), crs=CRS('32630'))
      timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
    )
)
2022-05-12 22:41:46,335 root         DEBUG    EOWorkflow execution finished

Execution 3

Statistics
2022-05-12 22:21:52,329 eolearn.core.eoworkflow DEBUG    Computing LoadTask(*[], **{'eopatch_folder': '30PTU_2_1'})
2022-05-12 22:21:52,330 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:52,332 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,332 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:52,332 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,337 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:52,341 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:52,343 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,345 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_1/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:52,345 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:52,346 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,350 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,350 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:52,350 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_1%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222152Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:52,351 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222152Z
20220512/us-east-1/s3/aws4_request
6546e26dadf1e9a56b6b0ba23108fde907a5cc8832fb0ef24692bb2cba0bbef6
2022-05-12 22:21:52,351 botocore.auth DEBUG    Signature:
0177dc866da43c717fd37e4431f3732db0a0752391d2a2487f6303cab7489d2b
2022-05-12 22:21:52,351 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:52,351 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:52,352 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:52,352 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:53,695 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:21:53,695 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'W6EWVR6HNARYZED1', 'x-amz-id-2': 'vN9ttjqyuUhqXentlkXUdooNOjnBODMJA21fEEZKYYWjwK6goe3e1XCGLvNx+mqZqVgSW9GStx8=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:21:53 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:53,695 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1W6EWVR6HNARYZED1vN9ttjqyuUhqXentlkXUdooNOjnBODMJA21fEEZKYYWjwK6goe3e1XCGLvNx+mqZqVgSW9GStx8='
2022-05-12 22:21:53,697 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:53,698 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:53,698 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:53,698 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:53,698 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,698 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:53,701 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:53,701 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,701 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,701 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:53,701 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:53,701 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,701 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,705 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:53,705 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_1%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222153Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:53,705 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222153Z
20220512/eu-central-1/s3/aws4_request
4054a27f5ca377dc647aa4cf4ccb135d967a481e9432dabc55b92fd853872f0e
2022-05-12 22:21:53,705 botocore.auth DEBUG    Signature:
edb0e8cbc80ff1fba6212ec18e242d4daf26b18eaa051feb1184ca91e839f38b
2022-05-12 22:21:53,705 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:53,705 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:53,706 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:53,706 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:54,651 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,652 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'KP1w/uFoZky34nfkDcHEvxyXcvhvjCb1UqLUEF3g0C8+uCtGKc4/5jQEkujUdcbS1GCEG/qhDcc=', 'x-amz-request-id': 'XNTQCQQVYC5M26WF', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,652 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_1/1000/urlfalseeopatches/30PTU_2_1/2022-05-12T11:04:14.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/bbox.pkl2022-05-12T11:04:36.000Z"725434ac833dd792b4393cd3e737872a"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/timestamp.pkl2022-05-12T11:04:35.000Z"d20f57f9b0299badcdaec2f120421aa8"2089e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/data/eopatches/30PTU_2_1/mask/'
2022-05-12 22:21:54,653 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,654 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,654 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,654 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:54,654 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,655 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,656 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_1/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,656 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,656 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,656 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,656 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_1%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,656 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
4255a273c9053f0ac39f70d41441314b9d6b4997d5e668a392b23101bdff423d
2022-05-12 22:21:54,657 botocore.auth DEBUG    Signature:
985c6bebe730e08c8642855a287afc2cc033ddbafb243f60e335eb56c491dc6e
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,657 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,657 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,741 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,742 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7CQOmC9Be1MUy06SD++S07J1AM3fiCe+YkHMV72HeVD+6jmRAOIOuqcjsRFX5vEDgeVe3FSEe9U=', 'x-amz-request-id': 'XNTKF70MNJB0EG2G', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,742 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_1/data/1000/urlfalseeopatches/30PTU_2_1/data/2022-05-12T11:04:26.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/data/BANDS.npy2022-05-12T11:04:37.000Z"961719f7383ed9f8c8f51f5bbf470366-29"242000128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/data/CLP.npy2022-05-12T11:04:35.000Z"62fb197ea0e757227be69ba4beb5344b-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,743 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,743 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,743 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,743 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,744 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,744 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_1/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,745 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,745 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,745 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,745 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,745 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,745 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,745 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,745 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,745 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_1%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,745 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
1135352bb3673fbe0bc2b527ea16ec5a305b51b3d8c3176f49386adb6bae10a2
2022-05-12 22:21:54,745 botocore.auth DEBUG    Signature:
069f937b3463220148664a4b2e25e1eae111ff28753ad3c450475e435480d061
2022-05-12 22:21:54,745 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,745 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,746 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,831 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,833 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '4DCQxrPaf9NGGHHwGm1VEjtP7qvf1ffTo0Ad56h1NaM4S398198Jf3rUAIWAB4t27w8ul+f7+NY=', 'x-amz-request-id': 'XNTHTCYQBYF5Q7BX', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,833 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_1/mask/1000/urlfalseeopatches/30PTU_2_1/mask/2022-05-12T11:04:21.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/mask/CLM.npy2022-05-12T11:04:36.000Z"92a389103199133c18f0ff7abeaa496d-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/mask/IS_DATA.npy2022-05-12T11:04:35.000Z"d924a9a3237bf4d818c83d0d9b773608-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,833 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,834 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,834 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,834 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,835 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,837 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,837 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,837 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,837 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,838 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,842 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,842 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,847 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,844 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,844 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,845 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,843 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,848 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,849 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,851 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,857 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,854 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,849 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,852 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,860 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,852 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,860 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,865 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,860 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,856 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,862 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,864 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,867 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,865 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,874 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,874 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,873 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,874 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,866 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,875 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,874 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,877 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,877 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:54,877 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:54,877 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,877 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,877 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
cfa552218db80725942090c59198be5d407ce51cb34eb7dd4f3ea6e217f628dd
2022-05-12 22:21:54,877 botocore.auth DEBUG    Signature:
2e90bfd10e09e35827a33a1797e58e61e2b3b15f62b6ca17d2bebe2f1582fb6c
2022-05-12 22:21:54,859 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,878 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,878 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,874 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,880 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,881 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,880 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,867 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,881 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,880 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,882 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,882 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,882 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,882 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,865 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,883 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,884 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/bbox.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,885 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,885 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,885 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,885 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/timestamp.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,885 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,886 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,885 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,882 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,886 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,886 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,886 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,886 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,886 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,886 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,886 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,886 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,885 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,894 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/timestamp.pkl
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,894 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,894 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/timestamp.pkl
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,888 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/bbox.pkl
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:54,895 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,895 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/bbox.pkl
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,895 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:54,895 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/timestamp.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,896 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
5c0a764ca4d7bc6cff202c6c005849bdaa5a4600c31d2bf35e0decd4c34822d0
2022-05-12 22:21:54,895 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,896 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,896 botocore.auth DEBUG    Signature:
30a37ff317812bf4020406194ba5330e423f6a65f8f24849d82e6fda2269ebf6
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,896 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/bbox.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,896 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
5c0cfe823df2a98afcc974928cf37814ff955c41b30a5f78f5a93e6108ac2ff3
2022-05-12 22:21:54,896 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data/CLP.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,897 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
1953ff573a10e903c34d57c11e84dce5f72e72722cc1ea4d9a0b9a39bc656ab7
2022-05-12 22:21:54,897 botocore.auth DEBUG    Signature:
f2152b53512a471875528c5c0046af3cfd01afe3f31abfbe14d6c155138caeb4
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,898 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,896 botocore.auth DEBUG    Signature:
30992183afd6ab147b4a73e369b91142398a51d495042d39aa0754d6e9b46276
2022-05-12 22:21:54,897 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,899 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,899 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:54,899 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:54,899 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,899 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask/CLM.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,899 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
93f4d55781696c6771a81929dfb5d61258c259451a188a0f8ddf55ba7edf67e8
2022-05-12 22:21:54,899 botocore.auth DEBUG    Signature:
888550c151f621f2fda0b157667297ea677c519b45562c2353f4b2549018b89f
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,900 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,900 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,900 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,900 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,900 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,901 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,901 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,901 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,899 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,902 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,902 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,902 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,903 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,903 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:54,903 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:54,903 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,903 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask/IS_DATA.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,903 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
9caa1d36f9405e37b13ac4d7d8802a872e30c9565061b69ebe0d463e9469c4d3
2022-05-12 22:21:54,903 botocore.auth DEBUG    Signature:
9e93f4135483198f3c1487511493c0812159bb681ad62744f3061c3fe3122d75
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,904 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,904 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:55,594 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/bbox.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,594 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KA8PEJGZBS782B', 'x-amz-id-2': 'wJ0d9QeSAKi2mF35maF5fhbVwbr6XDcaNr4T/jgcnB6OoC9nNp1LZR1OteVMomSx767TB9fll0g=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,594 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,596 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,596 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,596 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,597 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,597 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,597 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,597 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,597 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,597 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,597 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,597 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,597 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,597 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,597 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,626 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/timestamp.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,626 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KCJB3M8GBTNNGW', 'x-amz-id-2': 'RQqLrh6W4kJg7ACodQYLcg/EYCKS4vvr6OOv4uR0VL+MhkxFogXRZ2KTOlIHBxGoOOblYRrIfvw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,626 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,629 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,629 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,629 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,629 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,629 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,629 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,629 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,629 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,630 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,630 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,630 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,630 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,631 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,631 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,631 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,631 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,631 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,632 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask/IS_DATA.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,633 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KCXSWT245E22W5', 'x-amz-id-2': 'n15DF/BljMwrwnh3Mz0ATCLVycy7XoZnYmR4NQkfrD3UGsjFbRH6WlvGrA9xq2vyV0dRL5OdYkw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,633 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,635 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,637 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,637 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,637 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,637 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,637 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,637 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,637 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,637 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,638 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,638 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,638 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask/CLM.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,638 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KA1Y8TZM9DVF9T', 'x-amz-id-2': 'gFeGHH/0OIO69TiQs6BlqdZ0bA3xC5TM2B7P7b2UA4yLDEl6Ow/xpo/akq277cZvalX+onqOAmI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,638 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,640 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,640 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,640 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,641 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,641 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,641 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data/CLP.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,641 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,641 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K55M172FASCMYB', 'x-amz-id-2': 'AQU7iExmZZiP0WwFIKsx4W9ghWgbvXR1xAbmILPfX0WBPXsiWJRJLZvOCpGYJr7a9GFscVJFxTw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,642 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,642 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,644 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,645 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,645 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,645 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,645 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,645 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,645 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,645 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,646 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,646 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,646 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,646 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,647 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,648 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,648 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,648 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,648 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,648 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,648 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,648 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,649 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,649 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,635 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,651 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K02816WSVQ2HNZ', 'x-amz-id-2': 'hpdyGDAxVSYDDiDSenfDaOvPHCdzlE/K+38zwVVThLhaklcrbxXHlJfLkaMQFmLJ+i3HseHXE9M=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,652 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,654 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,654 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,654 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,656 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,656 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,656 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,657 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,657 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,657 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,657 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,657 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,657 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,657 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:56,637 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,638 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JY8TXFDDH72GNT', 'x-amz-id-2': 'CwEZDNr9ljhEW3dEVwmAR9yrU/NK889QsuBRq9R/YnsllPzkrHWWeNXSuG5uO12BKtF6R+CWI3Y=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,638 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,639 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,639 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,639 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,639 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,639 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,639 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,640 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,640 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,640 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,640 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,640 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,640 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,640 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,640 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,640 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,643 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,644 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JWJ9ZWFJQ45XST', 'x-amz-id-2': 'N12QMP5ljeqyuYsXKmyQXNCEJaLsr6ZB3AC+MPAC6djDV7qNkYYIVZRH15N8IRETmpT0elPnh0c=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,644 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,644 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,644 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,644 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,644 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,644 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,644 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,645 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,645 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,645 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,645 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,645 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,645 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,645 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,645 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,645 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,645 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,645 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,645 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,645 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,645 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,652 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,653 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JRVWKEB6AW859C', 'x-amz-id-2': 'SGokzTsjZSeuo/V92D6QjNRMEx79g6p/y9roCcQj4zwiwwc58ZlklI9P6DJx4alooNE8xq1AQVc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,653 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,653 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,654 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,654 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,654 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,654 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,654 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,654 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,655 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,655 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,655 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,655 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,655 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,656 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,657 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,657 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JMNXQD32B81G1P', 'x-amz-id-2': '+Dx37AomsiC5P6UtcOTKRmVYzCu47ITGkxpx0ERNe4ifCWxExo+gC9Hs1gqU3g+lzlyhFQh8WLE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,657 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,657 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,657 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,657 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,658 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,658 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,658 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,658 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,658 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,659 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,659 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,659 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,659 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,659 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,659 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,659 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,659 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,659 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,661 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,661 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,661 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JTR4J5VN66GTA7', 'x-amz-id-2': 'KIWQc27mde+QWhyYHMla5JfZOncYra9flnG01kylvfE/vVVwaW4lXEWmVE3HztYSvr9yoUSR5p0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,662 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,662 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,662 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JQZ3Y8G9GTDHXD', 'x-amz-id-2': 'HjSqQnaJB5T1cCtVgtVCmy6hgVZCfuxd7LrI3iQPeb7u274hAyDhLXxehXcAOhXt3Gp4pZPrjzI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,662 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,663 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,663 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,663 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,663 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,662 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,663 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,663 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,663 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,663 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,663 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,663 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,663 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,664 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,664 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,664 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,664 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,664 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,664 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,664 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,665 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,664 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,665 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,665 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,665 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,665 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,665 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,666 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,666 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,666 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,666 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,665 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,666 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,595 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,596 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'QICCHt0wBx3j6i0vrEqqt91VRORZ7KO1NqiF5PJkQJfoykLKXb0bwQFvtDBpJ7c1LyyResPbsyo=', 'x-amz-request-id': '4P7KY58FPQR1M907', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,596 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,596 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,596 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,596 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,596 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,596 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,597 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/timestamp.pkl
2022-05-12 22:21:57,597 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,597 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,597 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,597 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,597 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/timestamp.pkl
2022-05-12 22:21:57,597 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/timestamp.pkl
2022-05-12 22:21:57,598 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,598 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,598 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
658e6bbdcb8a32aebbe558c55249e4dbe01ac0787bbdd505e5e2998f8dced7bb
2022-05-12 22:21:57,598 botocore.auth DEBUG    Signature:
310dac1ba352a5f91000688e89e0ab0c1570ba09fd7aa805bffc6d1972c111eb
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,598 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,598 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,599 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,599 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2e6GhCYAM7nKctaILu4GbEcgnPKWknpveJ/dDCajgWetcRp0PdVM/V6x0MX+mc9BEuwQmJOPY5E=', 'x-amz-request-id': '4P7K4MDYJADNYGBR', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,599 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,599 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,599 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,599 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,599 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,600 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,600 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,600 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,600 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,600 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,600 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,600 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,600 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,600 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,600 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,600 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,600 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,600 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,601 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
9d9f84106268d1ea1306dd45f94d9622e9b2748e0a1c3c93c8d333e6adee8587
2022-05-12 22:21:57,601 botocore.auth DEBUG    Signature:
890ac0f9a4a3f64f1473d4193dd3adaf9688b0dee2c8c85c54de887283d0b513
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,601 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,601 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,602 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,602 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Gm/cT2NrJnX1NvxwD+DSTJkoCp/ytv7m3/RaTrC8OIWqH7OSe7wKg/dyJgOz3QcAzdVhRriJ2Dw=', 'x-amz-request-id': '4P7X5JGTAYE8T4R5', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,602 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,602 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,602 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,602 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,602 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,603 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,603 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,603 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,603 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,603 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,603 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
6b2b1a0eb7e85e45b3e76539d9af40f3ef9104b1475a13c546469e6031f5a2e8
2022-05-12 22:21:57,603 botocore.auth DEBUG    Signature:
5c74ea71c47b65fabafc56a7df70459d96f678f814254743f8150e70ca612da7
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,604 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,604 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,615 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,616 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '8GaqkejfvuiCd1mPeyYGBxdFPGFq5CHB01LuxQ0OQiSTU572j2rAvLadR/Jyrw6l7aO3Dc1FTBY=', 'x-amz-request-id': '4P7JFYJDZ33WJGRQ', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,616 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,616 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,616 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,616 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,616 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,616 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,616 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,617 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,617 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,617 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,617 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,617 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
eb1761f6734756ab8ac7dac2e51c15a0a71c90df9074a2f20e08189d6217b9e5
2022-05-12 22:21:57,618 botocore.auth DEBUG    Signature:
18218dedc436a76613e1d04d9911f204b483c370f71817b3a394c2f1f7eaffcb
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,618 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,618 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,619 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,619 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'q3RQWPa3Yab730RlT/Gq6oRecPP5gVEQ7RDaDy0K9PCUF07CwOvBZ5nxByJRYQ/I8pCravc+0gg=', 'x-amz-request-id': '4P7P66S7897A3EMD', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,619 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,619 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,619 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,619 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,619 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,619 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,620 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,620 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,620 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,620 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,620 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
25fc3c2ca7eec49d4634776ae928023eca32cf05f1fec47b2475247dfd3db2a4
2022-05-12 22:21:57,621 botocore.auth DEBUG    Signature:
d2ab4e2fc2da4ecfebe99851d6edd9f112fb67c72a0eb3a46268f34b47f8d9f2
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,621 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,621 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,622 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,622 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'rXoPLRAs9fXddz67iSdzyoZ4uKyyJ/Mh2x79Iko1w1x1A0fg53Sh5WGwBpBx71NadNMytiG1ZYo=', 'x-amz-request-id': '4P7XZ6XMCHVYT8Y0', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,623 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,623 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,623 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,623 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,623 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,623 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,623 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/bbox.pkl
2022-05-12 22:21:57,623 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,624 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/bbox.pkl
2022-05-12 22:21:57,624 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/bbox.pkl
2022-05-12 22:21:57,624 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,624 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,624 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
c953646f094a6208eac40e7036777e7dfc6885612985a906eb80bb0af8c37700
2022-05-12 22:21:57,624 botocore.auth DEBUG    Signature:
dc0daea9ce66eb0abd316c0950a59e636dd109f6c68229eddb34d3ff227c8cc3
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,624 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,624 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,679 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/timestamp.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,680 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'DwcySTAmYTGyvBiPfcc7e+yc8pttIS8Y8ZycbvjrAOaSXQkXKMR0bWh81h3cFKNP97XjFDk8qec=', 'x-amz-request-id': '4P7RTNHQ1CBBXGSX', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"d20f57f9b0299badcdaec2f120421aa8"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '2089'}
2022-05-12 22:21:57,680 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,680 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,680 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,680 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/timestamp.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,680 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,681 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/timestamp.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,681 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,681 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/timestamp.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,681 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/timestamp.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/timestamp.pkl', 'fileobj': <_io.BufferedRandom name=31>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/timestamp.pkl
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/timestamp.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,683 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/timestamp.pkl
2022-05-12 22:21:57,683 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/timestamp.pkl
2022-05-12 22:21:57,683 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,683 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,683 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
f4bd04fff9b1dc71260f64e7467ef72459550bb54c3b17968e1dbe97476db899
2022-05-12 22:21:57,683 botocore.auth DEBUG    Signature:
6339678485c61f0ad6cbd74e906e5b00e6c9137fbec0ba10c556fa8832984eb7
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,683 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,685 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data/CLP.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,686 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '5h9BBKrstqH9ksi1GuiVdne+13ENxEGYiCCKVvmtGrWl0kDTeaiPzMHM6m1RRKEhGcRBSO5h6vY=', 'x-amz-request-id': '4P7ZW8HFNFPXBTHH', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"62fb197ea0e757227be69ba4beb5344b-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,686 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,686 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,686 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,687 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,687 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,687 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,687 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,687 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=27>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,688 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,688 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,688 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,689 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=27>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,689 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,689 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,689 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,689 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,690 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask/IS_DATA.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,690 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=27>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,691 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'JB+45Pmkd7hADQKBHiDp2AHoDCH15+AtfPQ2rhA7NJ7DQJ2AV3kVw77IKRsvheanjFT04LU8nx4=', 'x-amz-request-id': '4P7R548ZSFFZ0BDY', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"d924a9a3237bf4d818c83d0d9b773608-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,691 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=27>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,690 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,691 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,692 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,692 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,692 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,694 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,694 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,695 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,696 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,696 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,696 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,696 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,696 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,697 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,697 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,697 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,697 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,697 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,697 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
925a6db18637587f2a78a66ae644b77134aabc50795f974416d82e71fbfa07d1
2022-05-12 22:21:57,697 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,698 botocore.auth DEBUG    Signature:
4d90c5e47a1f02fe5bda880867c784565579476e58cb386885991e9f64a43cec
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,697 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
3ad984477626114d8ac831f352ab957a5fe0ab6b5c20b760721fd865cb4b3435
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,697 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,698 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,698 botocore.auth DEBUG    Signature:
a47e06db2b587797ec7dbda5b242fdbefef37c8939ad9e7242a21ecd9cb99c0f
2022-05-12 22:21:57,698 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,699 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,699 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,700 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,699 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,700 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=29>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,700 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,700 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,701 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=29>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,700 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,700 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,701 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,713 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,702 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,705 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask/CLM.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,706 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/bbox.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,712 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,722 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,702 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,714 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,714 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '5nJ4jA7GEceNU+UecXUYp+mNrjDN1xEw3r12GQ5za606YoWQeSw6fabpfu+cDNJcLiABolRznNU=', 'x-amz-request-id': '4P7V2KD49V8RTYTC', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:36 GMT', 'ETag': '"92a389103199133c18f0ff7abeaa496d-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,722 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,723 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
aa7728f25f3b89e707204e186ee3080151e382ab42e326fc8567b87113e752b4
2022-05-12 22:21:57,723 botocore.auth DEBUG    Signature:
83ef49b4b8dddfab6f2493a8612022d0a777ec17c93be0d27b54890d22d7c992
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '3BJF0vq4Jtc0qZgvuk0PRBa8O6PnBsmbgub9Nem504sbhZhEK9afIkjp/v8qmB01MhoyT6cKP3I=', 'x-amz-request-id': '4P7GPD8N3YRT432M', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '242000128'}
2022-05-12 22:21:57,722 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,724 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,714 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '3Ub79yhFqEq3lZ+MgRg28kSBQfKP4bxxF3+Fkcn2MYrsTSXwBDtb1Zta2DY5rMFeKP7YLBzPb3E=', 'x-amz-request-id': '4P7KCXA040DQ4CN7', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:36 GMT', 'ETag': '"725434ac833dd792b4393cd3e737872a"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,724 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,721 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,721 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,725 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,723 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,726 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,720 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,725 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/CLP.npy
2022-05-12 22:21:57,732 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,732 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,732 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
e2618e7babeb9a9d12fb3b8f33c5cd61e8ae608eeea617f3a6e8bd0b7c628dcb
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,733 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,733 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,727 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,732 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,733 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,734 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=29>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,725 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,734 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,734 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,733 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,713 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,735 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,735 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,732 botocore.auth DEBUG    Signature:
93b8a7c74df9035e2da5be4a97094d3bcb566d9ba7028439f7777ffb50b46913
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,737 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,733 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=29>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,727 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,738 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,734 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/bbox.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,737 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,739 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/bbox.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,737 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,739 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,741 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,739 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,737 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,742 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,743 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,741 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,741 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/bbox.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,746 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/bbox.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/bbox.pkl', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,746 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,745 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,745 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,747 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,749 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
6d0f0e292315d379f4497569cf9b05d546cb89d129b1317436e10fe1479cd830
2022-05-12 22:21:57,749 botocore.auth DEBUG    Signature:
7211c9445085ce5dfe2e2b6892724e77d361d751f9037c400b0331275730b55d
2022-05-12 22:21:57,742 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,748 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,747 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,753 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,743 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,752 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,754 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,755 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,755 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
dfdacf4dd839b5d0fbb1b17b77f5e7f0629adbbde38ddfa129a79df78375fa96
2022-05-12 22:21:57,755 botocore.auth DEBUG    Signature:
a4ef6a43f264943d2b2bdf40be7527046a675db321d240c6f50181dc999a6de9
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,743 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,757 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,759 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/bbox.pkl
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,759 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,759 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/bbox.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,759 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,762 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,755 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,761 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,759 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,755 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,766 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,766 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,767 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/bbox.pkl
2022-05-12 22:21:57,765 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,769 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,769 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,769 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,769 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
f89dab4465fc3d7a10779837e5050d4ac022e9509419caf270b6358d729407a2
2022-05-12 22:21:57,769 botocore.auth DEBUG    Signature:
f55729f986383271e566dc3c137c9379b94cd912dedc0ed389d92bbe7a0a9f81
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,770 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,770 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,771 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,771 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,771 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
497c5db8990855475b4ddc3a31d7f2f25bd5ff2e917e393916b4acf4cdbad9be
2022-05-12 22:21:57,771 botocore.auth DEBUG    Signature:
8123077f1b0f9be48634220aeb60ae63f8530ddb195a77d2e9030b72dd698fec
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,771 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,771 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,768 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,772 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,763 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,772 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,773 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/bbox.pkl
2022-05-12 22:21:57,765 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,780 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,780 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
85f35c6c46629e737425dcd0243d218b097952320d441012ab0ed777da122b58
2022-05-12 22:21:57,776 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) about to wait for the following futures []
2022-05-12 22:21:57,777 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,783 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,783 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,783 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,783 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
a501c743ab412c6874f2608738b413de112333dcdf5e6e063e143e4a6c764d0e
2022-05-12 22:21:57,783 botocore.auth DEBUG    Signature:
98ac96853d0d33d60ae58c640edda034a5fe45d3885801a1e858ac805d0e1e5a
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,784 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.auth DEBUG    Signature:
7c014e064fd545080ca7e189e5f1401855acfe15e05ee2e88991d75a66203e31
2022-05-12 22:21:57,777 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,786 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,786 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
8a44f22963234087262d3d4f89fe660bdd8932f429ff234ed2c1d5074af0200a
2022-05-12 22:21:57,786 botocore.auth DEBUG    Signature:
1debb993caf676c5192af03ffb95616f29e1b662112d68e6998ff2248aff29be
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) done waiting for dependent futures
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,788 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,789 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,785 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) about to wait for the following futures []
2022-05-12 22:21:57,788 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,788 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,790 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,787 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=25165824-33554431'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,790 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,790 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,792 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,791 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,792 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask/CLM.npy
2022-05-12 22:21:57,793 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,793 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,793 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
6c938abb33c3f5170eb7d148cdcf8ab9e70558654761ab58b67dc47632ff5cec
2022-05-12 22:21:57,793 botocore.auth DEBUG    Signature:
aa95d54ff36a3824cc5859fc25a04fa8ebe948bf799c1d2b3429ba5113c959b4
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,793 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,793 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,787 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,794 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask/IS_DATA.npy
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,789 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,794 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,791 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,794 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,794 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,792 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,794 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) about to wait for the following futures []
2022-05-12 22:21:57,794 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,794 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,795 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,795 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,796 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
157271de8f97f06d1019fde0f46f4003450f8413724b6fa98b22ecc01ef8c52a
2022-05-12 22:21:57,795 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) about to wait for the following futures []
2022-05-12 22:21:57,795 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,796 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
049d15458718dfa653fa2b94c7e7b7f51195ccc29377ff96ee00d446b07c5900
2022-05-12 22:21:57,796 botocore.auth DEBUG    Signature:
918573807f0e3f01dad779f740e64d93a1341999df2dbc33ef6a35f070cbd0c4
2022-05-12 22:21:57,795 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) done waiting for dependent futures
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) done waiting for dependent futures
2022-05-12 22:21:57,796 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,796 botocore.auth DEBUG    Signature:
146ff137125cadddfc3b7b0ab55cc482a511297ca59e1d62b8c08c218bf5e3ce
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
e42130cef0fdf782790417248de0f7896ede0b10041ffdd757d22e6aa0310571
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=33554432-41943039'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 33554432, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=58720256-67108863'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 58720256, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) about to wait for the following futures []
2022-05-12 22:21:57,797 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,797 botocore.auth DEBUG    Signature:
75c82973b2297f5a56635c6cca8094d3226bbb7818629d32522b8f685d86533a
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) done waiting for dependent futures
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,799 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,798 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) done waiting for dependent futures
2022-05-12 22:21:57,798 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,789 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) about to wait for the following futures []
2022-05-12 22:21:57,802 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) done waiting for dependent futures
2022-05-12 22:21:57,800 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,800 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=50331648-58720255'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 50331648, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,800 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) about to wait for the following futures []
2022-05-12 22:21:57,802 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=41943040-50331647'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 41943040, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,802 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,804 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,800 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=67108864-75497471'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 67108864, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,803 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) done waiting for dependent futures
2022-05-12 22:21:57,804 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=75497472-83886079'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 75497472, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,805 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,803 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,805 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,805 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=33554432-41943039', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,803 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
699d5c6c0e5898f7821d8399841fa7696db989a07a711df1cd8ac9f5faca5db9
2022-05-12 22:21:57,807 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 botocore.auth DEBUG    Signature:
53381c6ca46342f65dc0652f3729bf911b2716f8b4dd33c257796042506396b6
2022-05-12 22:21:57,807 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,808 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-33554431', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,808 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,809 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,808 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,810 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,809 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,810 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,810 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=75497472-83886079', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,811 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=41943040-50331647', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,811 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,811 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,811 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,811 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=58720256-67108863', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,812 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,812 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,812 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,813 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,813 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,813 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,812 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,813 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,813 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,814 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,813 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=33554432-41943039
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,812 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,810 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=67108864-75497471', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,812 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,814 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,815 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,815 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,815 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,815 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=50331648-58720255', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,815 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,815 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,815 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,816 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=41943040-50331647
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,816 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d5ccdbe33da4f121a3039ecd2173d42174d016059e7f93e1d2aa296bb27abee9
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
3f2704f34906353d4d4a434b3147318a7fc150782aede974a76b2161a8b69ad0
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,816 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,816 botocore.auth DEBUG    Signature:
6bffd7fc72074e2f38a6837b45f10857b9a981c1742bb55814c10ecf6a24dea5
2022-05-12 22:21:57,816 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,816 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,816 botocore.auth DEBUG    Signature:
404f11f04a7d5d3169dffab5f46153a3bd479ab11d1c90d087d584b91d1ed90b
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,817 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,818 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,817 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,817 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,818 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,819 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,818 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,819 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,817 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,818 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-33554431
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,819 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,819 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,820 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,820 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,820 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=75497472-83886079
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,820 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
cc18cc11872c667d7b7580aa68c57d0f0ff5df074cc5bc48a162d65cbfeb4a5a
2022-05-12 22:21:57,820 botocore.auth DEBUG    Signature:
c8456b2d2fbcaef3b237a22972286595bb78347a13afa3de79c60714343cd99c
2022-05-12 22:21:57,820 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=58720256-67108863
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,820 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,820 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,819 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,820 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
ef670b89073cc3109a9ab1990bffba4b205a301ce0e7d94dd6cfeee0ba4f690b
2022-05-12 22:21:57,821 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,821 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,821 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
5e6cfd593c1969b45b2cd7ae1c8ae1e47b3e918a8f408bda9e76613a2df31df4
2022-05-12 22:21:57,822 botocore.auth DEBUG    Signature:
ddd4d0ea60830906ef35b88f1447fcf6bf2153701b5140783187dabfeb13d692
2022-05-12 22:21:57,821 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,821 botocore.auth DEBUG    Signature:
32d41a8ef91af5e7bbde742ee7212f58ad650c06876f31e523f8f0fede25ae1f
2022-05-12 22:21:57,822 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,822 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,821 urllib3.connectionpool DEBUG    Starting new HTTPS connection (5): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,822 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,822 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=67108864-75497471
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,822 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,822 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,823 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
c18917a9a06561c40c4deb7379605c34447d5c248b039ff1150846bb0ecaf28c
2022-05-12 22:21:57,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,823 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,823 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,821 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,823 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,823 botocore.auth DEBUG    Signature:
af1ed4e67d8b610d175298b159dfe17f2f34eb711d8e174dbd4ccb7c4e25ea61
2022-05-12 22:21:57,823 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,823 urllib3.connectionpool DEBUG    Starting new HTTPS connection (6): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,823 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:21:57,824 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,824 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,824 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,824 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,824 urllib3.connectionpool DEBUG    Starting new HTTPS connection (7): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,824 urllib3.connectionpool DEBUG    Starting new HTTPS connection (8): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,825 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,825 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=50331648-58720255
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,825 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,826 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
92b7f72fcc7e0a96a8033e589e5855689ef0b9ce8bd4e97b84c37b70f2e99142
2022-05-12 22:21:57,826 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,826 botocore.auth DEBUG    Signature:
c8e7b774e399e682db6f754f6b46b8ea9f945ccedcf74cfaf290d35900ad9d72
2022-05-12 22:21:57,826 urllib3.connectionpool DEBUG    Starting new HTTPS connection (9): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,826 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,826 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,826 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,826 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,827 urllib3.connectionpool DEBUG    Starting new HTTPS connection (10): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,843 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/timestamp.pkl HTTP/1.1" 200 2089
2022-05-12 22:21:57,844 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'anRa0yRW09LNO92BY/4EMwGPZgnd50GCz7QjFkzxHHcCfi0BM85d+rO8Q2nj3xm0wHUaJwCaIM8=', 'x-amz-request-id': '4P7W65336A47PDBE', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"d20f57f9b0299badcdaec2f120421aa8"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '2089'}
2022-05-12 22:21:57,844 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,844 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,844 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,844 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,845 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 0}
2022-05-12 22:21:57,845 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,845 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,845 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,845 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,892 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/bbox.pkl HTTP/1.1" 200 184
2022-05-12 22:21:57,892 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HwFJ9CLC0KqS7H3rtbXszppT4fZ26Ri3Sf8ir/Rs+KA2RyZsrtC0tqepfei0nFVdPxG3J7bQZJc=', 'x-amz-request-id': '4P7XH0A6GE9T4J13', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:36 GMT', 'ETag': '"725434ac833dd792b4393cd3e737872a"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,893 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,893 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,893 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,894 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,894 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 0}
2022-05-12 22:21:57,894 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,895 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,895 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,895 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,895 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,895 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '5+wgIHEVp8PiDMfYuMyYkc+h8KYwpa2XEOmz/gMGal4dJ8mWxtPcg+Io1tf4xinhCxh2HVO9n5c=', 'x-amz-request-id': '4P7NBRD2XFZTDN1S', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"62fb197ea0e757227be69ba4beb5344b-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,896 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,897 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,897 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,897 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,940 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/mask/IS_DATA.npy HTTP/1.1" 206 5084304
2022-05-12 22:21:57,940 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Ju9WEGyCA6lDGvCkwa3per1kOHlB5PATRcKap5OSdC8fNy77RFAb81Yp65emgttKanzlb9TQAQs=', 'x-amz-request-id': '4P7NGA9ACKYS3ECW', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"d924a9a3237bf4d818c83d0d9b773608-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:21:57,940 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,941 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,942 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,942 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,987 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,987 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'bxvEk4ofiBfbpDoGTNiUNcqusLCrK/w98u7Y3n75E73NUQy2f0MMIr9mkQ6O8ga59y4yoi78dQo=', 'x-amz-request-id': '4P7TNZT95QBZ4E6R', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:36 GMT', 'ETag': '"92a389103199133c18f0ff7abeaa496d-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,987 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,988 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,988 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,988 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:58,007 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:58,007 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ZRK3eHZ1v2+DPsBhzDozQxPrATfGZjQIuPDgTcOERzCoLI3LrIKVhL341iLNlMERLY7hbpdusyM=', 'x-amz-request-id': '4P7X0CR9F14P8NT4', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:58,008 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:58,008 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:58,009 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:58,009 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:00,695 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:00,695 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:00,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:00,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:00,696 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 0}
2022-05-12 22:22:00,696 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:01,457 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:01,457 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:01,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:01,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:01,458 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 0}
2022-05-12 22:22:01,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:03,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:03,297 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:03,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:03,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:03,298 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 25165824}
2022-05-12 22:22:03,298 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:03,940 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:03,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:03,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:03,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:03,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 262144}
2022-05-12 22:22:03,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:04,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:04,295 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:04,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:04,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:04,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 0}
2022-05-12 22:22:04,296 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:05,531 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:05,531 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:05,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:05,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:05,532 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 25427968}
2022-05-12 22:22:05,532 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:07,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:07,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:07,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 262144}
2022-05-12 22:22:07,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:22:07,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:22:07,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:22:07,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 25690112}
2022-05-12 22:22:07,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,805 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,806 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ezX6+newH/SLaX+QNWuVh5ld5cZ8l07uu5XdoHt2OD31yKsNvRrf9G1SAK7WBhYM+krr0LIH7R4=', 'x-amz-request-id': '8ZJG0S3RFMWMQ0MM', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 33554432-41943039/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,806 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,807 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,807 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,807 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,857 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,857 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hY3ZUurpBnpUY4bkMTP/MwspUI2At3hSPVi4pya+vSkXdiNSjOgbbWC5wIKOGOv5jGA9n18TICg=', 'x-amz-request-id': '8ZJTC25FJ15KK6VS', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,857 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,858 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,858 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,858 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,941 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,942 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '9Spr4+Q5BZeXzvmtIttTzaOJ8/fcPpGetW7Qkr42RC0leHE3LaZYM+F1/7CR8catK+4EczcPy6g=', 'x-amz-request-id': '8ZJXENSYRQSZV8SD', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,942 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,942 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,942 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,942 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'o9jXjJ6dRzEDlZIDRqjhJKc1oHejK+6wqAkEmAvFkVWOgLtF4WQ7PjC1NLtAPXTwg7QGCBjheV4=', 'x-amz-request-id': '8ZJSNDFWZBZHSYK2', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 50331648-58720255/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,943 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,943 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,943 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,943 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,944 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,944 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,948 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,948 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '0JF3LSDd/X4wHe4WrbMaPEEe/kS59v73imtXpBzYkEaJTrDHMmvDAm7ZbSgGcPGLu4+ZqU7rzcE=', 'x-amz-request-id': '8ZJSQRYTH5K79RY3', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:36 GMT', 'ETag': '"92a389103199133c18f0ff7abeaa496d-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,948 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,949 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,949 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,949 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,963 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,963 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ZSY5OVAcv1HtWT/7rvT8ieWHwjFeF+XXWs0qwrKuYRoy0DuxLyTqQfisK+VHvXqy7l5xQpPmGok=', 'x-amz-request-id': '8ZJH9EZATPRQR1XF', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 75497472-83886079/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,963 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,963 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,963 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,963 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,035 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,036 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'na6ywJejPi3/KA97vZncz3mTww2Stv+F91M/Wv6W0GN97vllZCFm213wRjesknb5Ptu87xoNZ1Q=', 'x-amz-request-id': '8ZJYXQBD6AZP4DSQ', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-33554431/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,036 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,037 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,037 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,037 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,074 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/mask/CLM.npy HTTP/1.1" 206 5084304
2022-05-12 22:22:09,074 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'sPCTbec20gofJgFKJIB6rQ2WcKLgL9UqJjOCSGkmZ6/oDR5Ukh5T3mFWbCISTM+Pkph8MOjNc6c=', 'x-amz-request-id': '8ZJJGPSYVX9Q9R8Z', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:36 GMT', 'ETag': '"92a389103199133c18f0ff7abeaa496d-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:22:09,074 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,075 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,075 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,075 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,074 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,076 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'LXqGhQl5MXJVwn/4Qcp9FWB2Tqf5hb4YvFWdswOKs5uUIoH/DukhdjZv7k0te11ZEh4uNxQ+Le4=', 'x-amz-request-id': '8ZJZZV3TGP66K1TE', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"62fb197ea0e757227be69ba4beb5344b-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,076 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,076 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,076 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,076 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,143 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/CLP.npy HTTP/1.1" 206 5084304
2022-05-12 22:22:09,143 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'tEqw/QOqeTZL8QLfqpuZAwnlvz18txvEw+16Xo1B0ITYaaQMakci5PwdOjZ6/emf1q+dk3P414k=', 'x-amz-request-id': '8ZJYS7WZCZ23TX2W', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"62fb197ea0e757227be69ba4beb5344b-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:22:09,143 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,144 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,144 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,144 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,153 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,153 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jfkNooG8WoXkJFF3XLwuC6Tko6qqZ0b6bIfeWe3h173aZU+BxQLbbLY9pZLvMWj2d5Ufq/T1P2U=', 'x-amz-request-id': '8ZJTTH8QPSTA9YZ0', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"d924a9a3237bf4d818c83d0d9b773608-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,153 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,154 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,154 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,154 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,165 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,165 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'xkWHNhvz/6kiQOAocWv1IancamioZEZvwXYTdCSRas9syBMA8dSLVnJXmBt+cP0gHBQWiA08ess=', 'x-amz-request-id': '8ZJT7ABPPXJPHRQX', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:36 GMT', 'ETag': '"92a389103199133c18f0ff7abeaa496d-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,165 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,166 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,166 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,166 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,184 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,185 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HKhfKgQBAXBDHHHLCsK4YxtPRUuUqsGspF6qrj6tQmXS5snTfAAQgwprNzpJrtCMS9GzZfoYvxY=', 'x-amz-request-id': 'MCAX7P4YBZQJVK71', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"d924a9a3237bf4d818c83d0d9b773608-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,185 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,185 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,185 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,185 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,186 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,187 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Bu/I3j4SpdglHNzCefDYeBXW4UJOBs2K4N2WmLQYX0A5J1S/6k7taU/Q6YJ27zzk6meT2e/PIBU=', 'x-amz-request-id': '8ZJMVQ69RBKG7MQG', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 67108864-75497471/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,187 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,187 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,187 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,187 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,363 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,363 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'iH+0Y3DtKV+JFxo3sWkoddghSlvY33v601CXOimCSjlnAds4grZKYnEi4m0PxqtBIWvhG8MgMQ4=', 'x-amz-request-id': 'MCAYQVBVHZSF99V2', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"62fb197ea0e757227be69ba4beb5344b-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,363 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,364 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,364 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,364 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,386 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,386 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'cHnqLfRHS9uPMmSe7xQOraDOfhTUGSOXNDcHMUWya34C/3Hl5UF5WzhH7KB2a0wnHl9rJxe5zJw=', 'x-amz-request-id': 'MCAG743F3G97YA7P', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:35 GMT', 'ETag': '"d924a9a3237bf4d818c83d0d9b773608-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,386 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,387 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,387 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,387 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,828 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,828 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ucPYgxo+H8Cuy2KonvLXhVPZajKLnGusGbn5sWs7lBl7f28Zz95z/BjXhKQ+Q0CJmGPLQkD+Sxk=', 'x-amz-request-id': 'MCAHZA1CR7NQ8AG4', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 41943040-50331647/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,828 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,829 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,829 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,829 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:10,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:10,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:10,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:10,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:10,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 262144}
2022-05-12 22:22:10,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:14,060 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:14,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:14,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:14,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:14,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 524288}
2022-05-12 22:22:14,061 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:19,486 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:19,487 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:19,487 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:19,487 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:19,487 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 524288}
2022-05-12 22:22:19,487 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:22,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:22,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:22,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:22,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:22,146 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 25165824}
2022-05-12 22:22:22,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:22,530 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:22,530 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:22,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:22,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:22,531 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 16777216}
2022-05-12 22:22:22,532 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,085 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:23,085 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,086 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:23,086 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:23,086 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 16777216}
2022-05-12 22:22:23,087 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,566 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:23,567 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'OroJn1x8y8QZlIsEggSGhazsFls8GyNHAeUFmDKsCuz4HwA7/5JHJlDUM+/TJ83uIkBC+MDKCTs=', 'x-amz-request-id': 'HRD90N617C5VKF3Q', 'Date': 'Thu, 12 May 2022 22:22:24 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 58720256-67108863/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:23,567 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:23,568 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:23,568 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:23,568 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:24,200 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:24,200 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:24,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:24,200 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 25165824}
2022-05-12 22:22:24,201 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,566 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50331648}) to executor  for transfer request: 0.
2022-05-12 22:22:24,566 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) about to wait for the following futures []
2022-05-12 22:22:24,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) done waiting for dependent futures
2022-05-12 22:22:24,566 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50331648}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 50331648}
2022-05-12 22:22:24,566 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:25,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:25,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:25,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:25,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:25,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 8388608}
2022-05-12 22:22:25,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:26,506 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41943040}) to executor  for transfer request: 0.
2022-05-12 22:22:26,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:26,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) about to wait for the following futures []
2022-05-12 22:22:26,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) done waiting for dependent futures
2022-05-12 22:22:26,507 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41943040}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 41943040}
2022-05-12 22:22:26,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:27,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:27,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:27,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 8388608}
2022-05-12 22:22:27,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,081 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:27,082 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:27,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:27,082 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 16777216}
2022-05-12 22:22:27,083 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:27,219 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:27,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:27,219 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 786432}
2022-05-12 22:22:27,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:27,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:27,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:27,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 8388608}
2022-05-12 22:22:27,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:27,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:27,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:27,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 0}
2022-05-12 22:22:27,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67108864}) to executor  for transfer request: 0.
2022-05-12 22:22:27,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) about to wait for the following futures []
2022-05-12 22:22:27,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) done waiting for dependent futures
2022-05-12 22:22:27,723 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67108864}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 67108864}
2022-05-12 22:22:27,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:29,292 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:22:29,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:29,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:22:29,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:22:29,293 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 25952256}
2022-05-12 22:22:29,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:31,437 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:31,437 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:31,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:31,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:31,438 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 25165824}
2022-05-12 22:22:31,438 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:33,089 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:33,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:33,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:33,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:33,090 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 16777216}
2022-05-12 22:22:33,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:33,805 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:33,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:33,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:33,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:33,806 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 786432}
2022-05-12 22:22:33,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:34,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:34,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:34,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 524288}
2022-05-12 22:22:34,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:35,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33554432}) to executor  for transfer request: 0.
2022-05-12 22:22:35,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:35,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) about to wait for the following futures []
2022-05-12 22:22:35,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) done waiting for dependent futures
2022-05-12 22:22:35,269 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33554432}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 33554432}
2022-05-12 22:22:35,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:36,602 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:36,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:36,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 17039360}
2022-05-12 22:22:36,603 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:37,746 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:37,746 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:37,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:37,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:37,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 25427968}
2022-05-12 22:22:37,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:37,992 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:37,992 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:37,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:37,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:37,993 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 17039360}
2022-05-12 22:22:37,993 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:38,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:38,643 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:38,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:38,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:38,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 8650752}
2022-05-12 22:22:38,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:39,375 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:39,375 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:39,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:39,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:39,376 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 8650752}
2022-05-12 22:22:39,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:41,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:22:41,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:41,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:22:41,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:22:41,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1048576}
2022-05-12 22:22:41,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:41,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:41,311 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:41,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:41,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:41,311 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 25427968}
2022-05-12 22:22:41,312 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:41,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:41,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:41,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:41,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:41,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 8650752}
2022-05-12 22:22:41,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:42,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50593792}) to executor  for transfer request: 0.
2022-05-12 22:22:42,297 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:42,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) about to wait for the following futures []
2022-05-12 22:22:42,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) done waiting for dependent futures
2022-05-12 22:22:42,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50593792}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 50593792}
2022-05-12 22:22:42,298 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:43,292 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:43,292 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:43,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:43,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:43,292 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 8388608}
2022-05-12 22:22:43,292 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:43,683 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42205184}) to executor  for transfer request: 0.
2022-05-12 22:22:43,683 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:43,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) about to wait for the following futures []
2022-05-12 22:22:43,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) done waiting for dependent futures
2022-05-12 22:22:43,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42205184}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 42205184}
2022-05-12 22:22:43,684 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:45,263 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67371008}) to executor  for transfer request: 0.
2022-05-12 22:22:45,263 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:45,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) about to wait for the following futures []
2022-05-12 22:22:45,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) done waiting for dependent futures
2022-05-12 22:22:45,264 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67371008}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 67371008}
2022-05-12 22:22:45,264 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:47,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:47,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:47,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 262144}
2022-05-12 22:22:47,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:48,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:22:48,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:48,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:22:48,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:22:48,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 26214400}
2022-05-12 22:22:48,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:48,121 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:48,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:48,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:48,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:48,122 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 17301504}
2022-05-12 22:22:48,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:48,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:48,834 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:48,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:48,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:48,834 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 786432}
2022-05-12 22:22:48,835 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,001 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:49,001 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:49,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:49,002 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 17301504}
2022-05-12 22:22:49,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,121 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:49,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:49,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:49,122 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 17039360}
2022-05-12 22:22:49,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:51,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:51,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:51,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:51,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:51,173 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 25427968}
2022-05-12 22:22:51,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:51,654 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:51,654 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:51,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:51,655 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:51,655 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 8912896}
2022-05-12 22:22:51,655 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,609 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:22:52,610 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:22:52,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:22:52,610 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 25690112}
2022-05-12 22:22:52,610 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,467 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:22:53,467 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:22:53,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:22:53,468 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1310720}
2022-05-12 22:22:53,468 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:54,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42467328}) to executor  for transfer request: 0.
2022-05-12 22:22:54,908 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:54,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) about to wait for the following futures []
2022-05-12 22:22:54,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) done waiting for dependent futures
2022-05-12 22:22:54,909 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42467328}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 42467328}
2022-05-12 22:22:54,909 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:55,494 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:55,494 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:55,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:55,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:55,494 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 8912896}
2022-05-12 22:22:55,495 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:56,923 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:56,923 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:56,923 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:56,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:56,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:56,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:56,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:56,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 8912896}
2022-05-12 22:22:56,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:56,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 8650752}
2022-05-12 22:22:56,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:56,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:57,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:22:57,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:57,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:22:57,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:22:57,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 1048576}
2022-05-12 22:22:57,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:59,521 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:22:59,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:59,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:22:59,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:22:59,521 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 17563648}
2022-05-12 22:22:59,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,161 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67633152}) to executor  for transfer request: 0.
2022-05-12 22:23:00,161 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,161 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) about to wait for the following futures []
2022-05-12 22:23:00,161 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) done waiting for dependent futures
2022-05-12 22:23:00,161 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67633152}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 67633152}
2022-05-12 22:23:00,162 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,727 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:00,727 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:00,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:00,728 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 17563648}
2022-05-12 22:23:00,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:01,104 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:01,104 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:01,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:01,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:01,105 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 25690112}
2022-05-12 22:23:01,105 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:02,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:02,702 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:02,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:02,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:02,702 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1572864}
2022-05-12 22:23:02,703 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:03,806 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:23:03,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:03,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:23:03,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:23:03,807 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 524288}
2022-05-12 22:23:03,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:03,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:03,983 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:03,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:03,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:03,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 9175040}
2022-05-12 22:23:03,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:04,389 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50855936}) to executor  for transfer request: 0.
2022-05-12 22:23:04,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:04,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) about to wait for the following futures []
2022-05-12 22:23:04,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) done waiting for dependent futures
2022-05-12 22:23:04,390 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50855936}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 50855936}
2022-05-12 22:23:04,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:04,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:04,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:04,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:04,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:04,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 26476544}
2022-05-12 22:23:04,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:04,814 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:23:04,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:04,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:23:04,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:23:04,815 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 8912896}
2022-05-12 22:23:04,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,257 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42729472}) to executor  for transfer request: 0.
2022-05-12 22:23:05,258 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,258 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) about to wait for the following futures []
2022-05-12 22:23:05,258 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) done waiting for dependent futures
2022-05-12 22:23:05,258 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42729472}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 42729472}
2022-05-12 22:23:05,258 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:05,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:05,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:05,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 17301504}
2022-05-12 22:23:05,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,176 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:07,176 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:07,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:07,177 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 9175040}
2022-05-12 22:23:07,177 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:07,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:07,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:07,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 1048576}
2022-05-12 22:23:07,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,360 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:08,360 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:08,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:08,361 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 25690112}
2022-05-12 22:23:08,361 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,459 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:08,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:08,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:08,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 25952256}
2022-05-12 22:23:08,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:10,755 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:10,755 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:10,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:10,756 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:10,756 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 17825792}
2022-05-12 22:23:10,756 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:11,246 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67895296}) to executor  for transfer request: 0.
2022-05-12 22:23:11,246 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:11,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) about to wait for the following futures []
2022-05-12 22:23:11,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) done waiting for dependent futures
2022-05-12 22:23:11,247 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67895296}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 67895296}
2022-05-12 22:23:11,247 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:12,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:12,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:12,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 1835008}
2022-05-12 22:23:12,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:13,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42991616}) to executor  for transfer request: 0.
2022-05-12 22:23:13,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:13,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) about to wait for the following futures []
2022-05-12 22:23:13,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) done waiting for dependent futures
2022-05-12 22:23:13,854 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42991616}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 42991616}
2022-05-12 22:23:13,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:15,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:15,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:15,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:15,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:15,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 9175040}
2022-05-12 22:23:15,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:15,967 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:15,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:15,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:15,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:15,968 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 25952256}
2022-05-12 22:23:15,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:16,536 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:16,537 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:16,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:16,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:16,537 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 9175040}
2022-05-12 22:23:16,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:17,844 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:17,844 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:17,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:17,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:17,845 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 1310720}
2022-05-12 22:23:17,845 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:19,327 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51118080}) to executor  for transfer request: 0.
2022-05-12 22:23:19,327 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:19,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) about to wait for the following futures []
2022-05-12 22:23:19,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) done waiting for dependent futures
2022-05-12 22:23:19,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51118080}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 51118080}
2022-05-12 22:23:19,328 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:19,822 s3transfer.download DEBUG    Retrying exception caught (Read timeout on endpoint URL: "None"), retrying request, (attempt 0 / 5)
Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 436, in _error_catcher
    yield
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 518, in read
    data = self._fp.read(amt) if not fp_closed else b""
  File "/usr/lib/python3.8/http/client.py", line 459, in read
    n = self.readinto(b)
  File "/usr/lib/python3.8/http/client.py", line 503, in readinto
    n = self.fp.readinto(b)
  File "/usr/lib/python3.8/socket.py", line 669, in readinto
    return self._sock.recv_into(b)
  File "/usr/lib/python3.8/ssl.py", line 1241, in recv_into
    return self.read(nbytes, buffer)
  File "/usr/lib/python3.8/ssl.py", line 1099, in read
    return self._sslobj.read(len, buffer)
socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 99, in read
    chunk = self._raw_stream.read(amt)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 540, in read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__
    self.gen.throw(type, value, traceback)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 441, in _error_catcher
    raise ReadTimeoutError(self._pool, None, "Read timed out.")
urllib3.exceptions.ReadTimeoutError: AWSHTTPSConnectionPool(host='plot-delineation.s3.eu-central-1.amazonaws.com', port=443): Read timed out.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 583, in _main
    for chunk in chunks:
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 728, in __next__
    chunk = self._body.read(self._chunksize)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/utils.py", line 599, in read
    value = self._stream.read(*args, **kwargs)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 102, in read
    raise ReadTimeoutError(endpoint_url=e.url, error=e)
botocore.exceptions.ReadTimeoutError: Read timeout on endpoint URL: "None"
2022-05-12 22:23:19,825 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:23:19,825 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:23:19,825 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:23:19,825 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:23:19,825 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:23:19,825 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:23:19,826 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:23:19,826 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:23:19,826 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:23:19,826 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:23:19,826 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=75497472-83886079', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:23:19,826 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:23:19,826 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:23:19,826 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:23:19,826 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:23:19,826 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:23:19,827 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:23:19,827 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:23:19,827 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:23:19,827 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:23:19,827 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=75497472-83886079
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222319Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:23:19,827 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222319Z
20220512/eu-central-1/s3/aws4_request
2e42a99ba5a4b5102e59f781ce4f0ab5bb2b571f7298539bfcda88901f7e096f
2022-05-12 22:23:19,827 botocore.auth DEBUG    Signature:
16670752387d3852b8f43a27dcd7a0c036467ba59734195ac2bbf160aa77ebfa
2022-05-12 22:23:19,828 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:23:19,828 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:23:19,828 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:23:19,828 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:23:19,828 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:23:20,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:20,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:20,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:20,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 17563648}
2022-05-12 22:23:20,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:20,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:20,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:20,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:20,397 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 17825792}
2022-05-12 22:23:20,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:21,220 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:23:21,221 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NUTV4i+E1JZ49LbMzy2CEgSk7T+WZCUvHjRQYCVXcp8VrNPeaaU7AkIMB16RKI5zd8XGtmeu5wc=', 'x-amz-request-id': 'Y1CKR26143WX9FPN', 'Date': 'Thu, 12 May 2022 22:23:21 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 75497472-83886079/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:23:21,221 botocore.parsers DEBUG    Response body:

2022-05-12 22:23:21,222 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:23:21,222 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:23:21,222 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:23:21,524 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:21,524 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:21,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:21,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:21,524 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 25952256}
2022-05-12 22:23:21,525 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:22,748 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:23:22,748 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:22,748 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:23:22,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:23:22,749 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 26738688}
2022-05-12 22:23:22,749 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,192 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:23,192 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:23,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:23,193 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 26214400}
2022-05-12 22:23:23,193 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,446 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68157440}) to executor  for transfer request: 0.
2022-05-12 22:23:23,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) about to wait for the following futures []
2022-05-12 22:23:23,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) done waiting for dependent futures
2022-05-12 22:23:23,447 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68157440}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 68157440}
2022-05-12 22:23:23,447 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,895 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:23,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:23,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:23,896 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 786432}
2022-05-12 22:23:23,897 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:24,589 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:24,589 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:24,590 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:24,590 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:24,590 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 1310720}
2022-05-12 22:23:24,591 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,403 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:23:25,403 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:23:25,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:23:25,404 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2097152}
2022-05-12 22:23:25,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43253760}) to executor  for transfer request: 0.
2022-05-12 22:23:25,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) about to wait for the following futures []
2022-05-12 22:23:25,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) done waiting for dependent futures
2022-05-12 22:23:25,859 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43253760}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 43253760}
2022-05-12 22:23:25,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:27,138 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:27,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:27,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 9437184}
2022-05-12 22:23:27,139 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,724 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:27,724 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:27,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:27,725 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 9437184}
2022-05-12 22:23:27,725 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:28,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:28,254 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:28,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:28,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:28,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 9437184}
2022-05-12 22:23:28,255 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,319 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:30,319 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:30,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:30,320 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 18087936}
2022-05-12 22:23:30,320 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:30,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:30,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:30,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 26214400}
2022-05-12 22:23:30,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:30,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:30,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:30,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 26476544}
2022-05-12 22:23:30,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:32,642 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:32,642 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:32,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:32,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:32,643 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 1572864}
2022-05-12 22:23:32,643 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:32,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:32,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:32,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:32,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:32,948 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 18087936}
2022-05-12 22:23:32,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:33,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:33,565 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:33,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:33,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:33,565 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 9437184}
2022-05-12 22:23:33,566 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:33,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58720256}) to executor  for transfer request: 0.
2022-05-12 22:23:33,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:33,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) about to wait for the following futures []
2022-05-12 22:23:33,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) done waiting for dependent futures
2022-05-12 22:23:33,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58720256}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 58720256}
2022-05-12 22:23:33,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:23:35,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:23:35,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:23:35,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2359296}
2022-05-12 22:23:35,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:36,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:36,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:36,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:36,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:36,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 17825792}
2022-05-12 22:23:36,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:36,343 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:36,343 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:36,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:36,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:36,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 9699328}
2022-05-12 22:23:36,344 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:36,345 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:36,345 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:36,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:36,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:36,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 26214400}
2022-05-12 22:23:36,346 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:37,642 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43515904}) to executor  for transfer request: 0.
2022-05-12 22:23:37,643 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:37,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) about to wait for the following futures []
2022-05-12 22:23:37,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) done waiting for dependent futures
2022-05-12 22:23:37,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43515904}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 43515904}
2022-05-12 22:23:37,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,322 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68419584}) to executor  for transfer request: 0.
2022-05-12 22:23:38,322 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) about to wait for the following futures []
2022-05-12 22:23:38,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) done waiting for dependent futures
2022-05-12 22:23:38,323 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68419584}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 68419584}
2022-05-12 22:23:38,323 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,092 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75497472}) to executor  for transfer request: 0.
2022-05-12 22:23:39,092 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) about to wait for the following futures []
2022-05-12 22:23:39,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) done waiting for dependent futures
2022-05-12 22:23:39,093 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75497472}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 75497472}
2022-05-12 22:23:39,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,383 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:23:39,383 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:23:39,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:23:39,384 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17039360}
2022-05-12 22:23:39,384 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:39,830 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:39,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:39,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 9699328}
2022-05-12 22:23:39,831 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:39,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:39,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:39,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 1572864}
2022-05-12 22:23:39,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,992 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:39,992 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:39,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:39,992 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 1048576}
2022-05-12 22:23:39,993 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:40,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:23:40,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:40,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:23:40,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:23:40,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 27000832}
2022-05-12 22:23:40,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:41,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:41,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:41,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:41,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:41,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 18350080}
2022-05-12 22:23:41,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,035 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:42,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:42,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:42,036 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 9699328}
2022-05-12 22:23:42,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:42,380 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:42,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:42,381 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 26476544}
2022-05-12 22:23:42,381 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,740 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:42,741 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:42,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:42,741 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 18350080}
2022-05-12 22:23:42,741 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:43,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51380224}) to executor  for transfer request: 0.
2022-05-12 22:23:43,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:43,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) about to wait for the following futures []
2022-05-12 22:23:43,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) done waiting for dependent futures
2022-05-12 22:23:43,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51380224}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 51380224}
2022-05-12 22:23:43,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:23:44,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:23:44,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:23:44,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2621440}
2022-05-12 22:23:44,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,266 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:23:44,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:23:44,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:23:44,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 26738688}
2022-05-12 22:23:44,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:45,588 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43778048}) to executor  for transfer request: 0.
2022-05-12 22:23:45,588 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:45,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) about to wait for the following futures []
2022-05-12 22:23:45,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) done waiting for dependent futures
2022-05-12 22:23:45,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43778048}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 43778048}
2022-05-12 22:23:45,589 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:46,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:46,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:46,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:46,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:46,167 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 9961472}
2022-05-12 22:23:46,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:49,866 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58982400}) to executor  for transfer request: 0.
2022-05-12 22:23:49,866 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:49,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) about to wait for the following futures []
2022-05-12 22:23:49,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) done waiting for dependent futures
2022-05-12 22:23:49,866 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58982400}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 58982400}
2022-05-12 22:23:49,866 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:51,103 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:51,103 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:51,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:51,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:51,104 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 9699328}
2022-05-12 22:23:51,104 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:53,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:53,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:53,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:53,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:53,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 9961472}
2022-05-12 22:23:53,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:53,551 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:53,551 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:53,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:53,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:53,552 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 1835008}
2022-05-12 22:23:53,552 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:53,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:23:53,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:53,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:23:53,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:23:53,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 18612224}
2022-05-12 22:23:53,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:54,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:54,594 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:54,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:54,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:54,595 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 26476544}
2022-05-12 22:23:54,595 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:54,724 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75759616}) to executor  for transfer request: 0.
2022-05-12 22:23:54,724 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:54,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) about to wait for the following futures []
2022-05-12 22:23:54,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) done waiting for dependent futures
2022-05-12 22:23:54,725 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75759616}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 75759616}
2022-05-12 22:23:54,725 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:54,820 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:54,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:54,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:54,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:54,821 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 10223616}
2022-05-12 22:23:54,822 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:23:55,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:23:55,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:23:55,364 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 2883584}
2022-05-12 22:23:55,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:56,618 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44040192}) to executor  for transfer request: 0.
2022-05-12 22:23:56,618 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:56,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) about to wait for the following futures []
2022-05-12 22:23:56,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) done waiting for dependent futures
2022-05-12 22:23:56,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44040192}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 44040192}
2022-05-12 22:23:56,619 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:57,073 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:23:57,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:57,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:23:57,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:23:57,073 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 26738688}
2022-05-12 22:23:57,074 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:57,346 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:23:57,347 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:57,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:23:57,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:23:57,347 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 18612224}
2022-05-12 22:23:57,348 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:57,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:23:57,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:57,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:23:57,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:23:57,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 27000832}
2022-05-12 22:23:57,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,905 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:23:58,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:23:58,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:23:58,906 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 27262976}
2022-05-12 22:23:58,906 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:58,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:58,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:58,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 1835008}
2022-05-12 22:23:58,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:59,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33816576}) to executor  for transfer request: 0.
2022-05-12 22:23:59,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:59,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) about to wait for the following futures []
2022-05-12 22:23:59,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) done waiting for dependent futures
2022-05-12 22:23:59,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33816576}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 33816576}
2022-05-12 22:23:59,139 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:59,205 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:59,205 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:59,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:59,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:59,206 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 18087936}
2022-05-12 22:23:59,206 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:59,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68681728}) to executor  for transfer request: 0.
2022-05-12 22:23:59,289 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:59,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) about to wait for the following futures []
2022-05-12 22:23:59,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) done waiting for dependent futures
2022-05-12 22:23:59,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68681728}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 68681728}
2022-05-12 22:23:59,290 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:02,547 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:24:02,547 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:02,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:24:02,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:24:02,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 9961472}
2022-05-12 22:24:02,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:04,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44302336}) to executor  for transfer request: 0.
2022-05-12 22:24:04,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:04,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) about to wait for the following futures []
2022-05-12 22:24:04,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) done waiting for dependent futures
2022-05-12 22:24:04,507 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44302336}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 44302336}
2022-05-12 22:24:04,507 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:05,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:24:05,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:05,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:24:05,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:24:05,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 9961472}
2022-05-12 22:24:05,811 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:05,951 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:24:05,951 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:05,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:24:05,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:24:05,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 10223616}
2022-05-12 22:24:05,952 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:06,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:06,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:06,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:06,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:06,802 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 18874368}
2022-05-12 22:24:06,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:07,343 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:07,343 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:07,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:07,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:07,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 10485760}
2022-05-12 22:24:07,344 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:07,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59244544}) to executor  for transfer request: 0.
2022-05-12 22:24:07,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:07,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) about to wait for the following futures []
2022-05-12 22:24:07,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) done waiting for dependent futures
2022-05-12 22:24:07,576 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59244544}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 59244544}
2022-05-12 22:24:07,576 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:08,499 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:24:08,499 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:08,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:24:08,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:24:08,499 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 1310720}
2022-05-12 22:24:08,500 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:24:09,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:24:09,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:24:09,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 26738688}
2022-05-12 22:24:09,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:24:09,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:24:09,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:24:09,743 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3145728}
2022-05-12 22:24:09,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:10,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:10,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:10,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:10,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:10,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 18874368}
2022-05-12 22:24:10,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:10,502 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68943872}) to executor  for transfer request: 0.
2022-05-12 22:24:10,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:10,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) about to wait for the following futures []
2022-05-12 22:24:10,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) done waiting for dependent futures
2022-05-12 22:24:10,503 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68943872}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 68943872}
2022-05-12 22:24:10,503 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,350 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:24:12,350 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:24:12,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:24:12,351 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 27262976}
2022-05-12 22:24:12,352 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,060 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:24:13,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:24:13,061 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:24:13,061 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 27000832}
2022-05-12 22:24:13,061 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,153 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44564480}) to executor  for transfer request: 0.
2022-05-12 22:24:13,153 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) about to wait for the following futures []
2022-05-12 22:24:13,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) done waiting for dependent futures
2022-05-12 22:24:13,154 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44564480}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 44564480}
2022-05-12 22:24:13,154 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:24:13,370 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:24:13,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:24:13,371 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 18350080}
2022-05-12 22:24:13,371 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:24:13,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:24:13,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:24:13,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 10223616}
2022-05-12 22:24:13,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76021760}) to executor  for transfer request: 0.
2022-05-12 22:24:13,986 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) about to wait for the following futures []
2022-05-12 22:24:13,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) done waiting for dependent futures
2022-05-12 22:24:13,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76021760}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 76021760}
2022-05-12 22:24:13,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:16,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:16,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:16,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:16,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:16,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 19136512}
2022-05-12 22:24:16,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:18,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:18,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:18,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:18,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:18,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 10747904}
2022-05-12 22:24:18,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:19,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:19,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:19,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:19,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:19,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 2097152}
2022-05-12 22:24:19,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:24:20,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:24:20,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:24:20,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3407872}
2022-05-12 22:24:20,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:24:20,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:24:20,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:24:20,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 27525120}
2022-05-12 22:24:20,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:24:20,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:24:20,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:24:20,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 10223616}
2022-05-12 22:24:20,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:24:20,466 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:24:20,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:24:20,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 27000832}
2022-05-12 22:24:20,467 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:21,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44826624}) to executor  for transfer request: 0.
2022-05-12 22:24:21,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:21,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) about to wait for the following futures []
2022-05-12 22:24:21,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) done waiting for dependent futures
2022-05-12 22:24:21,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44826624}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 44826624}
2022-05-12 22:24:21,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:22,187 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:22,187 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:22,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:22,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:22,188 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 19136512}
2022-05-12 22:24:22,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:22,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:24:22,508 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:22,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:24:22,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:24:22,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17301504}
2022-05-12 22:24:22,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:23,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:23,069 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:23,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:23,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:23,069 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 10485760}
2022-05-12 22:24:23,070 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:23,636 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69206016}) to executor  for transfer request: 0.
2022-05-12 22:24:23,636 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:23,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) about to wait for the following futures []
2022-05-12 22:24:23,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) done waiting for dependent futures
2022-05-12 22:24:23,637 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69206016}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 69206016}
2022-05-12 22:24:23,637 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:24:24,355 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:24:24,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:24:24,356 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 27525120}
2022-05-12 22:24:24,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:25,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:25,594 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:25,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:25,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:25,595 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 19398656}
2022-05-12 22:24:25,595 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,518 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76283904}) to executor  for transfer request: 0.
2022-05-12 22:24:26,518 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) about to wait for the following futures []
2022-05-12 22:24:26,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) done waiting for dependent futures
2022-05-12 22:24:26,519 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76283904}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 76283904}
2022-05-12 22:24:26,520 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:27,754 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:27,755 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:27,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:27,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:27,755 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 2097152}
2022-05-12 22:24:27,756 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:24:28,514 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:24:28,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:24:28,515 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3670016}
2022-05-12 22:24:28,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:24:28,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:24:28,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:24:28,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 27262976}
2022-05-12 22:24:28,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:29,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:29,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:29,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:29,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:29,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 10485760}
2022-05-12 22:24:29,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:29,338 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:24:29,339 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:29,339 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:24:29,339 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:24:29,339 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 18612224}
2022-05-12 22:24:29,340 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,276 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45088768}) to executor  for transfer request: 0.
2022-05-12 22:24:30,276 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) about to wait for the following futures []
2022-05-12 22:24:30,277 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) done waiting for dependent futures
2022-05-12 22:24:30,277 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45088768}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 45088768}
2022-05-12 22:24:30,277 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59506688}) to executor  for transfer request: 0.
2022-05-12 22:24:30,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) about to wait for the following futures []
2022-05-12 22:24:30,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) done waiting for dependent futures
2022-05-12 22:24:30,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59506688}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 59506688}
2022-05-12 22:24:30,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,349 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51642368}) to executor  for transfer request: 0.
2022-05-12 22:24:30,349 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) about to wait for the following futures []
2022-05-12 22:24:30,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) done waiting for dependent futures
2022-05-12 22:24:30,349 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51642368}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 51642368}
2022-05-12 22:24:30,350 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:31,343 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:31,343 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:31,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:31,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:31,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 19398656}
2022-05-12 22:24:31,344 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:31,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:31,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:31,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:31,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:31,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 11010048}
2022-05-12 22:24:31,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:32,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:24:32,076 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:32,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:24:32,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:24:32,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 27787264}
2022-05-12 22:24:32,078 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:33,152 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:33,152 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:33,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:33,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:33,153 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 10747904}
2022-05-12 22:24:33,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:34,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:24:34,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:34,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:24:34,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:24:34,584 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 19660800}
2022-05-12 22:24:34,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:37,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:24:37,497 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:37,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:24:37,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:24:37,498 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 3932160}
2022-05-12 22:24:37,498 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:37,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76546048}) to executor  for transfer request: 0.
2022-05-12 22:24:37,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:37,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) about to wait for the following futures []
2022-05-12 22:24:37,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) done waiting for dependent futures
2022-05-12 22:24:37,948 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76546048}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 76546048}
2022-05-12 22:24:37,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:38,793 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:38,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:38,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:38,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:38,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 10485760}
2022-05-12 22:24:38,793 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:38,882 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69468160}) to executor  for transfer request: 0.
2022-05-12 22:24:38,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:38,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) about to wait for the following futures []
2022-05-12 22:24:38,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) done waiting for dependent futures
2022-05-12 22:24:38,883 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69468160}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 69468160}
2022-05-12 22:24:38,883 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:41,057 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:24:41,057 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:41,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:24:41,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:24:41,058 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 27787264}
2022-05-12 22:24:41,058 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:41,938 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:24:41,938 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:41,939 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:24:41,939 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:24:41,939 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 19660800}
2022-05-12 22:24:41,939 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,169 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45350912}) to executor  for transfer request: 0.
2022-05-12 22:24:42,169 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) about to wait for the following futures []
2022-05-12 22:24:42,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) done waiting for dependent futures
2022-05-12 22:24:42,170 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45350912}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 45350912}
2022-05-12 22:24:42,170 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,290 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:42,290 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,291 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:42,291 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:42,291 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 11010048}
2022-05-12 22:24:42,291 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:43,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:24:43,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:43,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:24:43,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:24:43,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 27525120}
2022-05-12 22:24:43,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:44,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:44,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:44,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:44,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:44,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 10747904}
2022-05-12 22:24:44,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:45,805 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:24:45,805 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:45,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:24:45,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:24:45,806 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 28049408}
2022-05-12 22:24:45,806 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:46,088 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:46,088 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:46,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:46,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:46,088 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 2359296}
2022-05-12 22:24:46,089 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:46,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:24:46,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:46,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:24:46,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:24:46,549 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 1572864}
2022-05-12 22:24:46,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:46,840 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:24:46,841 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:46,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:24:46,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:24:46,841 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 19922944}
2022-05-12 22:24:46,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:47,063 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:24:47,063 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:47,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:24:47,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:24:47,064 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4194304}
2022-05-12 22:24:47,064 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:48,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:24:48,904 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:48,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:24:48,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:24:48,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 11272192}
2022-05-12 22:24:48,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:50,504 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:24:50,504 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:50,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:24:50,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:24:50,506 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 28049408}
2022-05-12 22:24:50,506 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:51,061 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:51,061 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:51,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:51,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:51,062 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 10747904}
2022-05-12 22:24:51,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:51,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:24:51,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:51,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:24:51,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:24:51,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 11272192}
2022-05-12 22:24:51,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:51,174 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76808192}) to executor  for transfer request: 0.
2022-05-12 22:24:51,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:51,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) about to wait for the following futures []
2022-05-12 22:24:51,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) done waiting for dependent futures
2022-05-12 22:24:51,175 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76808192}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 76808192}
2022-05-12 22:24:51,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:51,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:24:51,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:51,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:24:51,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:24:51,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 19922944}
2022-05-12 22:24:51,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45613056}) to executor  for transfer request: 0.
2022-05-12 22:24:52,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) about to wait for the following futures []
2022-05-12 22:24:52,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) done waiting for dependent futures
2022-05-12 22:24:52,410 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45613056}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 45613056}
2022-05-12 22:24:52,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,086 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:24:53,087 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:24:53,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:24:53,087 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 27262976}
2022-05-12 22:24:53,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59768832}) to executor  for transfer request: 0.
2022-05-12 22:24:53,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) about to wait for the following futures []
2022-05-12 22:24:53,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) done waiting for dependent futures
2022-05-12 22:24:53,443 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59768832}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 59768832}
2022-05-12 22:24:53,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,780 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69730304}) to executor  for transfer request: 0.
2022-05-12 22:24:53,780 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) about to wait for the following futures []
2022-05-12 22:24:53,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) done waiting for dependent futures
2022-05-12 22:24:53,781 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69730304}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 69730304}
2022-05-12 22:24:53,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:55,420 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:24:55,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:55,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:24:55,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:24:55,421 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 11534336}
2022-05-12 22:24:55,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:56,906 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:24:56,906 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:56,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:24:56,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:24:56,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 20185088}
2022-05-12 22:24:56,907 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,680 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:24:58,680 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:24:58,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:24:58,680 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17563648}
2022-05-12 22:24:58,681 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,726 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:24:58,726 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:24:58,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:24:58,727 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 27787264}
2022-05-12 22:24:58,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:24:58,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:24:58,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:24:58,761 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 20185088}
2022-05-12 22:24:58,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:59,120 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:24:59,120 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:59,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:24:59,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:24:59,121 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4456448}
2022-05-12 22:24:59,121 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:01,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:25:01,663 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:01,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:25:01,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:25:01,663 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 11010048}
2022-05-12 22:25:01,664 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,153 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:25:02,153 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:25:02,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:25:02,154 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 28311552}
2022-05-12 22:25:02,154 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,275 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45875200}) to executor  for transfer request: 0.
2022-05-12 22:25:02,275 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) about to wait for the following futures []
2022-05-12 22:25:02,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) done waiting for dependent futures
2022-05-12 22:25:02,276 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45875200}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 45875200}
2022-05-12 22:25:02,276 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,371 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:25:02,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:25:02,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:25:02,372 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 28311552}
2022-05-12 22:25:02,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:03,022 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69992448}) to executor  for transfer request: 0.
2022-05-12 22:25:03,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:03,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) about to wait for the following futures []
2022-05-12 22:25:03,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) done waiting for dependent futures
2022-05-12 22:25:03,023 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69992448}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 69992448}
2022-05-12 22:25:03,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:03,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:03,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:03,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:03,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:03,036 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 11796480}
2022-05-12 22:25:03,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:03,636 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:25:03,636 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:03,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:25:03,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:25:03,637 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 18874368}
2022-05-12 22:25:03,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:03,842 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34078720}) to executor  for transfer request: 0.
2022-05-12 22:25:03,842 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:03,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) about to wait for the following futures []
2022-05-12 22:25:03,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) done waiting for dependent futures
2022-05-12 22:25:03,843 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34078720}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 34078720}
2022-05-12 22:25:03,843 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:25:04,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:25:04,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:25:04,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 11010048}
2022-05-12 22:25:04,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,369 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:04,369 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:04,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:04,370 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 20447232}
2022-05-12 22:25:04,370 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:05,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:25:05,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:05,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:25:05,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:25:05,184 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 2359296}
2022-05-12 22:25:05,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:06,779 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77070336}) to executor  for transfer request: 0.
2022-05-12 22:25:06,780 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:06,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) about to wait for the following futures []
2022-05-12 22:25:06,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) done waiting for dependent futures
2022-05-12 22:25:06,780 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77070336}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 77070336}
2022-05-12 22:25:06,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:08,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:08,621 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:08,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:08,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:08,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 20447232}
2022-05-12 22:25:08,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60030976}) to executor  for transfer request: 0.
2022-05-12 22:25:09,219 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) about to wait for the following futures []
2022-05-12 22:25:09,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) done waiting for dependent futures
2022-05-12 22:25:09,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60030976}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 60030976}
2022-05-12 22:25:09,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,365 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:25:09,365 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:25:09,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:25:09,366 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 11534336}
2022-05-12 22:25:09,366 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:25:09,646 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:25:09,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:25:09,647 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 2621440}
2022-05-12 22:25:09,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,799 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:25:09,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:25:09,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:25:09,799 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4718592}
2022-05-12 22:25:09,799 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:10,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46137344}) to executor  for transfer request: 0.
2022-05-12 22:25:10,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:10,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) about to wait for the following futures []
2022-05-12 22:25:10,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) done waiting for dependent futures
2022-05-12 22:25:10,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46137344}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 46137344}
2022-05-12 22:25:10,175 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,706 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:25:12,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:25:12,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:25:12,706 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 27525120}
2022-05-12 22:25:12,707 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:13,215 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:25:13,215 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:13,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:25:13,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:25:13,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 28573696}
2022-05-12 22:25:13,216 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:14,618 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51904512}) to executor  for transfer request: 0.
2022-05-12 22:25:14,619 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:14,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) about to wait for the following futures []
2022-05-12 22:25:14,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) done waiting for dependent futures
2022-05-12 22:25:14,619 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51904512}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 51904512}
2022-05-12 22:25:14,620 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:14,748 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:14,748 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:14,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:14,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:14,749 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 12058624}
2022-05-12 22:25:14,749 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:16,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:25:16,273 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:16,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:25:16,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:25:16,273 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 20709376}
2022-05-12 22:25:16,274 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:16,409 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:25:16,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:16,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:25:16,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:25:16,410 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 11272192}
2022-05-12 22:25:16,410 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:25:17,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:25:17,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:25:17,326 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 11272192}
2022-05-12 22:25:17,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70254592}) to executor  for transfer request: 0.
2022-05-12 22:25:17,330 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) about to wait for the following futures []
2022-05-12 22:25:17,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) done waiting for dependent futures
2022-05-12 22:25:17,330 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70254592}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 70254592}
2022-05-12 22:25:17,331 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,624 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:25:17,624 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:25:17,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:25:17,625 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 1835008}
2022-05-12 22:25:17,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,724 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46399488}) to executor  for transfer request: 0.
2022-05-12 22:25:17,724 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) about to wait for the following futures []
2022-05-12 22:25:17,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) done waiting for dependent futures
2022-05-12 22:25:17,725 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46399488}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 46399488}
2022-05-12 22:25:17,726 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:17,841 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:17,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:17,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 11796480}
2022-05-12 22:25:17,843 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,269 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:25:18,269 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:25:18,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:25:18,270 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 28049408}
2022-05-12 22:25:18,270 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,347 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:25:18,348 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:25:18,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:25:18,348 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 28573696}
2022-05-12 22:25:18,348 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,598 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77332480}) to executor  for transfer request: 0.
2022-05-12 22:25:18,598 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) about to wait for the following futures []
2022-05-12 22:25:18,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) done waiting for dependent futures
2022-05-12 22:25:18,599 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77332480}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 77332480}
2022-05-12 22:25:18,600 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:25:18,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:25:18,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:25:18,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 4980736}
2022-05-12 22:25:18,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:20,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:25:20,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:20,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:25:20,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:25:20,709 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 20709376}
2022-05-12 22:25:20,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:21,769 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:25:21,769 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:21,770 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:25:21,770 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:25:21,770 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 2883584}
2022-05-12 22:25:21,770 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,604 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:25:24,604 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:25:24,605 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:25:24,605 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 28835840}
2022-05-12 22:25:24,605 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:25,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:25:25,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:25,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:25:25,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:25:25,443 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 20971520}
2022-05-12 22:25:25,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:25,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34340864}) to executor  for transfer request: 0.
2022-05-12 22:25:25,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:25,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) about to wait for the following futures []
2022-05-12 22:25:25,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) done waiting for dependent futures
2022-05-12 22:25:25,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34340864}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 34340864}
2022-05-12 22:25:25,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:26,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:26,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:26,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:26,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:26,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 12058624}
2022-05-12 22:25:26,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:26,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:26,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:26,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:26,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:26,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 12320768}
2022-05-12 22:25:26,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:27,121 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:25:27,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:27,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:25:27,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:25:27,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 5242880}
2022-05-12 22:25:27,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:27,579 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46661632}) to executor  for transfer request: 0.
2022-05-12 22:25:27,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:27,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) about to wait for the following futures []
2022-05-12 22:25:27,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) done waiting for dependent futures
2022-05-12 22:25:27,580 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46661632}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 46661632}
2022-05-12 22:25:27,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:27,823 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:25:27,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:27,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:25:27,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:25:27,824 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 11534336}
2022-05-12 22:25:27,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:28,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:25:28,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:28,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:25:28,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:25:28,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 11534336}
2022-05-12 22:25:28,916 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:29,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:25:29,154 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:29,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:25:29,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:25:29,155 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 17825792}
2022-05-12 22:25:29,155 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:29,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:25:29,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:29,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:25:29,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:25:29,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 20971520}
2022-05-12 22:25:29,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:29,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60293120}) to executor  for transfer request: 0.
2022-05-12 22:25:29,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:29,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) about to wait for the following futures []
2022-05-12 22:25:29,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) done waiting for dependent futures
2022-05-12 22:25:29,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60293120}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 60293120}
2022-05-12 22:25:29,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:30,244 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70516736}) to executor  for transfer request: 0.
2022-05-12 22:25:30,245 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:30,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) about to wait for the following futures []
2022-05-12 22:25:30,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) done waiting for dependent futures
2022-05-12 22:25:30,245 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70516736}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 70516736}
2022-05-12 22:25:30,246 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:30,361 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:25:30,361 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:30,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:25:30,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:25:30,362 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 27787264}
2022-05-12 22:25:30,362 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:32,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:25:32,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:32,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:25:32,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:25:32,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 28311552}
2022-05-12 22:25:32,012 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:33,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:25:33,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:33,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:25:33,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:25:33,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 21233664}
2022-05-12 22:25:33,495 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:35,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:25:35,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:35,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:25:35,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:25:35,127 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 29097984}
2022-05-12 22:25:35,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:35,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46923776}) to executor  for transfer request: 0.
2022-05-12 22:25:35,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:35,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) about to wait for the following futures []
2022-05-12 22:25:35,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) done waiting for dependent futures
2022-05-12 22:25:35,364 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46923776}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 46923776}
2022-05-12 22:25:35,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,021 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:25:36,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:25:36,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:25:36,022 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 28835840}
2022-05-12 22:25:36,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:25:36,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:25:36,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:25:36,331 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 5505024}
2022-05-12 22:25:36,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,361 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:36,361 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:36,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:36,362 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 12582912}
2022-05-12 22:25:36,362 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,545 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34603008}) to executor  for transfer request: 0.
2022-05-12 22:25:36,545 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) about to wait for the following futures []
2022-05-12 22:25:36,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) done waiting for dependent futures
2022-05-12 22:25:36,546 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34603008}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 34603008}
2022-05-12 22:25:36,546 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:38,043 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60555264}) to executor  for transfer request: 0.
2022-05-12 22:25:38,043 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:38,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) about to wait for the following futures []
2022-05-12 22:25:38,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) done waiting for dependent futures
2022-05-12 22:25:38,044 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60555264}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 60555264}
2022-05-12 22:25:38,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:39,481 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:25:39,482 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:39,482 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:25:39,482 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:25:39,482 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 3145728}
2022-05-12 22:25:39,483 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:39,702 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:25:39,703 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:39,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:25:39,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:25:39,703 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 28573696}
2022-05-12 22:25:39,704 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:39,975 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:25:39,975 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:39,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:25:39,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:25:39,976 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 21233664}
2022-05-12 22:25:39,976 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:40,308 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:40,308 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:40,309 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:40,309 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:40,309 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 12320768}
2022-05-12 22:25:40,309 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:42,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:42,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:42,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:42,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:42,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 11796480}
2022-05-12 22:25:42,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:42,345 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:42,345 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:42,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:42,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:42,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 11796480}
2022-05-12 22:25:42,346 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:42,490 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:25:42,490 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:42,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:25:42,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:25:42,491 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 21495808}
2022-05-12 22:25:42,491 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:43,386 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:25:43,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:43,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:25:43,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:25:43,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 19136512}
2022-05-12 22:25:43,387 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,471 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70778880}) to executor  for transfer request: 0.
2022-05-12 22:25:44,472 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,472 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) about to wait for the following futures []
2022-05-12 22:25:44,472 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) done waiting for dependent futures
2022-05-12 22:25:44,472 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70778880}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 70778880}
2022-05-12 22:25:44,473 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,737 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:25:44,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:25:44,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:25:44,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 2097152}
2022-05-12 22:25:44,738 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:45,017 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:25:45,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:45,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:25:45,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:25:45,018 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 5767168}
2022-05-12 22:25:45,019 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:45,457 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47185920}) to executor  for transfer request: 0.
2022-05-12 22:25:45,457 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:45,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) about to wait for the following futures []
2022-05-12 22:25:45,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) done waiting for dependent futures
2022-05-12 22:25:45,458 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47185920}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 47185920}
2022-05-12 22:25:45,458 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:46,866 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52166656}) to executor  for transfer request: 0.
2022-05-12 22:25:46,866 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:46,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) about to wait for the following futures []
2022-05-12 22:25:46,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) done waiting for dependent futures
2022-05-12 22:25:46,867 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52166656}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 52166656}
2022-05-12 22:25:46,867 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:47,262 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:25:47,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:47,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:25:47,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:25:47,263 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 12845056}
2022-05-12 22:25:47,263 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:47,788 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:25:47,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:47,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:25:47,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:25:47,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 2621440}
2022-05-12 22:25:47,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:48,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:25:48,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:48,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:25:48,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:25:48,226 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 28049408}
2022-05-12 22:25:48,226 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:49,443 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:25:49,443 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:49,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:25:49,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:25:49,444 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 29097984}
2022-05-12 22:25:49,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:49,850 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:25:49,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:49,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:25:49,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:25:49,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 21495808}
2022-05-12 22:25:49,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,258 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:50,259 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:50,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:50,261 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 12582912}
2022-05-12 22:25:50,261 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,451 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:50,451 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:50,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:50,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 3407872}
2022-05-12 22:25:50,452 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,546 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:25:50,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:25:50,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:25:50,547 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 29360128}
2022-05-12 22:25:50,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:25:50,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:25:50,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:25:50,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 28835840}
2022-05-12 22:25:50,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:52,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:25:52,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:52,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:25:52,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:25:52,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 6029312}
2022-05-12 22:25:52,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:53,815 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47448064}) to executor  for transfer request: 0.
2022-05-12 22:25:53,815 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:53,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) about to wait for the following futures []
2022-05-12 22:25:53,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) done waiting for dependent futures
2022-05-12 22:25:53,815 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47448064}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 47448064}
2022-05-12 22:25:53,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:54,978 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:25:54,978 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:54,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:25:54,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:25:54,979 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 21757952}
2022-05-12 22:25:54,979 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:56,075 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:56,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:56,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:56,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:56,076 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 12058624}
2022-05-12 22:25:56,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:56,197 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:25:56,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:56,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:25:56,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:25:56,198 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 19398656}
2022-05-12 22:25:56,199 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:56,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77594624}) to executor  for transfer request: 0.
2022-05-12 22:25:56,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:56,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) about to wait for the following futures []
2022-05-12 22:25:56,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) done waiting for dependent futures
2022-05-12 22:25:56,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77594624}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 77594624}
2022-05-12 22:25:56,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:56,763 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71041024}) to executor  for transfer request: 0.
2022-05-12 22:25:56,763 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:56,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) about to wait for the following futures []
2022-05-12 22:25:56,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) done waiting for dependent futures
2022-05-12 22:25:56,763 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71041024}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 71041024}
2022-05-12 22:25:56,764 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:57,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:57,011 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:57,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:57,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:57,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 12058624}
2022-05-12 22:25:57,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:57,955 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34865152}) to executor  for transfer request: 0.
2022-05-12 22:25:57,955 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:57,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) about to wait for the following futures []
2022-05-12 22:25:57,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) done waiting for dependent futures
2022-05-12 22:25:57,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34865152}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 34865152}
2022-05-12 22:25:57,956 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:58,187 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:25:58,187 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:58,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:25:58,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:25:58,188 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 21757952}
2022-05-12 22:25:58,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:59,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:25:59,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:59,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:25:59,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:25:59,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 12845056}
2022-05-12 22:25:59,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:59,408 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:25:59,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:59,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:25:59,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:25:59,408 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 3670016}
2022-05-12 22:25:59,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:59,623 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60817408}) to executor  for transfer request: 0.
2022-05-12 22:25:59,623 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:59,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) about to wait for the following futures []
2022-05-12 22:25:59,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) done waiting for dependent futures
2022-05-12 22:25:59,624 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60817408}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 60817408}
2022-05-12 22:25:59,624 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:59,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:25:59,644 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:59,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:25:59,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:25:59,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 29097984}
2022-05-12 22:25:59,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:00,117 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:26:00,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:00,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:26:00,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:26:00,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 13107200}
2022-05-12 22:26:00,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:00,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:26:00,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:00,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:26:00,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:26:00,146 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 29622272}
2022-05-12 22:26:00,147 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:02,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:26:02,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:02,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:26:02,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:26:02,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 29360128}
2022-05-12 22:26:02,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:02,668 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:26:02,668 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:02,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:26:02,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:26:02,668 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 6291456}
2022-05-12 22:26:02,669 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,522 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47710208}) to executor  for transfer request: 0.
2022-05-12 22:26:04,522 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) about to wait for the following futures []
2022-05-12 22:26:04,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) done waiting for dependent futures
2022-05-12 22:26:04,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47710208}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 47710208}
2022-05-12 22:26:04,523 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:06,316 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:26:06,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:06,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:26:06,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:26:06,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 28311552}
2022-05-12 22:26:06,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:06,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:26:06,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:06,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:26:06,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:26:06,484 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 22020096}
2022-05-12 22:26:06,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:07,218 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:26:07,218 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:07,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:26:07,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:26:07,219 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 12320768}
2022-05-12 22:26:07,219 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,090 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:26:08,090 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:26:08,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:26:08,091 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 12320768}
2022-05-12 22:26:08,091 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,189 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:26:08,189 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:26:08,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:26:08,190 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 13107200}
2022-05-12 22:26:08,190 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:26:09,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:26:09,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:26:09,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 22020096}
2022-05-12 22:26:09,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:09,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:09,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:09,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 13369344}
2022-05-12 22:26:09,463 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,552 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:26:09,552 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:26:09,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:26:09,553 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 29360128}
2022-05-12 22:26:09,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,995 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:26:09,995 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:26:09,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:26:09,996 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 2359296}
2022-05-12 22:26:09,996 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:11,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:26:11,994 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:11,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:26:11,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:26:11,994 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 6553600}
2022-05-12 22:26:11,995 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:12,195 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:26:12,195 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:12,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:26:12,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:26:12,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 29884416}
2022-05-12 22:26:12,196 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:12,496 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:26:12,496 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:12,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:26:12,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:26:12,497 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 19660800}
2022-05-12 22:26:12,497 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:13,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61079552}) to executor  for transfer request: 0.
2022-05-12 22:26:13,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:13,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) about to wait for the following futures []
2022-05-12 22:26:13,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) done waiting for dependent futures
2022-05-12 22:26:13,184 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61079552}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 61079552}
2022-05-12 22:26:13,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:13,418 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71303168}) to executor  for transfer request: 0.
2022-05-12 22:26:13,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:13,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) about to wait for the following futures []
2022-05-12 22:26:13,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) done waiting for dependent futures
2022-05-12 22:26:13,419 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71303168}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 71303168}
2022-05-12 22:26:13,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:13,614 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47972352}) to executor  for transfer request: 0.
2022-05-12 22:26:13,615 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:13,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) about to wait for the following futures []
2022-05-12 22:26:13,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) done waiting for dependent futures
2022-05-12 22:26:13,615 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47972352}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 47972352}
2022-05-12 22:26:13,615 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:14,057 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77856768}) to executor  for transfer request: 0.
2022-05-12 22:26:14,058 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:14,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) about to wait for the following futures []
2022-05-12 22:26:14,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) done waiting for dependent futures
2022-05-12 22:26:14,058 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77856768}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 77856768}
2022-05-12 22:26:14,059 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:14,687 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52428800}) to executor  for transfer request: 0.
2022-05-12 22:26:14,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:14,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) about to wait for the following futures []
2022-05-12 22:26:14,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) done waiting for dependent futures
2022-05-12 22:26:14,688 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52428800}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 52428800}
2022-05-12 22:26:14,688 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:15,225 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:26:15,225 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:15,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:26:15,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:26:15,226 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 3932160}
2022-05-12 22:26:15,226 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:15,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:26:15,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:15,293 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:15,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:26:15,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:26:15,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 30146560}
2022-05-12 22:26:15,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:16,459 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:16,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:16,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:16,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:16,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 13631488}
2022-05-12 22:26:16,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:17,220 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:26:17,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:17,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:26:17,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:26:17,221 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 29622272}
2022-05-12 22:26:17,221 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:17,307 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35127296}) to executor  for transfer request: 0.
2022-05-12 22:26:17,307 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:17,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) about to wait for the following futures []
2022-05-12 22:26:17,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) done waiting for dependent futures
2022-05-12 22:26:17,308 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35127296}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 35127296}
2022-05-12 22:26:17,308 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:17,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:26:17,646 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:17,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:26:17,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:26:17,647 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 22282240}
2022-05-12 22:26:17,647 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:19,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:26:19,222 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:19,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:26:19,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:26:19,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 22282240}
2022-05-12 22:26:19,223 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,668 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:26:20,669 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,669 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:26:20,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:26:20,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 6815744}
2022-05-12 22:26:20,670 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:26:20,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:26:20,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:26:20,913 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 29622272}
2022-05-12 22:26:20,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:22,043 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:22,043 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:22,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:22,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:22,044 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 13369344}
2022-05-12 22:26:22,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:23,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:26:23,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:23,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:26:23,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:26:23,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 12582912}
2022-05-12 22:26:23,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:24,416 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71565312}) to executor  for transfer request: 0.
2022-05-12 22:26:24,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:24,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) about to wait for the following futures []
2022-05-12 22:26:24,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) done waiting for dependent futures
2022-05-12 22:26:24,417 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71565312}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 71565312}
2022-05-12 22:26:24,418 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:25,559 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48234496}) to executor  for transfer request: 0.
2022-05-12 22:26:25,559 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:25,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) about to wait for the following futures []
2022-05-12 22:26:25,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) done waiting for dependent futures
2022-05-12 22:26:25,560 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48234496}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 48234496}
2022-05-12 22:26:25,560 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:26,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:26:26,685 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:26,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:26:26,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:26:26,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 28573696}
2022-05-12 22:26:26,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:26:27,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:26:27,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:26:27,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 22544384}
2022-05-12 22:26:27,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,664 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52690944}) to executor  for transfer request: 0.
2022-05-12 22:26:27,664 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) about to wait for the following futures []
2022-05-12 22:26:27,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) done waiting for dependent futures
2022-05-12 22:26:27,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52690944}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 52690944}
2022-05-12 22:26:27,665 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:28,142 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:28,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:28,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:28,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:28,143 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 13893632}
2022-05-12 22:26:28,143 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:28,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:26:28,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:28,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:26:28,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:26:28,927 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 4194304}
2022-05-12 22:26:28,927 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:29,929 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:26:29,929 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:29,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:26:29,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:26:29,930 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 22544384}
2022-05-12 22:26:29,930 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:26:30,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:26:30,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:26:30,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 12582912}
2022-05-12 22:26:30,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:26:30,648 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:26:30,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:26:30,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 19922944}
2022-05-12 22:26:30,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:26:31,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:26:31,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:26:31,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18087936}
2022-05-12 22:26:31,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:26:31,646 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:26:31,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:26:31,646 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 29884416}
2022-05-12 22:26:31,646 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,244 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:26:32,245 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:26:32,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:26:32,245 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 7077888}
2022-05-12 22:26:32,246 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,621 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78118912}) to executor  for transfer request: 0.
2022-05-12 22:26:32,622 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) about to wait for the following futures []
2022-05-12 22:26:32,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) done waiting for dependent futures
2022-05-12 22:26:32,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78118912}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 78118912}
2022-05-12 22:26:32,623 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,899 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:32,900 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:32,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:32,900 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 13631488}
2022-05-12 22:26:32,901 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:34,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:26:34,146 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:34,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:26:34,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:26:34,146 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 29884416}
2022-05-12 22:26:34,147 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:34,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48496640}) to executor  for transfer request: 0.
2022-05-12 22:26:34,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:34,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) about to wait for the following futures []
2022-05-12 22:26:34,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) done waiting for dependent futures
2022-05-12 22:26:34,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48496640}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 48496640}
2022-05-12 22:26:34,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:35,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35389440}) to executor  for transfer request: 0.
2022-05-12 22:26:35,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:35,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) about to wait for the following futures []
2022-05-12 22:26:35,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) done waiting for dependent futures
2022-05-12 22:26:35,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35389440}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 35389440}
2022-05-12 22:26:35,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:36,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:26:36,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:36,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:26:36,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:26:36,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 12845056}
2022-05-12 22:26:36,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:26:37,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:37,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:26:37,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:26:37,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 30146560}
2022-05-12 22:26:37,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,722 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:26:37,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:37,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:26:37,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:26:37,723 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 22806528}
2022-05-12 22:26:37,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:26:37,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:37,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:26:37,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:26:37,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 22806528}
2022-05-12 22:26:37,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:38,884 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71827456}) to executor  for transfer request: 0.
2022-05-12 22:26:38,884 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:38,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) about to wait for the following futures []
2022-05-12 22:26:38,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) done waiting for dependent futures
2022-05-12 22:26:38,885 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71827456}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 71827456}
2022-05-12 22:26:38,885 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,176 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:26:40,177 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:26:40,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:26:40,178 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 7340032}
2022-05-12 22:26:40,178 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52953088}) to executor  for transfer request: 0.
2022-05-12 22:26:40,360 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) about to wait for the following futures []
2022-05-12 22:26:40,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) done waiting for dependent futures
2022-05-12 22:26:40,361 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52953088}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 52953088}
2022-05-12 22:26:40,361 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,525 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:26:40,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:26:40,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:26:40,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 14155776}
2022-05-12 22:26:40,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,663 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:40,663 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:40,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:40,664 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 13893632}
2022-05-12 22:26:40,664 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,431 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:26:41,431 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:26:41,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:26:41,432 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 4456448}
2022-05-12 22:26:41,432 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:42,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48758784}) to executor  for transfer request: 0.
2022-05-12 22:26:42,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:42,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) about to wait for the following futures []
2022-05-12 22:26:42,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) done waiting for dependent futures
2022-05-12 22:26:42,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48758784}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 48758784}
2022-05-12 22:26:42,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:42,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:26:42,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:42,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:26:42,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:26:42,178 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 23068672}
2022-05-12 22:26:42,178 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:43,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:26:43,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:43,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:26:43,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:26:43,858 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 12845056}
2022-05-12 22:26:43,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:44,406 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:26:44,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:44,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:26:44,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:26:44,406 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 20185088}
2022-05-12 22:26:44,406 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:45,563 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:26:45,564 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:45,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:26:45,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:26:45,564 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 30146560}
2022-05-12 22:26:45,565 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:46,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:26:46,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:46,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:26:46,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:26:46,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 23068672}
2022-05-12 22:26:46,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:47,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:26:47,179 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:47,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:26:47,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:26:47,179 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 28835840}
2022-05-12 22:26:47,180 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:48,385 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:26:48,385 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:48,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:26:48,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:26:48,386 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 2621440}
2022-05-12 22:26:48,386 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:48,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:26:48,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:48,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:26:48,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:26:48,515 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 14417920}
2022-05-12 22:26:48,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:50,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35651584}) to executor  for transfer request: 0.
2022-05-12 22:26:50,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:50,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) about to wait for the following futures []
2022-05-12 22:26:50,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) done waiting for dependent futures
2022-05-12 22:26:50,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35651584}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 35651584}
2022-05-12 22:26:50,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:50,825 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:26:50,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:50,826 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:26:50,826 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:26:50,826 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 7602176}
2022-05-12 22:26:50,826 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:51,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72089600}) to executor  for transfer request: 0.
2022-05-12 22:26:51,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:51,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) about to wait for the following futures []
2022-05-12 22:26:51,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) done waiting for dependent futures
2022-05-12 22:26:51,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72089600}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 72089600}
2022-05-12 22:26:51,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:52,070 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:52,070 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:52,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:52,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:52,071 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 4718592}
2022-05-12 22:26:52,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:52,090 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49020928}) to executor  for transfer request: 0.
2022-05-12 22:26:52,090 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:52,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) about to wait for the following futures []
2022-05-12 22:26:52,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) done waiting for dependent futures
2022-05-12 22:26:52,091 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49020928}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 49020928}
2022-05-12 22:26:52,091 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:53,691 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:26:53,691 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:53,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:26:53,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:26:53,691 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 13107200}
2022-05-12 22:26:53,692 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:53,831 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:26:53,831 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:53,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:26:53,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:26:53,832 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 14155776}
2022-05-12 22:26:53,832 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:53,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30408704}) to executor  for transfer request: 0.
2022-05-12 22:26:53,990 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:53,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) about to wait for the following futures []
2022-05-12 22:26:53,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) done waiting for dependent futures
2022-05-12 22:26:53,990 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30408704}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 30408704}
2022-05-12 22:26:53,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:54,501 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78381056}) to executor  for transfer request: 0.
2022-05-12 22:26:54,501 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:54,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) about to wait for the following futures []
2022-05-12 22:26:54,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) done waiting for dependent futures
2022-05-12 22:26:54,502 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78381056}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 78381056}
2022-05-12 22:26:54,502 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:54,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:26:54,637 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:54,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:26:54,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:26:54,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 23330816}
2022-05-12 22:26:54,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:55,651 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:26:55,652 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:55,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:26:55,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:26:55,652 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 23330816}
2022-05-12 22:26:55,652 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:55,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53215232}) to executor  for transfer request: 0.
2022-05-12 22:26:55,817 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:55,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) about to wait for the following futures []
2022-05-12 22:26:55,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) done waiting for dependent futures
2022-05-12 22:26:55,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53215232}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 53215232}
2022-05-12 22:26:55,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:56,522 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:26:56,522 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:56,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:26:56,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:26:56,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 14680064}
2022-05-12 22:26:56,523 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49283072}) to executor  for transfer request: 0.
2022-05-12 22:27:01,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) about to wait for the following futures []
2022-05-12 22:27:01,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) done waiting for dependent futures
2022-05-12 22:27:01,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49283072}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 49283072}
2022-05-12 22:27:01,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,070 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:27:01,070 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:27:01,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:27:01,071 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 20447232}
2022-05-12 22:27:01,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,266 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:27:01,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:27:01,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:27:01,267 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 7864320}
2022-05-12 22:27:01,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:02,477 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:27:02,477 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:02,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:27:02,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:27:02,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 13369344}
2022-05-12 22:27:02,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:03,260 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:27:03,260 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:03,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:27:03,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:27:03,261 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 4980736}
2022-05-12 22:27:03,261 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:03,856 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35913728}) to executor  for transfer request: 0.
2022-05-12 22:27:03,856 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:03,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) about to wait for the following futures []
2022-05-12 22:27:03,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) done waiting for dependent futures
2022-05-12 22:27:03,857 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35913728}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 35913728}
2022-05-12 22:27:03,858 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:04,012 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:27:04,013 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:04,013 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:27:04,013 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:27:04,013 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 23592960}
2022-05-12 22:27:04,014 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:04,973 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:27:04,973 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:04,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:27:04,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:27:04,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 14417920}
2022-05-12 22:27:04,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:04,998 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:27:04,998 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:04,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:27:04,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:27:04,999 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 13107200}
2022-05-12 22:27:04,999 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:05,103 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30670848}) to executor  for transfer request: 0.
2022-05-12 22:27:05,104 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:05,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) about to wait for the following futures []
2022-05-12 22:27:05,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) done waiting for dependent futures
2022-05-12 22:27:05,104 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30670848}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 30670848}
2022-05-12 22:27:05,105 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:05,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:27:05,933 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:05,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:27:05,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:27:05,934 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 23592960}
2022-05-12 22:27:05,934 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:06,196 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72351744}) to executor  for transfer request: 0.
2022-05-12 22:27:06,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:06,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) about to wait for the following futures []
2022-05-12 22:27:06,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) done waiting for dependent futures
2022-05-12 22:27:06,197 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72351744}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 72351744}
2022-05-12 22:27:06,198 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:07,255 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61341696}) to executor  for transfer request: 0.
2022-05-12 22:27:07,256 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:07,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) about to wait for the following futures []
2022-05-12 22:27:07,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) done waiting for dependent futures
2022-05-12 22:27:07,256 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61341696}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 61341696}
2022-05-12 22:27:07,257 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:07,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:27:07,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:07,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:27:07,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:27:07,663 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 14942208}
2022-05-12 22:27:07,664 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:08,663 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49545216}) to executor  for transfer request: 0.
2022-05-12 22:27:08,663 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:08,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) about to wait for the following futures []
2022-05-12 22:27:08,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) done waiting for dependent futures
2022-05-12 22:27:08,663 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49545216}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 49545216}
2022-05-12 22:27:08,664 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:09,529 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:27:09,530 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:09,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:27:09,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:27:09,530 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 2883584}
2022-05-12 22:27:09,530 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:09,706 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:27:09,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:09,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:27:09,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:27:09,706 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 29097984}
2022-05-12 22:27:09,707 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:11,873 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78643200}) to executor  for transfer request: 0.
2022-05-12 22:27:11,873 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:11,873 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) about to wait for the following futures []
2022-05-12 22:27:11,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) done waiting for dependent futures
2022-05-12 22:27:11,874 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78643200}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 78643200}
2022-05-12 22:27:11,874 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:12,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:27:12,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:12,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:12,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:27:12,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:27:12,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 8126464}
2022-05-12 22:27:12,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,054 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:27:14,054 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:14,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:27:14,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:27:14,055 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 13631488}
2022-05-12 22:27:14,055 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,434 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:27:14,434 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:14,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:27:14,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:27:14,434 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 14680064}
2022-05-12 22:27:14,434 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:27:14,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:14,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:27:14,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:27:14,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 23855104}
2022-05-12 22:27:14,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:15,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72613888}) to executor  for transfer request: 0.
2022-05-12 22:27:15,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:15,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) about to wait for the following futures []
2022-05-12 22:27:15,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) done waiting for dependent futures
2022-05-12 22:27:15,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72613888}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 72613888}
2022-05-12 22:27:15,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:15,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:27:15,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:15,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:27:15,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:27:15,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 23855104}
2022-05-12 22:27:15,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,129 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49807360}) to executor  for transfer request: 0.
2022-05-12 22:27:16,129 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) about to wait for the following futures []
2022-05-12 22:27:16,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) done waiting for dependent futures
2022-05-12 22:27:16,130 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49807360}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 49807360}
2022-05-12 22:27:16,130 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30932992}) to executor  for transfer request: 0.
2022-05-12 22:27:16,187 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) about to wait for the following futures []
2022-05-12 22:27:16,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) done waiting for dependent futures
2022-05-12 22:27:16,187 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30932992}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 30932992}
2022-05-12 22:27:16,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:27:17,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:27:17,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:27:17,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 2883584}
2022-05-12 22:27:17,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:27:17,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:27:17,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:27:17,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 15204352}
2022-05-12 22:27:17,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,837 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:27:17,837 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:27:17,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:27:17,837 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 5242880}
2022-05-12 22:27:17,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:20,584 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:27:20,584 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:20,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:27:20,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:27:20,585 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 20709376}
2022-05-12 22:27:20,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:23,717 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31195136}) to executor  for transfer request: 0.
2022-05-12 22:27:23,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:23,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) about to wait for the following futures []
2022-05-12 22:27:23,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) done waiting for dependent futures
2022-05-12 22:27:23,718 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31195136}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 31195136}
2022-05-12 22:27:23,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,342 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:27:24,342 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:24,342 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:27:24,342 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:27:24,342 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 24117248}
2022-05-12 22:27:24,343 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50069504}) to executor  for transfer request: 0.
2022-05-12 22:27:24,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:24,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,724 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) about to wait for the following futures []
2022-05-12 22:27:24,724 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) done waiting for dependent futures
2022-05-12 22:27:24,724 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=83886080-92274687'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 83886080, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:27:24,724 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:24,724 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:24,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) about to wait for the following futures []
2022-05-12 22:27:24,725 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:24,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) done waiting for dependent futures
2022-05-12 22:27:24,725 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:24,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50069504}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 50069504}
2022-05-12 22:27:24,726 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:24,726 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:24,727 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:27:24,727 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:27:24,727 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:24,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,727 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:24,727 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=83886080-92274687', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:27:24,727 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:24,728 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:27:24,728 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:24,728 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:24,728 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:27:24,728 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:27:24,728 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:27:24,728 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:27:24,728 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:27:24,728 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=83886080-92274687
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222724Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:27:24,728 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222724Z
20220512/eu-central-1/s3/aws4_request
c014c64bfd2b7450136c9f25323b98097852eae98a7bdd354f923f12b4d13d32
2022-05-12 22:27:24,728 botocore.auth DEBUG    Signature:
8d22ea39cf80a13664faeedc106741ee623589d8d23b815c8744d481eda5129c
2022-05-12 22:27:24,728 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:24,728 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:24,728 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:27:24,728 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:27:24,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:27:24,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:24,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:27:24,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:27:24,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 24117248}
2022-05-12 22:27:24,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,905 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:27:24,906 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'bvv6qKuEyu/qGgbbUfO9Fff2t12LXNWZfkWOljAPPJIgRFfh04cqmWluMBqgQHbufWNCUgPaGaI=', 'x-amz-request-id': '70NB8NTFD091QSFC', 'Date': 'Thu, 12 May 2022 22:27:25 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 83886080-92274687/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:27:24,906 botocore.parsers DEBUG    Response body:

2022-05-12 22:27:24,906 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:27:24,906 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:27:24,906 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:27:25,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:27:25,015 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:27:25,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:27:25,016 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 13369344}
2022-05-12 22:27:25,016 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,618 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36175872}) to executor  for transfer request: 0.
2022-05-12 22:27:25,618 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) about to wait for the following futures []
2022-05-12 22:27:25,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) done waiting for dependent futures
2022-05-12 22:27:25,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36175872}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 36175872}
2022-05-12 22:27:25,619 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:27:25,644 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:27:25,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:27:25,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 15466496}
2022-05-12 22:27:25,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:26,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:27:26,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:26,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:27:26,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:27:26,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 29360128}
2022-05-12 22:27:26,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:26,446 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:27:26,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:26,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:27:26,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:27:26,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 14942208}
2022-05-12 22:27:26,447 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:26,534 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:27:26,534 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:26,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:27:26,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:27:26,535 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 5505024}
2022-05-12 22:27:26,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:26,838 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72876032}) to executor  for transfer request: 0.
2022-05-12 22:27:26,838 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:26,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) about to wait for the following futures []
2022-05-12 22:27:26,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) done waiting for dependent futures
2022-05-12 22:27:26,839 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72876032}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 72876032}
2022-05-12 22:27:26,839 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:29,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:27:29,942 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:29,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:27:29,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:27:29,943 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 13893632}
2022-05-12 22:27:29,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:30,581 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53477376}) to executor  for transfer request: 0.
2022-05-12 22:27:30,581 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:30,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) about to wait for the following futures []
2022-05-12 22:27:30,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) done waiting for dependent futures
2022-05-12 22:27:30,582 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53477376}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 53477376}
2022-05-12 22:27:30,582 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:31,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83886080}) to executor  for transfer request: 0.
2022-05-12 22:27:31,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:31,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) about to wait for the following futures []
2022-05-12 22:27:31,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) done waiting for dependent futures
2022-05-12 22:27:31,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83886080}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 83886080}
2022-05-12 22:27:31,883 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:32,000 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:27:32,000 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:32,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:27:32,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:27:32,001 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 20971520}
2022-05-12 22:27:32,001 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:33,167 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31457280}) to executor  for transfer request: 0.
2022-05-12 22:27:33,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:33,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) about to wait for the following futures []
2022-05-12 22:27:33,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) done waiting for dependent futures
2022-05-12 22:27:33,168 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31457280}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 31457280}
2022-05-12 22:27:33,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:27:34,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:27:34,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:27:34,166 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18350080}
2022-05-12 22:27:34,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:35,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:27:35,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:35,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:27:35,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:27:35,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 15728640}
2022-05-12 22:27:35,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,280 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78905344}) to executor  for transfer request: 0.
2022-05-12 22:27:37,280 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) about to wait for the following futures []
2022-05-12 22:27:37,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) done waiting for dependent futures
2022-05-12 22:27:37,281 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78905344}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 78905344}
2022-05-12 22:27:37,281 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,433 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:27:37,433 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:27:37,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:27:37,434 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 5767168}
2022-05-12 22:27:37,434 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,502 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:27:37,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:27:37,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:27:37,503 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 24379392}
2022-05-12 22:27:37,503 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,610 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:27:37,610 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:27:37,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:27:37,611 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 15204352}
2022-05-12 22:27:37,611 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,891 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73138176}) to executor  for transfer request: 0.
2022-05-12 22:27:37,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) about to wait for the following futures []
2022-05-12 22:27:37,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) done waiting for dependent futures
2022-05-12 22:27:37,892 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73138176}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 73138176}
2022-05-12 22:27:37,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:38,054 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61603840}) to executor  for transfer request: 0.
2022-05-12 22:27:38,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:38,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) about to wait for the following futures []
2022-05-12 22:27:38,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) done waiting for dependent futures
2022-05-12 22:27:38,055 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61603840}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 61603840}
2022-05-12 22:27:38,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,079 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84148224}) to executor  for transfer request: 0.
2022-05-12 22:27:40,080 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) about to wait for the following futures []
2022-05-12 22:27:40,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) done waiting for dependent futures
2022-05-12 22:27:40,080 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84148224}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 84148224}
2022-05-12 22:27:40,081 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36438016}) to executor  for transfer request: 0.
2022-05-12 22:27:40,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) about to wait for the following futures []
2022-05-12 22:27:40,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) done waiting for dependent futures
2022-05-12 22:27:40,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36438016}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 36438016}
2022-05-12 22:27:40,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,071 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:27:41,071 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:27:41,072 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:27:41,072 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 24379392}
2022-05-12 22:27:41,072 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,215 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:27:41,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:27:41,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:27:41,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 3145728}
2022-05-12 22:27:41,216 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:42,805 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:27:42,805 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:42,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:27:42,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:27:42,806 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 29622272}
2022-05-12 22:27:42,806 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:43,691 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:27:43,691 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:43,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:27:43,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:27:43,692 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 14155776}
2022-05-12 22:27:43,692 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:44,307 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31719424}) to executor  for transfer request: 0.
2022-05-12 22:27:44,307 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:44,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) about to wait for the following futures []
2022-05-12 22:27:44,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) done waiting for dependent futures
2022-05-12 22:27:44,308 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31719424}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 31719424}
2022-05-12 22:27:44,308 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:44,769 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:27:44,770 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:44,770 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:27:44,770 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:27:44,771 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 21233664}
2022-05-12 22:27:44,771 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:27:45,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:45,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:27:45,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:27:45,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 13631488}
2022-05-12 22:27:45,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:46,774 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84410368}) to executor  for transfer request: 0.
2022-05-12 22:27:46,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:46,775 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) about to wait for the following futures []
2022-05-12 22:27:46,775 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) done waiting for dependent futures
2022-05-12 22:27:46,775 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84410368}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 84410368}
2022-05-12 22:27:46,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:47,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:27:47,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:47,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:27:47,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:27:47,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 15990784}
2022-05-12 22:27:47,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:47,653 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:27:47,653 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:47,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:27:47,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:27:47,653 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 6029312}
2022-05-12 22:27:47,654 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:48,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:27:48,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:48,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:27:48,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:27:48,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 24641536}
2022-05-12 22:27:48,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:49,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73400320}) to executor  for transfer request: 0.
2022-05-12 22:27:49,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:49,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) about to wait for the following futures []
2022-05-12 22:27:49,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) done waiting for dependent futures
2022-05-12 22:27:49,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73400320}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 73400320}
2022-05-12 22:27:49,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:49,535 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:27:49,535 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:49,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:27:49,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:27:49,536 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 24641536}
2022-05-12 22:27:49,536 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:49,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:27:49,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:49,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:27:49,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:27:49,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 15466496}
2022-05-12 22:27:49,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:52,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79167488}) to executor  for transfer request: 0.
2022-05-12 22:27:52,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:52,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) about to wait for the following futures []
2022-05-12 22:27:52,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) done waiting for dependent futures
2022-05-12 22:27:52,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79167488}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 79167488}
2022-05-12 22:27:52,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,547 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36700160}) to executor  for transfer request: 0.
2022-05-12 22:27:55,547 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) about to wait for the following futures []
2022-05-12 22:27:55,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) done waiting for dependent futures
2022-05-12 22:27:55,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36700160}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 36700160}
2022-05-12 22:27:55,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,951 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31981568}) to executor  for transfer request: 0.
2022-05-12 22:27:55,951 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) about to wait for the following futures []
2022-05-12 22:27:55,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) done waiting for dependent futures
2022-05-12 22:27:55,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31981568}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 31981568}
2022-05-12 22:27:55,952 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:27:56,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,673 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:27:56,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:27:56,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 24903680}
2022-05-12 22:27:56,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,788 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84672512}) to executor  for transfer request: 0.
2022-05-12 22:27:56,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) about to wait for the following futures []
2022-05-12 22:27:56,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) done waiting for dependent futures
2022-05-12 22:27:56,788 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84672512}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 84672512}
2022-05-12 22:27:56,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:58,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:27:58,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:58,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:27:58,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:27:58,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 6291456}
2022-05-12 22:27:58,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:58,342 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:27:58,342 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:58,342 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:27:58,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:27:58,343 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18612224}
2022-05-12 22:27:58,343 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:58,904 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:27:58,904 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:58,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:27:58,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:27:58,905 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 14417920}
2022-05-12 22:27:58,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:00,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:28:00,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:00,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:28:00,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:28:00,046 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 29884416}
2022-05-12 22:28:00,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:00,161 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:28:00,161 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:00,161 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:00,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:28:00,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:28:00,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 24903680}
2022-05-12 22:28:00,162 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:00,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:28:00,389 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:00,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:28:00,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:28:00,389 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 16252928}
2022-05-12 22:28:00,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:00,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:28:00,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:00,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:28:00,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:28:00,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 15728640}
2022-05-12 22:28:00,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:00,406 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73662464}) to executor  for transfer request: 0.
2022-05-12 22:28:00,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:00,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) about to wait for the following futures []
2022-05-12 22:28:00,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) done waiting for dependent futures
2022-05-12 22:28:00,407 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73662464}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 73662464}
2022-05-12 22:28:00,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:01,143 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53739520}) to executor  for transfer request: 0.
2022-05-12 22:28:01,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:01,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) about to wait for the following futures []
2022-05-12 22:28:01,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) done waiting for dependent futures
2022-05-12 22:28:01,144 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53739520}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 53739520}
2022-05-12 22:28:01,144 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:01,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:28:01,497 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:01,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:28:01,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:28:01,498 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 21495808}
2022-05-12 22:28:01,498 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84934656}) to executor  for transfer request: 0.
2022-05-12 22:28:05,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) about to wait for the following futures []
2022-05-12 22:28:05,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) done waiting for dependent futures
2022-05-12 22:28:05,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84934656}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 84934656}
2022-05-12 22:28:05,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:28:05,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:28:05,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:28:05,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 3407872}
2022-05-12 22:28:05,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,539 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61865984}) to executor  for transfer request: 0.
2022-05-12 22:28:05,539 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) about to wait for the following futures []
2022-05-12 22:28:05,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) done waiting for dependent futures
2022-05-12 22:28:05,540 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61865984}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 61865984}
2022-05-12 22:28:05,540 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:06,655 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:28:06,655 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:06,656 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:06,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:28:06,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:28:06,656 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 30146560}
2022-05-12 22:28:06,656 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:07,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32243712}) to executor  for transfer request: 0.
2022-05-12 22:28:07,594 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:07,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) about to wait for the following futures []
2022-05-12 22:28:07,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) done waiting for dependent futures
2022-05-12 22:28:07,595 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32243712}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 32243712}
2022-05-12 22:28:07,595 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,632 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:28:08,632 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:08,633 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,633 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) about to wait for the following futures []
2022-05-12 22:28:08,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:28:08,633 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) done waiting for dependent futures
2022-05-12 22:28:08,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:28:08,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 16515072}
2022-05-12 22:28:08,633 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=92274688-100663295'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 92274688, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:28:08,634 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:08,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,634 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:08,635 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:08,635 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:08,635 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:08,635 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:08,635 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:28:08,635 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:28:08,635 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:08,636 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:08,636 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=92274688-100663295', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:28:08,636 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:08,636 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:28:08,636 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:08,636 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:08,636 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:28:08,636 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:28:08,636 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:28:08,637 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:28:08,637 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:28:08,637 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=92274688-100663295
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222808Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:28:08,637 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222808Z
20220512/eu-central-1/s3/aws4_request
81335388fed46e47c6044267d66702901cfce0e4b3cdf7bc0ec5a823e8509ca9
2022-05-12 22:28:08,637 botocore.auth DEBUG    Signature:
c52ed649e12826e235a8859cbf98572171779546d397dc9aa0ff49a4dab87ca1
2022-05-12 22:28:08,637 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:08,637 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:08,638 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:28:08,638 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:28:08,713 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73924608}) to executor  for transfer request: 0.
2022-05-12 22:28:08,713 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:08,714 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) about to wait for the following futures []
2022-05-12 22:28:08,715 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) done waiting for dependent futures
2022-05-12 22:28:08,715 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73924608}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 73924608}
2022-05-12 22:28:08,715 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,834 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:28:08,835 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'BjeTDc4MrNZDgnVFrdZThxp8bFC3m8bapXaBSQdiZSb2vihAV+UhfhKHqjM3mLxXqTfRuDlua4g=', 'x-amz-request-id': 'QJM8ZF76AKX06R73', 'Date': 'Thu, 12 May 2022 22:28:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 92274688-100663295/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:28:08,835 botocore.parsers DEBUG    Response body:

2022-05-12 22:28:08,836 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:28:08,836 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:28:08,836 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:28:09,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:28:09,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:09,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:28:09,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:28:09,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 14680064}
2022-05-12 22:28:09,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:09,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36962304}) to executor  for transfer request: 0.
2022-05-12 22:28:09,399 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:09,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) about to wait for the following futures []
2022-05-12 22:28:09,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) done waiting for dependent futures
2022-05-12 22:28:09,399 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36962304}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 36962304}
2022-05-12 22:28:09,400 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:10,231 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79429632}) to executor  for transfer request: 0.
2022-05-12 22:28:10,231 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:10,231 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) about to wait for the following futures []
2022-05-12 22:28:10,231 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) done waiting for dependent futures
2022-05-12 22:28:10,231 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79429632}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 79429632}
2022-05-12 22:28:10,232 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,747 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:28:12,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:12,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:28:12,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:28:12,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 15990784}
2022-05-12 22:28:12,748 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:13,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:28:13,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:13,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:28:13,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:28:13,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 3145728}
2022-05-12 22:28:13,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:14,342 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:28:14,342 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:14,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:28:14,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:28:14,343 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 6553600}
2022-05-12 22:28:14,343 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:15,189 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85196800}) to executor  for transfer request: 0.
2022-05-12 22:28:15,189 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:15,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) about to wait for the following futures []
2022-05-12 22:28:15,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) done waiting for dependent futures
2022-05-12 22:28:15,189 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85196800}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 85196800}
2022-05-12 22:28:15,190 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,032 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:28:16,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:28:16,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:28:16,032 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 18874368}
2022-05-12 22:28:16,033 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,337 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54001664}) to executor  for transfer request: 0.
2022-05-12 22:28:16,337 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) about to wait for the following futures []
2022-05-12 22:28:16,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) done waiting for dependent futures
2022-05-12 22:28:16,338 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54001664}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 54001664}
2022-05-12 22:28:16,338 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92274688}) to executor  for transfer request: 0.
2022-05-12 22:28:16,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) about to wait for the following futures []
2022-05-12 22:28:16,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) done waiting for dependent futures
2022-05-12 22:28:16,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92274688}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 92274688}
2022-05-12 22:28:16,726 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,344 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74186752}) to executor  for transfer request: 0.
2022-05-12 22:28:19,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) about to wait for the following futures []
2022-05-12 22:28:19,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) done waiting for dependent futures
2022-05-12 22:28:19,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74186752}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 74186752}
2022-05-12 22:28:19,345 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,679 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:28:19,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:28:19,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:28:19,680 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 14942208}
2022-05-12 22:28:19,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:20,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:28:20,273 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:20,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:28:20,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:28:20,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 16252928}
2022-05-12 22:28:20,276 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:23,420 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:28:23,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:23,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:28:23,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:28:23,421 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 13893632}
2022-05-12 22:28:23,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:24,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92536832}) to executor  for transfer request: 0.
2022-05-12 22:28:24,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:24,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) about to wait for the following futures []
2022-05-12 22:28:24,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) done waiting for dependent futures
2022-05-12 22:28:24,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92536832}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 92536832}
2022-05-12 22:28:24,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:24,703 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:28:24,703 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:24,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:28:24,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:28:24,704 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 21757952}
2022-05-12 22:28:24,704 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85458944}) to executor  for transfer request: 0.
2022-05-12 22:28:25,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) about to wait for the following futures []
2022-05-12 22:28:25,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) done waiting for dependent futures
2022-05-12 22:28:25,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85458944}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 85458944}
2022-05-12 22:28:25,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:28:25,298 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:28:25,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:28:25,298 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 3670016}
2022-05-12 22:28:25,299 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,487 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32505856}) to executor  for transfer request: 0.
2022-05-12 22:28:25,487 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) about to wait for the following futures []
2022-05-12 22:28:25,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) done waiting for dependent futures
2022-05-12 22:28:25,488 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32505856}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 32505856}
2022-05-12 22:28:25,489 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,958 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:28:25,958 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:28:25,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:28:25,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 6815744}
2022-05-12 22:28:25,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:27,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79691776}) to executor  for transfer request: 0.
2022-05-12 22:28:27,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:27,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) about to wait for the following futures []
2022-05-12 22:28:27,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) done waiting for dependent futures
2022-05-12 22:28:27,781 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79691776}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 79691776}
2022-05-12 22:28:27,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:28,469 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92798976}) to executor  for transfer request: 0.
2022-05-12 22:28:28,469 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:28,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) about to wait for the following futures []
2022-05-12 22:28:28,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) done waiting for dependent futures
2022-05-12 22:28:28,470 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92798976}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 92798976}
2022-05-12 22:28:28,470 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:29,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74448896}) to executor  for transfer request: 0.
2022-05-12 22:28:29,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) about to wait for the following futures []
2022-05-12 22:28:29,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) done waiting for dependent futures
2022-05-12 22:28:29,584 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74448896}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 74448896}
2022-05-12 22:28:29,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:30,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54263808}) to executor  for transfer request: 0.
2022-05-12 22:28:30,165 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:30,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) about to wait for the following futures []
2022-05-12 22:28:30,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) done waiting for dependent futures
2022-05-12 22:28:30,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54263808}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 54263808}
2022-05-12 22:28:30,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:30,182 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:28:30,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:30,182 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:28:30,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:30,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:28:30,183 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:30,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:28:30,183 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=27>, 'offset': 16515072}
2022-05-12 22:28:30,183 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:30,184 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:28:30,184 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:28:30,184 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:28:30,184 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:31,346 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37224448}) to executor  for transfer request: 0.
2022-05-12 22:28:31,346 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:31,346 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) about to wait for the following futures []
2022-05-12 22:28:31,346 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) done waiting for dependent futures
2022-05-12 22:28:31,347 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37224448}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 37224448}
2022-05-12 22:28:31,347 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:32,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:28:32,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:32,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:28:32,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:28:32,140 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19136512}
2022-05-12 22:28:32,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85721088}) to executor  for transfer request: 0.
2022-05-12 22:28:34,259 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) about to wait for the following futures []
2022-05-12 22:28:34,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) done waiting for dependent futures
2022-05-12 22:28:34,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85721088}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 85721088}
2022-05-12 22:28:34,260 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32768000}) to executor  for transfer request: 0.
2022-05-12 22:28:34,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) about to wait for the following futures []
2022-05-12 22:28:34,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) done waiting for dependent futures
2022-05-12 22:28:34,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32768000}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 32768000}
2022-05-12 22:28:34,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,961 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74711040}) to executor  for transfer request: 0.
2022-05-12 22:28:35,961 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) about to wait for the following futures []
2022-05-12 22:28:35,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) done waiting for dependent futures
2022-05-12 22:28:35,961 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74711040}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 74711040}
2022-05-12 22:28:35,962 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:37,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:28:37,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:37,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:28:37,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:28:37,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 15204352}
2022-05-12 22:28:37,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:39,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:28:39,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:39,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:28:39,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:28:39,241 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19398656}
2022-05-12 22:28:39,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:39,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54525952}) to executor  for transfer request: 0.
2022-05-12 22:28:39,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:39,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) about to wait for the following futures []
2022-05-12 22:28:39,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) done waiting for dependent futures
2022-05-12 22:28:39,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54525952}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 54525952}
2022-05-12 22:28:39,406 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:39,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:28:39,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:39,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:28:39,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:28:39,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 22020096}
2022-05-12 22:28:39,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,960 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33030144}) to executor  for transfer request: 0.
2022-05-12 22:28:40,960 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) about to wait for the following futures []
2022-05-12 22:28:40,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) done waiting for dependent futures
2022-05-12 22:28:40,960 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33030144}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 33030144}
2022-05-12 22:28:40,961 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,713 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79953920}) to executor  for transfer request: 0.
2022-05-12 22:28:44,713 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) about to wait for the following futures []
2022-05-12 22:28:44,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) done waiting for dependent futures
2022-05-12 22:28:44,714 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79953920}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 79953920}
2022-05-12 22:28:44,714 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,818 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:28:44,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:28:44,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:28:44,818 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 7077888}
2022-05-12 22:28:44,819 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:45,103 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85983232}) to executor  for transfer request: 0.
2022-05-12 22:28:45,103 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:45,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) about to wait for the following futures []
2022-05-12 22:28:45,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) done waiting for dependent futures
2022-05-12 22:28:45,104 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85983232}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 85983232}
2022-05-12 22:28:45,104 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:47,663 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74973184}) to executor  for transfer request: 0.
2022-05-12 22:28:47,663 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:47,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) about to wait for the following futures []
2022-05-12 22:28:47,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) done waiting for dependent futures
2022-05-12 22:28:47,664 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74973184}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 74973184}
2022-05-12 22:28:47,664 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:47,994 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:28:47,994 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:47,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:28:47,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:28:47,995 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 3932160}
2022-05-12 22:28:47,995 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,023 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:28:48,023 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:48,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:28:48,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:28:48,024 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 15466496}
2022-05-12 22:28:48,024 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33292288}) to executor  for transfer request: 0.
2022-05-12 22:28:48,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:48,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,743 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) about to wait for the following futures []
2022-05-12 22:28:48,743 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) done waiting for dependent futures
2022-05-12 22:28:48,743 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=100663296-109051903'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 100663296, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:28:48,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:48,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:48,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:48,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:48,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:48,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) about to wait for the following futures []
2022-05-12 22:28:48,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:48,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) done waiting for dependent futures
2022-05-12 22:28:48,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:28:48,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33292288}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 33292288}
2022-05-12 22:28:48,745 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:28:48,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:48,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:48,745 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=100663296-109051903', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:28:48,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,746 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:48,746 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:28:48,746 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:48,746 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:48,746 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:28:48,746 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:28:48,746 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:28:48,746 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:28:48,747 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:28:48,747 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=100663296-109051903
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222848Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:28:48,747 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222848Z
20220512/eu-central-1/s3/aws4_request
59ca875c7bf5d8e34960ea99a4a4fcf1ccc438788caa1d5a34e9786e7c954418
2022-05-12 22:28:48,747 botocore.auth DEBUG    Signature:
e29e223badaaa06cde9632785cc1ce8ad170bd8910c8592ff0edb6b5f784269c
2022-05-12 22:28:48,747 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:48,747 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:48,747 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:28:48,748 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:28:48,957 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:28:48,958 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '/A3LvNKcgLhUw0XINuAOULCig8OuPtx4CuxAZFos3mzpZ4aIkPuzq6kNwNQw4cyvRp5n2QZKPeQ=', 'x-amz-request-id': 'K849NW1YADH6SJ51', 'Date': 'Thu, 12 May 2022 22:28:49 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 100663296-109051903/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:28:48,958 botocore.parsers DEBUG    Response body:

2022-05-12 22:28:48,959 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:28:48,959 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:28:48,959 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:28:50,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62128128}) to executor  for transfer request: 0.
2022-05-12 22:28:50,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:50,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) about to wait for the following futures []
2022-05-12 22:28:50,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) done waiting for dependent futures
2022-05-12 22:28:50,168 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62128128}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 62128128}
2022-05-12 22:28:50,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54788096}) to executor  for transfer request: 0.
2022-05-12 22:28:50,295 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:50,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) about to wait for the following futures []
2022-05-12 22:28:50,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) done waiting for dependent futures
2022-05-12 22:28:50,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54788096}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 54788096}
2022-05-12 22:28:50,296 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:28:50,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:50,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:28:50,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:28:50,662 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 22282240}
2022-05-12 22:28:50,663 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:51,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:28:51,990 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:51,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:28:51,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:28:51,991 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19660800}
2022-05-12 22:28:51,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:52,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:52,558 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:52,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:52,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:52,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 7340032}
2022-05-12 22:28:52,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:52,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86245376}) to executor  for transfer request: 0.
2022-05-12 22:28:52,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:52,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) about to wait for the following futures []
2022-05-12 22:28:52,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) done waiting for dependent futures
2022-05-12 22:28:52,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86245376}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 86245376}
2022-05-12 22:28:52,828 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75235328}) to executor  for transfer request: 0.
2022-05-12 22:28:57,772 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,772 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) about to wait for the following futures []
2022-05-12 22:28:57,772 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) done waiting for dependent futures
2022-05-12 22:28:57,772 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=109051904-117440511'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 109051904, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:28:57,772 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:57,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) about to wait for the following futures []
2022-05-12 22:28:57,773 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:57,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) done waiting for dependent futures
2022-05-12 22:28:57,773 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:57,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75235328}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 75235328}
2022-05-12 22:28:57,773 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:57,773 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:57,774 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:57,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,774 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:28:57,774 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:28:57,774 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:57,774 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:57,774 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=109051904-117440511', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:28:57,774 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:57,774 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:28:57,774 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:57,774 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:57,774 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:28:57,774 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:28:57,774 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:28:57,775 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:28:57,775 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:28:57,775 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=109051904-117440511
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222857Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:28:57,775 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222857Z
20220512/eu-central-1/s3/aws4_request
c27aaaca0c5b795d9f3fff5ae2694ad24fff50d51cd626c754b82d4356fe2093
2022-05-12 22:28:57,775 botocore.auth DEBUG    Signature:
a55d0cab5c89484a0f6ec82f312ce623298956de0739950706ebe25534efebe6
2022-05-12 22:28:57,775 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:57,775 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:57,775 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:28:57,775 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:28:57,989 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:28:57,989 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'V2AnX1HfyaGoN0i60XNo75Dan/DxtqR11eDxJ42BHGCFR7utG/f2dQPFSItxzP3tGwKEI8vSvtQ=', 'x-amz-request-id': 'Z880YGGASBFK8EWH', 'Date': 'Thu, 12 May 2022 22:28:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 109051904-117440511/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:28:57,989 botocore.parsers DEBUG    Response body:

2022-05-12 22:28:57,990 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:28:57,990 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:28:57,990 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:28:58,447 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37486592}) to executor  for transfer request: 0.
2022-05-12 22:28:58,447 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:58,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) about to wait for the following futures []
2022-05-12 22:28:58,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) done waiting for dependent futures
2022-05-12 22:28:58,448 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37486592}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 37486592}
2022-05-12 22:28:58,448 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:59,624 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:28:59,625 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:59,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:28:59,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:28:59,625 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 14155776}
2022-05-12 22:28:59,626 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:59,908 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100663296}) to executor  for transfer request: 0.
2022-05-12 22:28:59,908 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:59,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) about to wait for the following futures []
2022-05-12 22:28:59,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) done waiting for dependent futures
2022-05-12 22:28:59,909 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100663296}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 100663296}
2022-05-12 22:28:59,909 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:00,242 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86507520}) to executor  for transfer request: 0.
2022-05-12 22:29:00,242 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:00,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) about to wait for the following futures []
2022-05-12 22:29:00,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) done waiting for dependent futures
2022-05-12 22:29:00,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86507520}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 86507520}
2022-05-12 22:29:00,243 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:00,348 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80216064}) to executor  for transfer request: 0.
2022-05-12 22:29:00,348 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:00,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) about to wait for the following futures []
2022-05-12 22:29:00,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) done waiting for dependent futures
2022-05-12 22:29:00,348 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80216064}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 80216064}
2022-05-12 22:29:00,349 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:00,630 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:29:00,630 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:00,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:29:00,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:29:00,630 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 22544384}
2022-05-12 22:29:00,631 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:29:02,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:02,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:29:02,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:29:02,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 4194304}
2022-05-12 22:29:02,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55050240}) to executor  for transfer request: 0.
2022-05-12 22:29:02,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:02,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) about to wait for the following futures []
2022-05-12 22:29:02,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) done waiting for dependent futures
2022-05-12 22:29:02,982 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55050240}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 55050240}
2022-05-12 22:29:02,983 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:03,285 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62390272}) to executor  for transfer request: 0.
2022-05-12 22:29:03,286 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:03,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) about to wait for the following futures []
2022-05-12 22:29:03,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) done waiting for dependent futures
2022-05-12 22:29:03,286 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62390272}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 62390272}
2022-05-12 22:29:03,287 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:04,352 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:29:04,352 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:04,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:29:04,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:29:04,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 7602176}
2022-05-12 22:29:04,353 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:05,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:29:05,771 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:05,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:29:05,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:29:05,772 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 19922944}
2022-05-12 22:29:05,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:06,795 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109051904}) to executor  for transfer request: 0.
2022-05-12 22:29:06,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:06,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) about to wait for the following futures []
2022-05-12 22:29:06,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) done waiting for dependent futures
2022-05-12 22:29:06,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109051904}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 109051904}
2022-05-12 22:29:06,796 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:29:07,424 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:29:07,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:29:07,424 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 15728640}
2022-05-12 22:29:07,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86769664}) to executor  for transfer request: 0.
2022-05-12 22:29:07,514 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) about to wait for the following futures []
2022-05-12 22:29:07,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) done waiting for dependent futures
2022-05-12 22:29:07,515 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86769664}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 86769664}
2022-05-12 22:29:07,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:11,193 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:29:11,193 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:11,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:29:11,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:29:11,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 14417920}
2022-05-12 22:29:11,194 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:12,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:29:12,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:12,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:29:12,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:29:12,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 22806528}
2022-05-12 22:29:12,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:12,590 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100925440}) to executor  for transfer request: 0.
2022-05-12 22:29:12,590 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:12,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) about to wait for the following futures []
2022-05-12 22:29:12,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) done waiting for dependent futures
2022-05-12 22:29:12,591 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100925440}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 100925440}
2022-05-12 22:29:12,592 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:12,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:29:12,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:12,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:29:12,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:29:12,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 4456448}
2022-05-12 22:29:12,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:13,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:29:13,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:13,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:29:13,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:29:13,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20185088}
2022-05-12 22:29:13,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:13,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87031808}) to executor  for transfer request: 0.
2022-05-12 22:29:13,674 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:13,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) about to wait for the following futures []
2022-05-12 22:29:13,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) done waiting for dependent futures
2022-05-12 22:29:13,675 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87031808}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 87031808}
2022-05-12 22:29:13,675 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55312384}) to executor  for transfer request: 0.
2022-05-12 22:29:14,875 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) about to wait for the following futures []
2022-05-12 22:29:14,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) done waiting for dependent futures
2022-05-12 22:29:14,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55312384}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 55312384}
2022-05-12 22:29:14,876 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,490 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109314048}) to executor  for transfer request: 0.
2022-05-12 22:29:15,490 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) about to wait for the following futures []
2022-05-12 22:29:15,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) done waiting for dependent futures
2022-05-12 22:29:15,490 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109314048}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 109314048}
2022-05-12 22:29:15,491 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80478208}) to executor  for transfer request: 0.
2022-05-12 22:29:15,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) about to wait for the following futures []
2022-05-12 22:29:15,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) done waiting for dependent futures
2022-05-12 22:29:15,910 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80478208}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 80478208}
2022-05-12 22:29:15,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:16,516 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62652416}) to executor  for transfer request: 0.
2022-05-12 22:29:16,517 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:16,517 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) about to wait for the following futures []
2022-05-12 22:29:16,517 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) done waiting for dependent futures
2022-05-12 22:29:16,517 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62652416}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 62652416}
2022-05-12 22:29:16,518 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:17,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:29:17,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:17,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:29:17,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:29:17,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 7864320}
2022-05-12 22:29:17,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:17,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:29:17,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:17,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:29:17,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:29:17,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 15990784}
2022-05-12 22:29:17,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:20,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:29:20,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:20,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:29:20,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:29:20,326 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 14680064}
2022-05-12 22:29:20,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,337 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87293952}) to executor  for transfer request: 0.
2022-05-12 22:29:21,338 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:21,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) about to wait for the following futures []
2022-05-12 22:29:21,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) done waiting for dependent futures
2022-05-12 22:29:21,339 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87293952}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 87293952}
2022-05-12 22:29:21,339 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:22,592 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37748736}) to executor  for transfer request: 0.
2022-05-12 22:29:22,592 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:22,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) about to wait for the following futures []
2022-05-12 22:29:22,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) done waiting for dependent futures
2022-05-12 22:29:22,593 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37748736}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 37748736}
2022-05-12 22:29:22,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:22,751 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:29:22,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:22,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:29:22,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:29:22,752 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 23068672}
2022-05-12 22:29:22,753 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:22,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101187584}) to executor  for transfer request: 0.
2022-05-12 22:29:22,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:22,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) about to wait for the following futures []
2022-05-12 22:29:22,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) done waiting for dependent futures
2022-05-12 22:29:22,910 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101187584}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 101187584}
2022-05-12 22:29:22,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:24,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:29:24,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:24,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:29:24,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:29:24,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20447232}
2022-05-12 22:29:24,278 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:24,499 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:29:24,499 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:24,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:29:24,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:29:24,499 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 16252928}
2022-05-12 22:29:24,500 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:24,726 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109576192}) to executor  for transfer request: 0.
2022-05-12 22:29:24,727 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:24,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) about to wait for the following futures []
2022-05-12 22:29:24,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) done waiting for dependent futures
2022-05-12 22:29:24,727 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109576192}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 109576192}
2022-05-12 22:29:24,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:26,146 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87556096}) to executor  for transfer request: 0.
2022-05-12 22:29:26,146 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:26,147 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) about to wait for the following futures []
2022-05-12 22:29:26,147 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) done waiting for dependent futures
2022-05-12 22:29:26,147 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87556096}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 87556096}
2022-05-12 22:29:26,147 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,087 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:29:27,087 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:27,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:29:27,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:29:27,087 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 4718592}
2022-05-12 22:29:27,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,155 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:29:27,155 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:27,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:29:27,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:29:27,156 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 8126464}
2022-05-12 22:29:27,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:28,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55574528}) to executor  for transfer request: 0.
2022-05-12 22:29:28,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:28,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) about to wait for the following futures []
2022-05-12 22:29:28,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) done waiting for dependent futures
2022-05-12 22:29:28,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55574528}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 55574528}
2022-05-12 22:29:28,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:29,420 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62914560}) to executor  for transfer request: 0.
2022-05-12 22:29:29,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:29,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) about to wait for the following futures []
2022-05-12 22:29:29,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) done waiting for dependent futures
2022-05-12 22:29:29,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62914560}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 62914560}
2022-05-12 22:29:29,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:29,782 s3transfer.download DEBUG    Retrying exception caught (Read timeout on endpoint URL: "None"), retrying request, (attempt 0 / 5)
Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 436, in _error_catcher
    yield
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 518, in read
    data = self._fp.read(amt) if not fp_closed else b""
  File "/usr/lib/python3.8/http/client.py", line 459, in read
    n = self.readinto(b)
  File "/usr/lib/python3.8/http/client.py", line 503, in readinto
    n = self.fp.readinto(b)
  File "/usr/lib/python3.8/socket.py", line 669, in readinto
    return self._sock.recv_into(b)
  File "/usr/lib/python3.8/ssl.py", line 1241, in recv_into
    return self.read(nbytes, buffer)
  File "/usr/lib/python3.8/ssl.py", line 1099, in read
    return self._sslobj.read(len, buffer)
socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 99, in read
    chunk = self._raw_stream.read(amt)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 540, in read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__
    self.gen.throw(type, value, traceback)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 441, in _error_catcher
    raise ReadTimeoutError(self._pool, None, "Read timed out.")
urllib3.exceptions.ReadTimeoutError: AWSHTTPSConnectionPool(host='plot-delineation.s3.eu-central-1.amazonaws.com', port=443): Read timed out.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 583, in _main
    for chunk in chunks:
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 728, in __next__
    chunk = self._body.read(self._chunksize)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/utils.py", line 599, in read
    value = self._stream.read(*args, **kwargs)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 102, in read
    raise ReadTimeoutError(endpoint_url=e.url, error=e)
botocore.exceptions.ReadTimeoutError: Read timeout on endpoint URL: "None"
2022-05-12 22:29:29,782 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:29,782 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:29,782 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:29,782 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:29,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:29,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:29,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:29,783 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:29:29,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:29,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:29,783 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=92274688-100663295', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:29,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:29,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:29,784 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:29,784 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:29,784 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:29,784 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:29,784 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:29:29,784 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:29:29,784 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:29,784 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=92274688-100663295
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222929Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:29,785 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222929Z
20220512/eu-central-1/s3/aws4_request
7421488cd1cb22f703d6601c8ac11b423db774f53db6cd4e61e4b57ee3eebe66
2022-05-12 22:29:29,785 botocore.auth DEBUG    Signature:
ba359fb66297749aeaad8b25950a4a282ae4550a77f6af0bec09032e0b350966
2022-05-12 22:29:29,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:29,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:29,785 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:29,786 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:29,786 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:29:30,902 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:30,902 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qH1RIOctT+xp2ncBJapGxwPVHGGuF9mcLVDor+wxjuLNsR2LoZKSRhCIVhffdP4mkKxLydSgXKQ=', 'x-amz-request-id': '9DXSFQ7QRRV6X1SJ', 'Date': 'Thu, 12 May 2022 22:29:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 92274688-100663295/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:29:30,902 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:30,903 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:30,903 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:30,903 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:31,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87818240}) to executor  for transfer request: 0.
2022-05-12 22:29:31,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:31,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) about to wait for the following futures []
2022-05-12 22:29:31,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) done waiting for dependent futures
2022-05-12 22:29:31,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87818240}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 87818240}
2022-05-12 22:29:31,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:31,828 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:29:31,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:31,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:29:31,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:29:31,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 23330816}
2022-05-12 22:29:31,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:33,832 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101449728}) to executor  for transfer request: 0.
2022-05-12 22:29:33,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:33,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) about to wait for the following futures []
2022-05-12 22:29:33,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) done waiting for dependent futures
2022-05-12 22:29:33,833 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101449728}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 101449728}
2022-05-12 22:29:33,833 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:34,089 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80740352}) to executor  for transfer request: 0.
2022-05-12 22:29:34,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:34,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) about to wait for the following futures []
2022-05-12 22:29:34,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) done waiting for dependent futures
2022-05-12 22:29:34,089 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80740352}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 80740352}
2022-05-12 22:29:34,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:35,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:29:35,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:35,164 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:35,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:29:35,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:29:35,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 16515072}
2022-05-12 22:29:35,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:35,449 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:29:35,449 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:35,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:29:35,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:29:35,450 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 3407872}
2022-05-12 22:29:35,450 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:36,444 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109838336}) to executor  for transfer request: 0.
2022-05-12 22:29:36,444 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:36,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) about to wait for the following futures []
2022-05-12 22:29:36,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) done waiting for dependent futures
2022-05-12 22:29:36,445 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109838336}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 109838336}
2022-05-12 22:29:36,445 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:36,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:29:36,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:36,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:29:36,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:29:36,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 4980736}
2022-05-12 22:29:36,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,312 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92274688}) to executor  for transfer request: 0.
2022-05-12 22:29:37,312 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) about to wait for the following futures []
2022-05-12 22:29:37,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) done waiting for dependent futures
2022-05-12 22:29:37,313 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92274688}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 92274688}
2022-05-12 22:29:37,313 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,329 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88080384}) to executor  for transfer request: 0.
2022-05-12 22:29:37,330 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) about to wait for the following futures []
2022-05-12 22:29:37,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) done waiting for dependent futures
2022-05-12 22:29:37,330 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88080384}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 88080384}
2022-05-12 22:29:37,331 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,624 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:29:37,624 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:29:37,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:29:37,625 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 14942208}
2022-05-12 22:29:37,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,785 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:29:37,785 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:29:37,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:29:37,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20709376}
2022-05-12 22:29:37,786 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:38,775 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:29:38,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:38,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:29:38,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:29:38,776 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 23592960}
2022-05-12 22:29:38,777 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:42,362 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63176704}) to executor  for transfer request: 0.
2022-05-12 22:29:42,362 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:42,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) about to wait for the following futures []
2022-05-12 22:29:42,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) done waiting for dependent futures
2022-05-12 22:29:42,362 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63176704}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 63176704}
2022-05-12 22:29:42,363 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:43,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55836672}) to executor  for transfer request: 0.
2022-05-12 22:29:43,397 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:43,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) about to wait for the following futures []
2022-05-12 22:29:43,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) done waiting for dependent futures
2022-05-12 22:29:43,397 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55836672}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 55836672}
2022-05-12 22:29:43,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:44,444 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92536832}) to executor  for transfer request: 0.
2022-05-12 22:29:44,444 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:44,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) about to wait for the following futures []
2022-05-12 22:29:44,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) done waiting for dependent futures
2022-05-12 22:29:44,445 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92536832}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 92536832}
2022-05-12 22:29:44,445 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:44,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81002496}) to executor  for transfer request: 0.
2022-05-12 22:29:44,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:44,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) about to wait for the following futures []
2022-05-12 22:29:44,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) done waiting for dependent futures
2022-05-12 22:29:44,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81002496}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 81002496}
2022-05-12 22:29:44,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:44,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88342528}) to executor  for transfer request: 0.
2022-05-12 22:29:44,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:44,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) about to wait for the following futures []
2022-05-12 22:29:44,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) done waiting for dependent futures
2022-05-12 22:29:44,732 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88342528}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 88342528}
2022-05-12 22:29:44,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:45,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101711872}) to executor  for transfer request: 0.
2022-05-12 22:29:45,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:45,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) about to wait for the following futures []
2022-05-12 22:29:45,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) done waiting for dependent futures
2022-05-12 22:29:45,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101711872}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 101711872}
2022-05-12 22:29:45,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:47,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110100480}) to executor  for transfer request: 0.
2022-05-12 22:29:47,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:47,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) about to wait for the following futures []
2022-05-12 22:29:47,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) done waiting for dependent futures
2022-05-12 22:29:47,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110100480}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 110100480}
2022-05-12 22:29:47,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:48,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:29:48,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:48,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:29:48,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:29:48,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 20971520}
2022-05-12 22:29:48,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:49,275 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:29:49,276 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:49,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:29:49,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:29:49,276 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 15204352}
2022-05-12 22:29:49,277 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:50,480 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:29:50,480 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:50,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:29:50,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:29:50,481 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 5242880}
2022-05-12 22:29:50,481 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92798976}) to executor  for transfer request: 0.
2022-05-12 22:29:51,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) about to wait for the following futures []
2022-05-12 22:29:51,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) done waiting for dependent futures
2022-05-12 22:29:51,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92798976}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 92798976}
2022-05-12 22:29:51,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,247 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:29:51,247 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:29:51,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:29:51,248 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 23855104}
2022-05-12 22:29:51,248 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,737 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56098816}) to executor  for transfer request: 0.
2022-05-12 22:29:51,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) about to wait for the following futures []
2022-05-12 22:29:51,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) done waiting for dependent futures
2022-05-12 22:29:51,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56098816}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 56098816}
2022-05-12 22:29:51,738 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:52,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38010880}) to executor  for transfer request: 0.
2022-05-12 22:29:52,382 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:52,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) about to wait for the following futures []
2022-05-12 22:29:52,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) done waiting for dependent futures
2022-05-12 22:29:52,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38010880}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 38010880}
2022-05-12 22:29:52,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:53,011 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88604672}) to executor  for transfer request: 0.
2022-05-12 22:29:53,012 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:53,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) about to wait for the following futures []
2022-05-12 22:29:53,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) done waiting for dependent futures
2022-05-12 22:29:53,012 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88604672}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 88604672}
2022-05-12 22:29:53,013 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:54,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63438848}) to executor  for transfer request: 0.
2022-05-12 22:29:54,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:54,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) about to wait for the following futures []
2022-05-12 22:29:54,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) done waiting for dependent futures
2022-05-12 22:29:54,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63438848}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 63438848}
2022-05-12 22:29:54,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,651 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101974016}) to executor  for transfer request: 0.
2022-05-12 22:29:55,651 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:55,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) about to wait for the following futures []
2022-05-12 22:29:55,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) done waiting for dependent futures
2022-05-12 22:29:55,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101974016}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 101974016}
2022-05-12 22:29:55,652 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:58,471 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81264640}) to executor  for transfer request: 0.
2022-05-12 22:29:58,471 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:58,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) about to wait for the following futures []
2022-05-12 22:29:58,472 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) done waiting for dependent futures
2022-05-12 22:29:58,472 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81264640}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 81264640}
2022-05-12 22:29:58,472 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:58,498 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110362624}) to executor  for transfer request: 0.
2022-05-12 22:29:58,498 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:58,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) about to wait for the following futures []
2022-05-12 22:29:58,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) done waiting for dependent futures
2022-05-12 22:29:58,499 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110362624}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 110362624}
2022-05-12 22:29:58,499 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:58,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:29:58,621 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:58,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:29:58,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:29:58,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 21233664}
2022-05-12 22:29:58,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:58,729 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93061120}) to executor  for transfer request: 0.
2022-05-12 22:29:58,729 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:58,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) about to wait for the following futures []
2022-05-12 22:29:58,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) done waiting for dependent futures
2022-05-12 22:29:58,730 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93061120}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 93061120}
2022-05-12 22:29:58,730 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88866816}) to executor  for transfer request: 0.
2022-05-12 22:30:00,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) about to wait for the following futures []
2022-05-12 22:30:00,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) done waiting for dependent futures
2022-05-12 22:30:00,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88866816}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 88866816}
2022-05-12 22:30:00,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:01,472 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:30:01,473 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:01,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:30:01,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:30:01,473 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 24117248}
2022-05-12 22:30:01,474 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:01,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56360960}) to executor  for transfer request: 0.
2022-05-12 22:30:01,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:01,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) about to wait for the following futures []
2022-05-12 22:30:01,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) done waiting for dependent futures
2022-05-12 22:30:01,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56360960}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 56360960}
2022-05-12 22:30:01,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,706 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:30:02,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:30:02,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:30:02,707 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 5505024}
2022-05-12 22:30:02,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:03,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:30:03,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:03,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:30:03,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:30:03,069 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 15466496}
2022-05-12 22:30:03,069 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:03,488 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102236160}) to executor  for transfer request: 0.
2022-05-12 22:30:03,488 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:03,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) about to wait for the following futures []
2022-05-12 22:30:03,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) done waiting for dependent futures
2022-05-12 22:30:03,489 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102236160}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 102236160}
2022-05-12 22:30:03,489 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:04,775 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63700992}) to executor  for transfer request: 0.
2022-05-12 22:30:04,775 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:04,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) about to wait for the following futures []
2022-05-12 22:30:04,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) done waiting for dependent futures
2022-05-12 22:30:04,776 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63700992}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 63700992}
2022-05-12 22:30:04,776 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:07,901 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110624768}) to executor  for transfer request: 0.
2022-05-12 22:30:07,901 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:07,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) about to wait for the following futures []
2022-05-12 22:30:07,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) done waiting for dependent futures
2022-05-12 22:30:07,902 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110624768}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 110624768}
2022-05-12 22:30:07,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:08,589 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93323264}) to executor  for transfer request: 0.
2022-05-12 22:30:08,589 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:08,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) about to wait for the following futures []
2022-05-12 22:30:08,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) done waiting for dependent futures
2022-05-12 22:30:08,590 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93323264}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 93323264}
2022-05-12 22:30:08,590 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:08,901 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:30:08,901 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:08,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:30:08,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:30:08,902 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 21495808}
2022-05-12 22:30:08,902 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:09,056 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89128960}) to executor  for transfer request: 0.
2022-05-12 22:30:09,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:09,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) about to wait for the following futures []
2022-05-12 22:30:09,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) done waiting for dependent futures
2022-05-12 22:30:09,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89128960}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 89128960}
2022-05-12 22:30:09,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:10,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81526784}) to executor  for transfer request: 0.
2022-05-12 22:30:10,942 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:10,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) about to wait for the following futures []
2022-05-12 22:30:10,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) done waiting for dependent futures
2022-05-12 22:30:10,943 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81526784}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 81526784}
2022-05-12 22:30:10,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:11,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:30:11,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:11,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:30:11,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:30:11,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 24379392}
2022-05-12 22:30:11,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:11,603 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63963136}) to executor  for transfer request: 0.
2022-05-12 22:30:11,603 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:11,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) about to wait for the following futures []
2022-05-12 22:30:11,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) done waiting for dependent futures
2022-05-12 22:30:11,603 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63963136}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 63963136}
2022-05-12 22:30:11,604 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:30:13,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:30:13,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:30:13,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 15728640}
2022-05-12 22:30:13,854 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:15,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110886912}) to executor  for transfer request: 0.
2022-05-12 22:30:15,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:15,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) about to wait for the following futures []
2022-05-12 22:30:15,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) done waiting for dependent futures
2022-05-12 22:30:15,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110886912}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 110886912}
2022-05-12 22:30:15,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:16,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89391104}) to executor  for transfer request: 0.
2022-05-12 22:30:16,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:16,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) about to wait for the following futures []
2022-05-12 22:30:16,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) done waiting for dependent futures
2022-05-12 22:30:16,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89391104}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 89391104}
2022-05-12 22:30:16,111 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:16,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102498304}) to executor  for transfer request: 0.
2022-05-12 22:30:16,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:16,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) about to wait for the following futures []
2022-05-12 22:30:16,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) done waiting for dependent futures
2022-05-12 22:30:16,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102498304}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 102498304}
2022-05-12 22:30:16,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:17,304 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:30:17,304 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:17,304 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:30:17,304 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:30:17,304 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 24641536}
2022-05-12 22:30:17,305 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:17,615 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:30:17,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:17,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:30:17,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:30:17,616 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 5767168}
2022-05-12 22:30:17,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:18,951 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93585408}) to executor  for transfer request: 0.
2022-05-12 22:30:18,951 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:18,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) about to wait for the following futures []
2022-05-12 22:30:18,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) done waiting for dependent futures
2022-05-12 22:30:18,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93585408}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 93585408}
2022-05-12 22:30:18,952 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:19,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:30:19,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:19,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:30:19,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:30:19,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 21757952}
2022-05-12 22:30:19,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:22,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111149056}) to executor  for transfer request: 0.
2022-05-12 22:30:22,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:22,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) about to wait for the following futures []
2022-05-12 22:30:22,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) done waiting for dependent futures
2022-05-12 22:30:22,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111149056}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 111149056}
2022-05-12 22:30:22,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:23,540 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89653248}) to executor  for transfer request: 0.
2022-05-12 22:30:23,540 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:23,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) about to wait for the following futures []
2022-05-12 22:30:23,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) done waiting for dependent futures
2022-05-12 22:30:23,541 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89653248}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 89653248}
2022-05-12 22:30:23,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:23,788 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:30:23,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:23,788 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:23,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:30:23,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:30:23,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 24903680}
2022-05-12 22:30:23,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:30:24,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:30:24,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:30:24,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 15990784}
2022-05-12 22:30:24,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64225280}) to executor  for transfer request: 0.
2022-05-12 22:30:24,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) about to wait for the following futures []
2022-05-12 22:30:24,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) done waiting for dependent futures
2022-05-12 22:30:24,790 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64225280}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 64225280}
2022-05-12 22:30:24,791 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:25,070 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102760448}) to executor  for transfer request: 0.
2022-05-12 22:30:25,071 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:25,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) about to wait for the following futures []
2022-05-12 22:30:25,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) done waiting for dependent futures
2022-05-12 22:30:25,072 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102760448}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 102760448}
2022-05-12 22:30:25,072 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:25,629 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81788928}) to executor  for transfer request: 0.
2022-05-12 22:30:25,629 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:25,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) about to wait for the following futures []
2022-05-12 22:30:25,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) done waiting for dependent futures
2022-05-12 22:30:25,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81788928}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 81788928}
2022-05-12 22:30:25,630 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,244 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38273024}) to executor  for transfer request: 0.
2022-05-12 22:30:26,244 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) about to wait for the following futures []
2022-05-12 22:30:26,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) done waiting for dependent futures
2022-05-12 22:30:26,245 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38273024}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 38273024}
2022-05-12 22:30:26,245 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:27,621 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93847552}) to executor  for transfer request: 0.
2022-05-12 22:30:27,621 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:27,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) about to wait for the following futures []
2022-05-12 22:30:27,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) done waiting for dependent futures
2022-05-12 22:30:27,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93847552}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 93847552}
2022-05-12 22:30:27,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:29,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:30:29,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:29,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:30:29,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:30:29,910 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 6029312}
2022-05-12 22:30:29,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:30,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89915392}) to executor  for transfer request: 0.
2022-05-12 22:30:30,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:30,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) about to wait for the following futures []
2022-05-12 22:30:30,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) done waiting for dependent futures
2022-05-12 22:30:30,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89915392}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 89915392}
2022-05-12 22:30:30,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:35,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111411200}) to executor  for transfer request: 0.
2022-05-12 22:30:35,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:35,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) about to wait for the following futures []
2022-05-12 22:30:35,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) done waiting for dependent futures
2022-05-12 22:30:35,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111411200}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 111411200}
2022-05-12 22:30:35,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,632 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:30:36,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:30:36,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:30:36,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 3670016}
2022-05-12 22:30:36,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:37,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103022592}) to executor  for transfer request: 0.
2022-05-12 22:30:37,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:37,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) about to wait for the following futures []
2022-05-12 22:30:37,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) done waiting for dependent futures
2022-05-12 22:30:37,274 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103022592}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 103022592}
2022-05-12 22:30:37,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:38,371 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:30:38,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:38,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:30:38,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:30:38,372 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 16252928}
2022-05-12 22:30:38,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90177536}) to executor  for transfer request: 0.
2022-05-12 22:30:39,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) about to wait for the following futures []
2022-05-12 22:30:39,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) done waiting for dependent futures
2022-05-12 22:30:39,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90177536}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 90177536}
2022-05-12 22:30:39,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:41,970 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94109696}) to executor  for transfer request: 0.
2022-05-12 22:30:41,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:41,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) about to wait for the following futures []
2022-05-12 22:30:41,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) done waiting for dependent futures
2022-05-12 22:30:41,971 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94109696}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 94109696}
2022-05-12 22:30:41,971 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90439680}) to executor  for transfer request: 0.
2022-05-12 22:30:43,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) about to wait for the following futures []
2022-05-12 22:30:43,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) done waiting for dependent futures
2022-05-12 22:30:43,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90439680}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 90439680}
2022-05-12 22:30:43,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,329 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56623104}) to executor  for transfer request: 0.
2022-05-12 22:30:43,329 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) about to wait for the following futures []
2022-05-12 22:30:43,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) done waiting for dependent futures
2022-05-12 22:30:43,330 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56623104}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 56623104}
2022-05-12 22:30:43,330 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:44,366 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:30:44,366 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:30:44,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:30:44,367 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 6291456}
2022-05-12 22:30:44,367 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:44,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38535168}) to executor  for transfer request: 0.
2022-05-12 22:30:44,643 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) about to wait for the following futures []
2022-05-12 22:30:44,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) done waiting for dependent futures
2022-05-12 22:30:44,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38535168}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 38535168}
2022-05-12 22:30:44,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:44,696 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:30:44,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:30:44,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:30:44,697 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 22020096}
2022-05-12 22:30:44,698 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:44,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64487424}) to executor  for transfer request: 0.
2022-05-12 22:30:44,856 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) about to wait for the following futures []
2022-05-12 22:30:44,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) done waiting for dependent futures
2022-05-12 22:30:44,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64487424}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 64487424}
2022-05-12 22:30:44,857 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:48,546 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:30:48,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:48,546 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:30:48,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:48,546 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:48,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:30:48,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:30:48,547 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 16515072}
2022-05-12 22:30:48,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:48,547 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:30:48,548 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:30:48,548 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:30:48,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:48,589 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103284736}) to executor  for transfer request: 0.
2022-05-12 22:30:48,589 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:48,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) about to wait for the following futures []
2022-05-12 22:30:48,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) done waiting for dependent futures
2022-05-12 22:30:48,590 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103284736}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 103284736}
2022-05-12 22:30:48,590 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:48,676 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82051072}) to executor  for transfer request: 0.
2022-05-12 22:30:48,677 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:48,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) about to wait for the following futures []
2022-05-12 22:30:48,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) done waiting for dependent futures
2022-05-12 22:30:48,677 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82051072}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 82051072}
2022-05-12 22:30:48,678 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,854 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94371840}) to executor  for transfer request: 0.
2022-05-12 22:30:49,854 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) about to wait for the following futures []
2022-05-12 22:30:49,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) done waiting for dependent futures
2022-05-12 22:30:49,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94371840}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 94371840}
2022-05-12 22:30:49,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:51,992 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90701824}) to executor  for transfer request: 0.
2022-05-12 22:30:51,992 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:51,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) about to wait for the following futures []
2022-05-12 22:30:51,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) done waiting for dependent futures
2022-05-12 22:30:51,993 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90701824}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 90701824}
2022-05-12 22:30:51,993 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:54,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:30:54,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:54,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:30:54,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:30:54,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 6553600}
2022-05-12 22:30:54,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,064 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56885248}) to executor  for transfer request: 0.
2022-05-12 22:30:55,064 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) about to wait for the following futures []
2022-05-12 22:30:55,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) done waiting for dependent futures
2022-05-12 22:30:55,064 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56885248}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 56885248}
2022-05-12 22:30:55,065 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,174 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38797312}) to executor  for transfer request: 0.
2022-05-12 22:30:55,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) about to wait for the following futures []
2022-05-12 22:30:55,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) done waiting for dependent futures
2022-05-12 22:30:55,175 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38797312}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 38797312}
2022-05-12 22:30:55,175 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:57,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64749568}) to executor  for transfer request: 0.
2022-05-12 22:30:57,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:57,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) about to wait for the following futures []
2022-05-12 22:30:57,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) done waiting for dependent futures
2022-05-12 22:30:57,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64749568}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 64749568}
2022-05-12 22:30:57,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:57,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103546880}) to executor  for transfer request: 0.
2022-05-12 22:30:57,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:57,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) about to wait for the following futures []
2022-05-12 22:30:57,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) done waiting for dependent futures
2022-05-12 22:30:57,443 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103546880}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 103546880}
2022-05-12 22:30:57,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:57,987 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:30:57,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:57,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:30:57,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:30:57,988 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 22282240}
2022-05-12 22:30:57,989 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:59,180 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94633984}) to executor  for transfer request: 0.
2022-05-12 22:30:59,180 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:59,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) about to wait for the following futures []
2022-05-12 22:30:59,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) done waiting for dependent futures
2022-05-12 22:30:59,180 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94633984}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 94633984}
2022-05-12 22:30:59,181 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:59,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90963968}) to executor  for transfer request: 0.
2022-05-12 22:30:59,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:59,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) about to wait for the following futures []
2022-05-12 22:30:59,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) done waiting for dependent futures
2022-05-12 22:30:59,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90963968}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 90963968}
2022-05-12 22:30:59,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:01,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82313216}) to executor  for transfer request: 0.
2022-05-12 22:31:01,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:01,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) about to wait for the following futures []
2022-05-12 22:31:01,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) done waiting for dependent futures
2022-05-12 22:31:01,724 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82313216}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 82313216}
2022-05-12 22:31:01,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:02,917 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39059456}) to executor  for transfer request: 0.
2022-05-12 22:31:02,917 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:02,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) about to wait for the following futures []
2022-05-12 22:31:02,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) done waiting for dependent futures
2022-05-12 22:31:02,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39059456}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 39059456}
2022-05-12 22:31:02,918 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:04,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:31:04,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:04,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:31:04,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:31:04,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 3932160}
2022-05-12 22:31:04,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:05,510 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94896128}) to executor  for transfer request: 0.
2022-05-12 22:31:05,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:05,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) about to wait for the following futures []
2022-05-12 22:31:05,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) done waiting for dependent futures
2022-05-12 22:31:05,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94896128}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 94896128}
2022-05-12 22:31:05,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,864 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57147392}) to executor  for transfer request: 0.
2022-05-12 22:31:06,864 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) about to wait for the following futures []
2022-05-12 22:31:06,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) done waiting for dependent futures
2022-05-12 22:31:06,865 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57147392}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 57147392}
2022-05-12 22:31:06,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:07,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103809024}) to executor  for transfer request: 0.
2022-05-12 22:31:07,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:07,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) about to wait for the following futures []
2022-05-12 22:31:07,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) done waiting for dependent futures
2022-05-12 22:31:07,399 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103809024}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 103809024}
2022-05-12 22:31:07,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:07,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:31:07,594 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:07,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:31:07,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:31:07,594 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 6815744}
2022-05-12 22:31:07,595 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:07,789 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:31:07,789 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:07,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:31:07,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:31:07,790 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 22544384}
2022-05-12 22:31:07,790 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65011712}) to executor  for transfer request: 0.
2022-05-12 22:31:09,651 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) about to wait for the following futures []
2022-05-12 22:31:09,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) done waiting for dependent futures
2022-05-12 22:31:09,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65011712}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 65011712}
2022-05-12 22:31:09,652 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,726 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91226112}) to executor  for transfer request: 0.
2022-05-12 22:31:10,726 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) about to wait for the following futures []
2022-05-12 22:31:10,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) done waiting for dependent futures
2022-05-12 22:31:10,727 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91226112}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 91226112}
2022-05-12 22:31:10,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:14,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82575360}) to executor  for transfer request: 0.
2022-05-12 22:31:14,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:14,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) about to wait for the following futures []
2022-05-12 22:31:14,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) done waiting for dependent futures
2022-05-12 22:31:14,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82575360}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 82575360}
2022-05-12 22:31:14,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:14,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39321600}) to executor  for transfer request: 0.
2022-05-12 22:31:14,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:14,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) about to wait for the following futures []
2022-05-12 22:31:14,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) done waiting for dependent futures
2022-05-12 22:31:14,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39321600}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 39321600}
2022-05-12 22:31:14,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:15,675 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104071168}) to executor  for transfer request: 0.
2022-05-12 22:31:15,675 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:15,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) about to wait for the following futures []
2022-05-12 22:31:15,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) done waiting for dependent futures
2022-05-12 22:31:15,675 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104071168}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 104071168}
2022-05-12 22:31:15,676 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:15,905 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91488256}) to executor  for transfer request: 0.
2022-05-12 22:31:15,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:15,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) about to wait for the following futures []
2022-05-12 22:31:15,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) done waiting for dependent futures
2022-05-12 22:31:15,906 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91488256}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 91488256}
2022-05-12 22:31:15,906 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,261 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95158272}) to executor  for transfer request: 0.
2022-05-12 22:31:16,261 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) about to wait for the following futures []
2022-05-12 22:31:16,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) done waiting for dependent futures
2022-05-12 22:31:16,262 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95158272}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 95158272}
2022-05-12 22:31:16,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:18,521 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:31:18,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:18,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:31:18,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:31:18,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 7077888}
2022-05-12 22:31:18,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:18,892 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111673344}) to executor  for transfer request: 0.
2022-05-12 22:31:18,892 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:18,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) about to wait for the following futures []
2022-05-12 22:31:18,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) done waiting for dependent futures
2022-05-12 22:31:18,893 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111673344}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 111673344}
2022-05-12 22:31:18,894 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,950 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:31:19,950 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:31:19,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:31:19,951 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 22806528}
2022-05-12 22:31:19,951 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:21,960 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57409536}) to executor  for transfer request: 0.
2022-05-12 22:31:21,960 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:21,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) about to wait for the following futures []
2022-05-12 22:31:21,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) done waiting for dependent futures
2022-05-12 22:31:21,961 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57409536}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 57409536}
2022-05-12 22:31:21,961 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:22,102 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91750400}) to executor  for transfer request: 0.
2022-05-12 22:31:22,102 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:22,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) about to wait for the following futures []
2022-05-12 22:31:22,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) done waiting for dependent futures
2022-05-12 22:31:22,103 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91750400}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 91750400}
2022-05-12 22:31:22,103 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:23,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65273856}) to executor  for transfer request: 0.
2022-05-12 22:31:23,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:23,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) about to wait for the following futures []
2022-05-12 22:31:23,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) done waiting for dependent futures
2022-05-12 22:31:23,005 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65273856}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 65273856}
2022-05-12 22:31:23,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:23,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104333312}) to executor  for transfer request: 0.
2022-05-12 22:31:23,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:23,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) about to wait for the following futures []
2022-05-12 22:31:23,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) done waiting for dependent futures
2022-05-12 22:31:23,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104333312}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 104333312}
2022-05-12 22:31:23,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:24,547 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82837504}) to executor  for transfer request: 0.
2022-05-12 22:31:24,547 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:24,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) about to wait for the following futures []
2022-05-12 22:31:24,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) done waiting for dependent futures
2022-05-12 22:31:24,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82837504}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 82837504}
2022-05-12 22:31:24,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:27,276 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:31:27,277 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:27,277 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:31:27,277 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:31:27,277 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 7340032}
2022-05-12 22:31:27,278 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:27,525 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95420416}) to executor  for transfer request: 0.
2022-05-12 22:31:27,525 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:27,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) about to wait for the following futures []
2022-05-12 22:31:27,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) done waiting for dependent futures
2022-05-12 22:31:27,526 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95420416}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 95420416}
2022-05-12 22:31:27,526 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:28,517 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65536000}) to executor  for transfer request: 0.
2022-05-12 22:31:28,517 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:28,517 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) about to wait for the following futures []
2022-05-12 22:31:28,517 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) done waiting for dependent futures
2022-05-12 22:31:28,517 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65536000}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 65536000}
2022-05-12 22:31:28,517 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,187 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57671680}) to executor  for transfer request: 0.
2022-05-12 22:31:29,187 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) about to wait for the following futures []
2022-05-12 22:31:29,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) done waiting for dependent futures
2022-05-12 22:31:29,188 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57671680}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 57671680}
2022-05-12 22:31:29,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,759 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39583744}) to executor  for transfer request: 0.
2022-05-12 22:31:29,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) about to wait for the following futures []
2022-05-12 22:31:29,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) done waiting for dependent futures
2022-05-12 22:31:29,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39583744}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 39583744}
2022-05-12 22:31:29,760 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,817 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92012544}) to executor  for transfer request: 0.
2022-05-12 22:31:30,817 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,818 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) about to wait for the following futures []
2022-05-12 22:31:30,818 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) done waiting for dependent futures
2022-05-12 22:31:30,818 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=117440512-125829119'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 117440512, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:30,818 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:30,818 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:30,818 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:30,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) about to wait for the following futures []
2022-05-12 22:31:30,818 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:30,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) done waiting for dependent futures
2022-05-12 22:31:30,819 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:30,819 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92012544}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 92012544}
2022-05-12 22:31:30,819 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:30,820 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:30,820 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:31:30,820 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:30,820 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,820 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:30,820 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=117440512-125829119', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:30,820 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:30,820 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:30,821 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:30,821 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:30,821 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:30,821 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:30,821 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:31:30,821 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:31:30,821 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:30,821 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=117440512-125829119
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223130Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:30,821 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223130Z
20220512/eu-central-1/s3/aws4_request
0c8c593f01ff9441810ab9da6e4af6e6b2bd0b9fd822522f6c6bad6e7127ff88
2022-05-12 22:31:30,822 botocore.auth DEBUG    Signature:
b4552337091cf5950e0628d3777476c97cf01b8086f47758012b703b92a6e6ab
2022-05-12 22:31:30,822 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:30,822 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:30,822 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:30,822 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:30,823 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:31:33,097 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104595456}) to executor  for transfer request: 0.
2022-05-12 22:31:33,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:33,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) about to wait for the following futures []
2022-05-12 22:31:33,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) done waiting for dependent futures
2022-05-12 22:31:33,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104595456}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 104595456}
2022-05-12 22:31:33,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:33,959 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39845888}) to executor  for transfer request: 0.
2022-05-12 22:31:33,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:33,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) about to wait for the following futures []
2022-05-12 22:31:33,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) done waiting for dependent futures
2022-05-12 22:31:33,960 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39845888}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 39845888}
2022-05-12 22:31:33,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:34,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:31:34,497 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:34,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:31:34,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:31:34,497 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 23068672}
2022-05-12 22:31:34,497 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:34,569 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65798144}) to executor  for transfer request: 0.
2022-05-12 22:31:34,569 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:34,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) about to wait for the following futures []
2022-05-12 22:31:34,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) done waiting for dependent futures
2022-05-12 22:31:34,569 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65798144}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 65798144}
2022-05-12 22:31:34,570 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:34,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111935488}) to executor  for transfer request: 0.
2022-05-12 22:31:34,595 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:34,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) about to wait for the following futures []
2022-05-12 22:31:34,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) done waiting for dependent futures
2022-05-12 22:31:34,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111935488}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 111935488}
2022-05-12 22:31:34,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:35,340 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:31:35,340 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:35,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:31:35,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:31:35,341 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 4194304}
2022-05-12 22:31:35,342 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:36,717 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:36,717 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'lvCSrsEppI3+GCumGw3dkM+6dE54yiMH5nPk1xuTBlRrPqhnlgDNL+bOPQdbeVNDS0dC3ti7WT8GPUgK1Nvavw==', 'x-amz-request-id': '2JD2ZHC4P3BQZV3P', 'Date': 'Thu, 12 May 2022 22:31:37 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 117440512-125829119/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:31:36,717 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:36,718 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:36,718 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:36,718 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:37,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95682560}) to executor  for transfer request: 0.
2022-05-12 22:31:37,584 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) about to wait for the following futures []
2022-05-12 22:31:37,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) done waiting for dependent futures
2022-05-12 22:31:37,584 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95682560}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 95682560}
2022-05-12 22:31:37,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:38,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:31:38,380 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:38,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:31:38,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:31:38,380 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 7602176}
2022-05-12 22:31:38,381 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:39,303 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40108032}) to executor  for transfer request: 0.
2022-05-12 22:31:39,303 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:39,303 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) about to wait for the following futures []
2022-05-12 22:31:39,303 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) done waiting for dependent futures
2022-05-12 22:31:39,304 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40108032}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 40108032}
2022-05-12 22:31:39,304 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:40,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57933824}) to executor  for transfer request: 0.
2022-05-12 22:31:40,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:40,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) about to wait for the following futures []
2022-05-12 22:31:40,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) done waiting for dependent futures
2022-05-12 22:31:40,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57933824}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 57933824}
2022-05-12 22:31:40,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83099648}) to executor  for transfer request: 0.
2022-05-12 22:31:41,221 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) about to wait for the following futures []
2022-05-12 22:31:41,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) done waiting for dependent futures
2022-05-12 22:31:41,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83099648}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 83099648}
2022-05-12 22:31:41,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,640 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104857600}) to executor  for transfer request: 0.
2022-05-12 22:31:42,640 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) about to wait for the following futures []
2022-05-12 22:31:42,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) done waiting for dependent futures
2022-05-12 22:31:42,641 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104857600}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 104857600}
2022-05-12 22:31:42,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:45,521 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95944704}) to executor  for transfer request: 0.
2022-05-12 22:31:45,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:45,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) about to wait for the following futures []
2022-05-12 22:31:45,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) done waiting for dependent futures
2022-05-12 22:31:45,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95944704}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 95944704}
2022-05-12 22:31:45,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:46,555 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66060288}) to executor  for transfer request: 0.
2022-05-12 22:31:46,555 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:46,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) about to wait for the following futures []
2022-05-12 22:31:46,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) done waiting for dependent futures
2022-05-12 22:31:46,556 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66060288}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 66060288}
2022-05-12 22:31:46,556 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:46,667 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117440512}) to executor  for transfer request: 0.
2022-05-12 22:31:46,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:46,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) about to wait for the following futures []
2022-05-12 22:31:46,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) done waiting for dependent futures
2022-05-12 22:31:46,668 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117440512}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 117440512}
2022-05-12 22:31:46,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:47,876 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58195968}) to executor  for transfer request: 0.
2022-05-12 22:31:47,876 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:47,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) about to wait for the following futures []
2022-05-12 22:31:47,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) done waiting for dependent futures
2022-05-12 22:31:47,877 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58195968}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 58195968}
2022-05-12 22:31:47,877 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:47,998 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:31:47,998 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:47,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:31:47,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:31:47,998 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 23330816}
2022-05-12 22:31:47,998 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:48,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:31:48,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:48,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:31:48,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:31:48,532 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 7864320}
2022-05-12 22:31:48,532 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40370176}) to executor  for transfer request: 0.
2022-05-12 22:31:49,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) about to wait for the following futures []
2022-05-12 22:31:49,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) done waiting for dependent futures
2022-05-12 22:31:49,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40370176}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 40370176}
2022-05-12 22:31:49,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,614 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112197632}) to executor  for transfer request: 0.
2022-05-12 22:31:51,615 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) about to wait for the following futures []
2022-05-12 22:31:51,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) done waiting for dependent futures
2022-05-12 22:31:51,615 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112197632}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 112197632}
2022-05-12 22:31:51,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:52,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105119744}) to executor  for transfer request: 0.
2022-05-12 22:31:52,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:52,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) about to wait for the following futures []
2022-05-12 22:31:52,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) done waiting for dependent futures
2022-05-12 22:31:52,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105119744}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 105119744}
2022-05-12 22:31:52,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,356 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96206848}) to executor  for transfer request: 0.
2022-05-12 22:31:54,356 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:54,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) about to wait for the following futures []
2022-05-12 22:31:54,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) done waiting for dependent futures
2022-05-12 22:31:54,357 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96206848}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 96206848}
2022-05-12 22:31:54,357 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58458112}) to executor  for transfer request: 0.
2022-05-12 22:31:54,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:54,902 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,902 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) about to wait for the following futures []
2022-05-12 22:31:54,902 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) done waiting for dependent futures
2022-05-12 22:31:54,902 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=125829120-134217727'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 125829120, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:54,903 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:54,903 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:54,903 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:54,903 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:54,903 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:54,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) about to wait for the following futures []
2022-05-12 22:31:54,903 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:54,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) done waiting for dependent futures
2022-05-12 22:31:54,904 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:54,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58458112}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 58458112}
2022-05-12 22:31:54,904 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:31:54,905 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:54,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,905 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:54,905 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=125829120-134217727', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:54,905 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:54,906 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:54,906 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:54,906 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:54,906 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:54,906 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:54,906 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:31:54,906 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:31:54,906 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:54,906 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=125829120-134217727
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223154Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:54,906 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223154Z
20220512/eu-central-1/s3/aws4_request
eaf175c6f06d0eed0713394cccbef42a13bd2aa881d67a23efd8c271bd9042b6
2022-05-12 22:31:54,906 botocore.auth DEBUG    Signature:
5c6e91c018bf39554feae9f94f82c1fe1036a8efba29c0e222077db6679a47f1
2022-05-12 22:31:54,906 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:54,906 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:54,906 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:54,907 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:55,133 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:55,133 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'G41EOjbO0kmJL+7z+awtAurC9Zj6C+7h6KSMAyuJkMcFkmwcJnibnzMhLaA6JHHrU/pjtjOAwxw=', 'x-amz-request-id': 'QBHY3SRCZ5EKEGEY', 'Date': 'Thu, 12 May 2022 22:31:55 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 125829120-134217727/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:31:55,133 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:55,134 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:55,134 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:55,134 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:55,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117702656}) to executor  for transfer request: 0.
2022-05-12 22:31:55,370 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:55,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) about to wait for the following futures []
2022-05-12 22:31:55,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) done waiting for dependent futures
2022-05-12 22:31:55,371 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117702656}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 117702656}
2022-05-12 22:31:55,371 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:56,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:31:56,105 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:56,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:31:56,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:31:56,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 23592960}
2022-05-12 22:31:56,106 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:57,501 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83361792}) to executor  for transfer request: 0.
2022-05-12 22:31:57,501 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:57,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) about to wait for the following futures []
2022-05-12 22:31:57,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) done waiting for dependent futures
2022-05-12 22:31:57,502 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83361792}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 83361792}
2022-05-12 22:31:57,502 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:57,519 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40632320}) to executor  for transfer request: 0.
2022-05-12 22:31:57,519 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:57,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) about to wait for the following futures []
2022-05-12 22:31:57,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) done waiting for dependent futures
2022-05-12 22:31:57,519 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40632320}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 40632320}
2022-05-12 22:31:57,520 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105381888}) to executor  for transfer request: 0.
2022-05-12 22:32:00,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) about to wait for the following futures []
2022-05-12 22:32:00,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) done waiting for dependent futures
2022-05-12 22:32:00,483 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105381888}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 105381888}
2022-05-12 22:32:00,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,571 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:32:00,571 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,572 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:32:00,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:32:00,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:32:00,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 8126464}
2022-05-12 22:32:00,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,573 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:32:00,573 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:32:00,574 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:32:00,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:01,357 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66322432}) to executor  for transfer request: 0.
2022-05-12 22:32:01,357 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:01,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) about to wait for the following futures []
2022-05-12 22:32:01,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) done waiting for dependent futures
2022-05-12 22:32:01,358 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66322432}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 66322432}
2022-05-12 22:32:01,358 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,779 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125829120}) to executor  for transfer request: 0.
2022-05-12 22:32:04,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,779 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) about to wait for the following futures []
2022-05-12 22:32:04,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) done waiting for dependent futures
2022-05-12 22:32:04,780 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125829120}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 125829120}
2022-05-12 22:32:04,780 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:05,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117964800}) to executor  for transfer request: 0.
2022-05-12 22:32:05,389 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:05,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) about to wait for the following futures []
2022-05-12 22:32:05,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) done waiting for dependent futures
2022-05-12 22:32:05,389 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117964800}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 117964800}
2022-05-12 22:32:05,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:05,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96468992}) to executor  for transfer request: 0.
2022-05-12 22:32:05,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:05,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) about to wait for the following futures []
2022-05-12 22:32:05,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) done waiting for dependent futures
2022-05-12 22:32:05,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96468992}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 96468992}
2022-05-12 22:32:05,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:07,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:32:07,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:07,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:32:07,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:32:07,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 4456448}
2022-05-12 22:32:07,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:07,822 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105644032}) to executor  for transfer request: 0.
2022-05-12 22:32:07,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:07,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) about to wait for the following futures []
2022-05-12 22:32:07,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) done waiting for dependent futures
2022-05-12 22:32:07,823 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105644032}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 105644032}
2022-05-12 22:32:07,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:08,543 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:32:08,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:08,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:32:08,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:32:08,544 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 23855104}
2022-05-12 22:32:08,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:08,582 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66584576}) to executor  for transfer request: 0.
2022-05-12 22:32:08,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:08,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) about to wait for the following futures []
2022-05-12 22:32:08,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) done waiting for dependent futures
2022-05-12 22:32:08,583 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66584576}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 66584576}
2022-05-12 22:32:08,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:09,811 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40894464}) to executor  for transfer request: 0.
2022-05-12 22:32:09,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:09,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) about to wait for the following futures []
2022-05-12 22:32:09,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) done waiting for dependent futures
2022-05-12 22:32:09,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40894464}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 40894464}
2022-05-12 22:32:09,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112459776}) to executor  for transfer request: 0.
2022-05-12 22:32:11,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) about to wait for the following futures []
2022-05-12 22:32:11,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) done waiting for dependent futures
2022-05-12 22:32:11,948 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112459776}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 112459776}
2022-05-12 22:32:11,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,963 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83623936}) to executor  for transfer request: 0.
2022-05-12 22:32:11,963 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,964 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) about to wait for the following futures []
2022-05-12 22:32:11,964 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) about to wait for the following futures []
2022-05-12 22:32:11,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) done waiting for dependent futures
2022-05-12 22:32:11,964 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) done waiting for dependent futures
2022-05-12 22:32:11,964 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83623936}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 83623936}
2022-05-12 22:32:11,965 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=134217728-142606335'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 134217728, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:11,965 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:11,965 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:11,965 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,965 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:11,965 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:11,965 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:11,966 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:11,966 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:11,966 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:11,966 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:11,966 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:11,966 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=134217728-142606335', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:11,966 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:11,966 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:11,966 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:11,966 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:11,966 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:11,966 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:11,966 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:11,967 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:11,967 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:11,967 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=134217728-142606335
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223211Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:11,967 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223211Z
20220512/eu-central-1/s3/aws4_request
d116ff889f0da8ae7a9c9ebeedf85d19799ddb4271e08f4a59cda34d39895a05
2022-05-12 22:32:11,967 botocore.auth DEBUG    Signature:
0d61eac6097a7725a408bddfba45bc55bd2003a6ce9161478857ba152c3c5120
2022-05-12 22:32:11,967 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:11,967 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:11,967 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:11,967 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:11,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126091264}) to executor  for transfer request: 0.
2022-05-12 22:32:11,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) about to wait for the following futures []
2022-05-12 22:32:11,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) done waiting for dependent futures
2022-05-12 22:32:11,998 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126091264}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 126091264}
2022-05-12 22:32:11,998 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:12,194 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:12,194 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'iCfm1FmOtX6CNOwIstR2ZwIn3QVOpp8jV+8UFqCMZNh+LNUVZXzy4mZ4Kg+UL+lR9uZDSn3KiCI=', 'x-amz-request-id': 'JC347CKBPWJ4JY3X', 'Date': 'Thu, 12 May 2022 22:32:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 134217728-142606335/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:12,194 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:12,195 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:12,195 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:12,195 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:12,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118226944}) to executor  for transfer request: 0.
2022-05-12 22:32:12,612 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:12,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) about to wait for the following futures []
2022-05-12 22:32:12,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) done waiting for dependent futures
2022-05-12 22:32:12,612 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118226944}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 118226944}
2022-05-12 22:32:12,613 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:13,763 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96731136}) to executor  for transfer request: 0.
2022-05-12 22:32:13,763 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:13,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) about to wait for the following futures []
2022-05-12 22:32:13,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) done waiting for dependent futures
2022-05-12 22:32:13,764 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96731136}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 96731136}
2022-05-12 22:32:13,764 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:16,193 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66846720}) to executor  for transfer request: 0.
2022-05-12 22:32:16,193 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:16,193 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:16,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) about to wait for the following futures []
2022-05-12 22:32:16,194 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) about to wait for the following futures []
2022-05-12 22:32:16,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) done waiting for dependent futures
2022-05-12 22:32:16,194 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) done waiting for dependent futures
2022-05-12 22:32:16,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66846720}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 66846720}
2022-05-12 22:32:16,194 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=142606336-150994943'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 142606336, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:16,194 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:16,195 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:16,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:16,195 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:16,195 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:16,195 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:16,195 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:16,195 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:16,196 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:16,196 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:16,196 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:16,196 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=142606336-150994943', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:16,196 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:16,196 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:16,196 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:16,196 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:16,196 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:16,196 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:16,196 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:16,197 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:16,197 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:16,197 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=142606336-150994943
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223216Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:16,197 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223216Z
20220512/eu-central-1/s3/aws4_request
d338cf1315b3f25c1001e28c91fc5417b5e0ea2f15c608becad2ef6ab833e656
2022-05-12 22:32:16,197 botocore.auth DEBUG    Signature:
5d00a1675961f4bd0cf61dc885b20a6da50151ed943caa4ffbf4d79eee99f074
2022-05-12 22:32:16,197 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:16,197 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:16,198 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:16,198 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:16,449 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:16,449 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'PzHvTM8UaqOpfAxpOq22alntNR7/Z2+uYfILODDqt8CCUqY3A0YTUkZZUdQPsgAnypqTwqHTfWE=', 'x-amz-request-id': 'VFY7GKTV4NDYV3H2', 'Date': 'Thu, 12 May 2022 22:32:17 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 142606336-150994943/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:16,449 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:16,450 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:16,450 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:16,450 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:18,780 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105906176}) to executor  for transfer request: 0.
2022-05-12 22:32:18,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) about to wait for the following futures []
2022-05-12 22:32:18,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) done waiting for dependent futures
2022-05-12 22:32:18,781 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105906176}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 105906176}
2022-05-12 22:32:18,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,021 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:32:20,021 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:20,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:32:20,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:32:20,022 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 24117248}
2022-05-12 22:32:20,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,189 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126353408}) to executor  for transfer request: 0.
2022-05-12 22:32:20,189 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:20,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) about to wait for the following futures []
2022-05-12 22:32:20,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) done waiting for dependent futures
2022-05-12 22:32:20,190 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126353408}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 126353408}
2022-05-12 22:32:20,190 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:21,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118489088}) to executor  for transfer request: 0.
2022-05-12 22:32:21,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:21,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) about to wait for the following futures []
2022-05-12 22:32:21,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) done waiting for dependent futures
2022-05-12 22:32:21,476 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118489088}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 118489088}
2022-05-12 22:32:21,477 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:21,805 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41156608}) to executor  for transfer request: 0.
2022-05-12 22:32:21,805 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:21,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) about to wait for the following futures []
2022-05-12 22:32:21,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) done waiting for dependent futures
2022-05-12 22:32:21,806 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41156608}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 41156608}
2022-05-12 22:32:21,806 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:22,378 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96993280}) to executor  for transfer request: 0.
2022-05-12 22:32:22,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:22,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) about to wait for the following futures []
2022-05-12 22:32:22,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) done waiting for dependent futures
2022-05-12 22:32:22,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96993280}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 96993280}
2022-05-12 22:32:22,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:22,504 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142606336}) to executor  for transfer request: 0.
2022-05-12 22:32:22,504 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:22,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) about to wait for the following futures []
2022-05-12 22:32:22,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) done waiting for dependent futures
2022-05-12 22:32:22,504 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142606336}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 142606336}
2022-05-12 22:32:22,505 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:24,780 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:32:24,780 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:24,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:32:24,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:32:24,781 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 24379392}
2022-05-12 22:32:24,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:27,159 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97255424}) to executor  for transfer request: 0.
2022-05-12 22:32:27,159 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:27,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) about to wait for the following futures []
2022-05-12 22:32:27,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) done waiting for dependent futures
2022-05-12 22:32:27,160 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97255424}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 97255424}
2022-05-12 22:32:27,160 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:28,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41418752}) to executor  for transfer request: 0.
2022-05-12 22:32:28,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:28,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) about to wait for the following futures []
2022-05-12 22:32:28,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) done waiting for dependent futures
2022-05-12 22:32:28,140 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41418752}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 41418752}
2022-05-12 22:32:28,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,096 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134217728}) to executor  for transfer request: 0.
2022-05-12 22:32:29,096 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) about to wait for the following futures []
2022-05-12 22:32:29,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) done waiting for dependent futures
2022-05-12 22:32:29,097 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134217728}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 134217728}
2022-05-12 22:32:29,097 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126615552}) to executor  for transfer request: 0.
2022-05-12 22:32:29,311 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) about to wait for the following futures []
2022-05-12 22:32:29,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) done waiting for dependent futures
2022-05-12 22:32:29,311 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126615552}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 126615552}
2022-05-12 22:32:29,312 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,543 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142868480}) to executor  for transfer request: 0.
2022-05-12 22:32:29,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) about to wait for the following futures []
2022-05-12 22:32:29,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) done waiting for dependent futures
2022-05-12 22:32:29,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142868480}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 142868480}
2022-05-12 22:32:29,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:30,399 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118751232}) to executor  for transfer request: 0.
2022-05-12 22:32:30,399 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:30,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) about to wait for the following futures []
2022-05-12 22:32:30,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) done waiting for dependent futures
2022-05-12 22:32:30,400 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118751232}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 118751232}
2022-05-12 22:32:30,400 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:30,864 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106168320}) to executor  for transfer request: 0.
2022-05-12 22:32:30,864 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:30,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) about to wait for the following futures []
2022-05-12 22:32:30,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) done waiting for dependent futures
2022-05-12 22:32:30,865 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106168320}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 106168320}
2022-05-12 22:32:30,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:33,825 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112721920}) to executor  for transfer request: 0.
2022-05-12 22:32:33,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:33,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) about to wait for the following futures []
2022-05-12 22:32:33,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) done waiting for dependent futures
2022-05-12 22:32:33,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112721920}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 112721920}
2022-05-12 22:32:33,826 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:36,349 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126877696}) to executor  for transfer request: 0.
2022-05-12 22:32:36,349 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:36,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) about to wait for the following futures []
2022-05-12 22:32:36,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) done waiting for dependent futures
2022-05-12 22:32:36,350 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126877696}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 126877696}
2022-05-12 22:32:36,350 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:37,228 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:32:37,228 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:37,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:32:37,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:32:37,228 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 4718592}
2022-05-12 22:32:37,229 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:37,717 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:32:37,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:37,718 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:32:37,718 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:32:37,718 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 24641536}
2022-05-12 22:32:37,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:37,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41680896}) to executor  for transfer request: 0.
2022-05-12 22:32:37,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:37,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:37,735 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) about to wait for the following futures []
2022-05-12 22:32:37,736 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) done waiting for dependent futures
2022-05-12 22:32:37,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) about to wait for the following futures []
2022-05-12 22:32:37,736 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=150994944-159383551'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 150994944, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:37,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) done waiting for dependent futures
2022-05-12 22:32:37,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:37,737 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41680896}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 41680896}
2022-05-12 22:32:37,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:37,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:37,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:37,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:37,737 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:37,738 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:37,738 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:37,738 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:37,738 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:37,739 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:37,739 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=150994944-159383551', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:37,739 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:37,739 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:37,739 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:37,739 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:37,739 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:37,739 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:37,739 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:37,739 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:37,740 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:37,740 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=150994944-159383551
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223237Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:37,740 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223237Z
20220512/eu-central-1/s3/aws4_request
582d5acbea4fcaf0fad56f411c6f1e49bbc9d42fadc5eba7c8852d177630705b
2022-05-12 22:32:37,740 botocore.auth DEBUG    Signature:
8d3750a23ca4f8b8f6aa1b54bce9487caeaab9c0c6a97bb69a8a31965c55f8dc
2022-05-12 22:32:37,740 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:37,740 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:37,741 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:37,741 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:37,907 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:37,907 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'AEtq+ZvdXXyo+D+8bFc9xnIJ5e12z2if4K88gJT8Q+eYx18hrg+KAPudjprkvcnr1sToZJC79Nw=', 'x-amz-request-id': 'EWMZSKHJQX9Q6MNP', 'Date': 'Thu, 12 May 2022 22:32:38 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 150994944-159383551/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:37,907 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:37,908 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:37,908 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:37,908 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:39,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97517568}) to executor  for transfer request: 0.
2022-05-12 22:32:39,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:39,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) about to wait for the following futures []
2022-05-12 22:32:39,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) done waiting for dependent futures
2022-05-12 22:32:39,150 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97517568}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 97517568}
2022-05-12 22:32:39,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:41,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134479872}) to executor  for transfer request: 0.
2022-05-12 22:32:41,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:41,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) about to wait for the following futures []
2022-05-12 22:32:41,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) done waiting for dependent futures
2022-05-12 22:32:41,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134479872}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 134479872}
2022-05-12 22:32:41,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:41,072 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106430464}) to executor  for transfer request: 0.
2022-05-12 22:32:41,072 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:41,072 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) about to wait for the following futures []
2022-05-12 22:32:41,072 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) done waiting for dependent futures
2022-05-12 22:32:41,073 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106430464}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 106430464}
2022-05-12 22:32:41,073 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:43,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119013376}) to executor  for transfer request: 0.
2022-05-12 22:32:43,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:43,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) about to wait for the following futures []
2022-05-12 22:32:43,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) done waiting for dependent futures
2022-05-12 22:32:43,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119013376}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 119013376}
2022-05-12 22:32:43,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:43,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143130624}) to executor  for transfer request: 0.
2022-05-12 22:32:43,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:43,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) about to wait for the following futures []
2022-05-12 22:32:43,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) done waiting for dependent futures
2022-05-12 22:32:43,569 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143130624}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 143130624}
2022-05-12 22:32:43,570 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:43,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127139840}) to executor  for transfer request: 0.
2022-05-12 22:32:43,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:43,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) about to wait for the following futures []
2022-05-12 22:32:43,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) done waiting for dependent futures
2022-05-12 22:32:43,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127139840}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 127139840}
2022-05-12 22:32:43,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:44,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:32:44,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:44,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:44,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:32:44,666 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) about to wait for the following futures []
2022-05-12 22:32:44,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:32:44,667 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) done waiting for dependent futures
2022-05-12 22:32:44,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 24903680}
2022-05-12 22:32:44,667 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=159383552-167772159'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 159383552, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:44,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:44,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:44,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:44,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:44,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:44,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:44,667 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:44,668 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:44,668 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:44,668 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:44,668 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:44,668 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=159383552-167772159', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:44,668 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:44,668 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:44,668 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:44,668 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:44,668 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:44,668 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:44,668 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:44,668 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:32:44,668 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:44,668 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=159383552-167772159
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223244Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:44,668 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223244Z
20220512/eu-central-1/s3/aws4_request
227300b7c235a649d96ff11147ebf0a56acbef9a98de5d9c1de6724bf85c39bf
2022-05-12 22:32:44,668 botocore.auth DEBUG    Signature:
b89815d2cf4c136b170cf93296788ad9674f0395b8d3744efe921fc8316cf3ca
2022-05-12 22:32:44,669 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:44,669 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:44,669 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:44,669 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:44,836 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:44,837 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'B+t/Vb4oP/Hik4RK0tuT8z4OA3+yw8P1vdoABG6knJZQPTgkg0vkv4S2043V1auNULj8p+FPAyE=', 'x-amz-request-id': 'G9BYCXQYSSY4PGAH', 'Date': 'Thu, 12 May 2022 22:32:45 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 159383552-167772159/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:44,837 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:44,837 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:44,837 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:44,837 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:46,533 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97779712}) to executor  for transfer request: 0.
2022-05-12 22:32:46,533 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:46,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) about to wait for the following futures []
2022-05-12 22:32:46,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) done waiting for dependent futures
2022-05-12 22:32:46,534 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97779712}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 97779712}
2022-05-12 22:32:46,534 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:47,870 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106692608}) to executor  for transfer request: 0.
2022-05-12 22:32:47,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:47,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) about to wait for the following futures []
2022-05-12 22:32:47,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) done waiting for dependent futures
2022-05-12 22:32:47,871 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106692608}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 106692608}
2022-05-12 22:32:47,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:49,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112984064}) to executor  for transfer request: 0.
2022-05-12 22:32:49,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:49,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) about to wait for the following futures []
2022-05-12 22:32:49,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) done waiting for dependent futures
2022-05-12 22:32:49,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112984064}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 112984064}
2022-05-12 22:32:49,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:49,709 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127401984}) to executor  for transfer request: 0.
2022-05-12 22:32:49,709 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:49,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) about to wait for the following futures []
2022-05-12 22:32:49,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) done waiting for dependent futures
2022-05-12 22:32:49,710 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127401984}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 127401984}
2022-05-12 22:32:49,710 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:50,585 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134742016}) to executor  for transfer request: 0.
2022-05-12 22:32:50,585 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:50,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) about to wait for the following futures []
2022-05-12 22:32:50,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) done waiting for dependent futures
2022-05-12 22:32:50,586 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134742016}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 134742016}
2022-05-12 22:32:50,586 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:52,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119275520}) to executor  for transfer request: 0.
2022-05-12 22:32:52,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:52,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) about to wait for the following futures []
2022-05-12 22:32:52,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) done waiting for dependent futures
2022-05-12 22:32:52,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119275520}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 119275520}
2022-05-12 22:32:52,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:53,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106954752}) to executor  for transfer request: 0.
2022-05-12 22:32:53,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:53,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) about to wait for the following futures []
2022-05-12 22:32:53,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) done waiting for dependent futures
2022-05-12 22:32:53,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106954752}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 106954752}
2022-05-12 22:32:53,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:53,716 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98041856}) to executor  for transfer request: 0.
2022-05-12 22:32:53,716 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:53,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) about to wait for the following futures []
2022-05-12 22:32:53,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) done waiting for dependent futures
2022-05-12 22:32:53,716 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98041856}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 98041856}
2022-05-12 22:32:53,717 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:54,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143392768}) to executor  for transfer request: 0.
2022-05-12 22:32:54,945 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:54,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) about to wait for the following futures []
2022-05-12 22:32:54,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) done waiting for dependent futures
2022-05-12 22:32:54,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143392768}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 143392768}
2022-05-12 22:32:54,946 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:56,466 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127664128}) to executor  for transfer request: 0.
2022-05-12 22:32:56,467 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:56,467 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) about to wait for the following futures []
2022-05-12 22:32:56,467 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) done waiting for dependent futures
2022-05-12 22:32:56,467 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127664128}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 127664128}
2022-05-12 22:32:56,468 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,033 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150994944}) to executor  for transfer request: 0.
2022-05-12 22:32:57,033 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) about to wait for the following futures []
2022-05-12 22:32:57,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) done waiting for dependent futures
2022-05-12 22:32:57,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150994944}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 150994944}
2022-05-12 22:32:57,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,228 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113246208}) to executor  for transfer request: 0.
2022-05-12 22:32:57,228 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) about to wait for the following futures []
2022-05-12 22:32:57,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) done waiting for dependent futures
2022-05-12 22:32:57,228 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113246208}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 113246208}
2022-05-12 22:32:57,228 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:59,812 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98304000}) to executor  for transfer request: 0.
2022-05-12 22:32:59,813 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:59,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) about to wait for the following futures []
2022-05-12 22:32:59,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) done waiting for dependent futures
2022-05-12 22:32:59,813 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98304000}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 98304000}
2022-05-12 22:32:59,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:00,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127926272}) to executor  for transfer request: 0.
2022-05-12 22:33:00,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:00,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) about to wait for the following futures []
2022-05-12 22:33:00,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) done waiting for dependent futures
2022-05-12 22:33:00,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127926272}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 127926272}
2022-05-12 22:33:00,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:00,511 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135004160}) to executor  for transfer request: 0.
2022-05-12 22:33:00,511 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:00,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) about to wait for the following futures []
2022-05-12 22:33:00,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) done waiting for dependent futures
2022-05-12 22:33:00,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135004160}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 135004160}
2022-05-12 22:33:00,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:00,932 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107216896}) to executor  for transfer request: 0.
2022-05-12 22:33:00,932 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:00,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) about to wait for the following futures []
2022-05-12 22:33:00,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) done waiting for dependent futures
2022-05-12 22:33:00,933 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107216896}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 107216896}
2022-05-12 22:33:00,933 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159383552}) to executor  for transfer request: 0.
2022-05-12 22:33:01,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) about to wait for the following futures []
2022-05-12 22:33:01,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) done waiting for dependent futures
2022-05-12 22:33:01,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159383552}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 159383552}
2022-05-12 22:33:01,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119537664}) to executor  for transfer request: 0.
2022-05-12 22:33:01,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) about to wait for the following futures []
2022-05-12 22:33:01,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) done waiting for dependent futures
2022-05-12 22:33:01,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119537664}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 119537664}
2022-05-12 22:33:01,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:04,524 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128188416}) to executor  for transfer request: 0.
2022-05-12 22:33:04,524 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:04,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) about to wait for the following futures []
2022-05-12 22:33:04,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) done waiting for dependent futures
2022-05-12 22:33:04,525 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128188416}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 128188416}
2022-05-12 22:33:04,525 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,298 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98566144}) to executor  for transfer request: 0.
2022-05-12 22:33:05,298 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:05,299 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) about to wait for the following futures []
2022-05-12 22:33:05,299 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) done waiting for dependent futures
2022-05-12 22:33:05,299 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98566144}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 98566144}
2022-05-12 22:33:05,300 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,489 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:33:05,490 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:05,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:33:05,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:33:05,490 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 4980736}
2022-05-12 22:33:05,491 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:06,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119799808}) to executor  for transfer request: 0.
2022-05-12 22:33:06,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:06,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) about to wait for the following futures []
2022-05-12 22:33:06,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) done waiting for dependent futures
2022-05-12 22:33:06,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119799808}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 119799808}
2022-05-12 22:33:06,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:07,174 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143654912}) to executor  for transfer request: 0.
2022-05-12 22:33:07,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:07,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) about to wait for the following futures []
2022-05-12 22:33:07,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) done waiting for dependent futures
2022-05-12 22:33:07,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143654912}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 143654912}
2022-05-12 22:33:07,175 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:07,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113508352}) to executor  for transfer request: 0.
2022-05-12 22:33:07,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:07,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) about to wait for the following futures []
2022-05-12 22:33:07,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) done waiting for dependent futures
2022-05-12 22:33:07,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113508352}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 113508352}
2022-05-12 22:33:07,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,223 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151257088}) to executor  for transfer request: 0.
2022-05-12 22:33:10,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) about to wait for the following futures []
2022-05-12 22:33:10,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) done waiting for dependent futures
2022-05-12 22:33:10,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151257088}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 151257088}
2022-05-12 22:33:10,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,607 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135266304}) to executor  for transfer request: 0.
2022-05-12 22:33:10,607 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) about to wait for the following futures []
2022-05-12 22:33:10,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) done waiting for dependent futures
2022-05-12 22:33:10,607 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135266304}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 135266304}
2022-05-12 22:33:10,608 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,839 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128450560}) to executor  for transfer request: 0.
2022-05-12 22:33:10,839 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) about to wait for the following futures []
2022-05-12 22:33:10,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) done waiting for dependent futures
2022-05-12 22:33:10,840 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128450560}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 128450560}
2022-05-12 22:33:10,840 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:11,777 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159645696}) to executor  for transfer request: 0.
2022-05-12 22:33:11,778 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:11,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) about to wait for the following futures []
2022-05-12 22:33:11,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) done waiting for dependent futures
2022-05-12 22:33:11,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159645696}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 159645696}
2022-05-12 22:33:11,779 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98828288}) to executor  for transfer request: 0.
2022-05-12 22:33:13,365 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) about to wait for the following futures []
2022-05-12 22:33:13,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) done waiting for dependent futures
2022-05-12 22:33:13,365 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98828288}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 98828288}
2022-05-12 22:33:13,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107479040}) to executor  for transfer request: 0.
2022-05-12 22:33:13,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) about to wait for the following futures []
2022-05-12 22:33:13,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) done waiting for dependent futures
2022-05-12 22:33:13,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107479040}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 107479040}
2022-05-12 22:33:13,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,158 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151519232}) to executor  for transfer request: 0.
2022-05-12 22:33:14,159 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:14,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) about to wait for the following futures []
2022-05-12 22:33:14,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) done waiting for dependent futures
2022-05-12 22:33:14,159 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151519232}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 151519232}
2022-05-12 22:33:14,160 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,973 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120061952}) to executor  for transfer request: 0.
2022-05-12 22:33:14,973 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:14,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) about to wait for the following futures []
2022-05-12 22:33:14,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) done waiting for dependent futures
2022-05-12 22:33:14,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120061952}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 120061952}
2022-05-12 22:33:14,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:15,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128712704}) to executor  for transfer request: 0.
2022-05-12 22:33:15,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:15,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) about to wait for the following futures []
2022-05-12 22:33:15,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) done waiting for dependent futures
2022-05-12 22:33:15,859 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128712704}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 128712704}
2022-05-12 22:33:15,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:17,271 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143917056}) to executor  for transfer request: 0.
2022-05-12 22:33:17,271 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:17,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) about to wait for the following futures []
2022-05-12 22:33:17,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) done waiting for dependent futures
2022-05-12 22:33:17,271 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143917056}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 143917056}
2022-05-12 22:33:17,272 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:17,887 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113770496}) to executor  for transfer request: 0.
2022-05-12 22:33:17,887 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:17,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) about to wait for the following futures []
2022-05-12 22:33:17,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) done waiting for dependent futures
2022-05-12 22:33:17,888 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113770496}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 113770496}
2022-05-12 22:33:17,888 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:19,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107741184}) to executor  for transfer request: 0.
2022-05-12 22:33:19,395 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:19,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) about to wait for the following futures []
2022-05-12 22:33:19,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) done waiting for dependent futures
2022-05-12 22:33:19,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107741184}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 107741184}
2022-05-12 22:33:19,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:20,082 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151781376}) to executor  for transfer request: 0.
2022-05-12 22:33:20,082 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:20,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) about to wait for the following futures []
2022-05-12 22:33:20,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) done waiting for dependent futures
2022-05-12 22:33:20,083 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151781376}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 151781376}
2022-05-12 22:33:20,083 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:20,400 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99090432}) to executor  for transfer request: 0.
2022-05-12 22:33:20,400 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:20,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) about to wait for the following futures []
2022-05-12 22:33:20,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) done waiting for dependent futures
2022-05-12 22:33:20,401 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99090432}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 99090432}
2022-05-12 22:33:20,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:21,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159907840}) to executor  for transfer request: 0.
2022-05-12 22:33:21,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:21,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) about to wait for the following futures []
2022-05-12 22:33:21,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) done waiting for dependent futures
2022-05-12 22:33:21,103 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159907840}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 159907840}
2022-05-12 22:33:21,103 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:21,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135528448}) to executor  for transfer request: 0.
2022-05-12 22:33:21,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:21,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) about to wait for the following futures []
2022-05-12 22:33:21,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) done waiting for dependent futures
2022-05-12 22:33:21,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135528448}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 135528448}
2022-05-12 22:33:21,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:21,839 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120324096}) to executor  for transfer request: 0.
2022-05-12 22:33:21,839 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:21,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) about to wait for the following futures []
2022-05-12 22:33:21,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) done waiting for dependent futures
2022-05-12 22:33:21,840 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120324096}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 120324096}
2022-05-12 22:33:21,840 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:24,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:33:24,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:24,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:33:24,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:33:24,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 5242880}
2022-05-12 22:33:24,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,277 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160169984}) to executor  for transfer request: 0.
2022-05-12 22:33:25,277 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) about to wait for the following futures []
2022-05-12 22:33:25,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) done waiting for dependent futures
2022-05-12 22:33:25,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160169984}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 160169984}
2022-05-12 22:33:25,278 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,302 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108003328}) to executor  for transfer request: 0.
2022-05-12 22:33:25,302 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) about to wait for the following futures []
2022-05-12 22:33:25,303 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) done waiting for dependent futures
2022-05-12 22:33:25,303 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108003328}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 108003328}
2022-05-12 22:33:25,303 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:26,269 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144179200}) to executor  for transfer request: 0.
2022-05-12 22:33:26,269 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:26,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) about to wait for the following futures []
2022-05-12 22:33:26,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) done waiting for dependent futures
2022-05-12 22:33:26,270 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144179200}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 144179200}
2022-05-12 22:33:26,270 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:26,276 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128974848}) to executor  for transfer request: 0.
2022-05-12 22:33:26,276 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:26,277 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) about to wait for the following futures []
2022-05-12 22:33:26,277 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) done waiting for dependent futures
2022-05-12 22:33:26,277 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128974848}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 128974848}
2022-05-12 22:33:26,277 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:27,409 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152043520}) to executor  for transfer request: 0.
2022-05-12 22:33:27,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:27,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) about to wait for the following futures []
2022-05-12 22:33:27,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) done waiting for dependent futures
2022-05-12 22:33:27,410 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152043520}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 152043520}
2022-05-12 22:33:27,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:29,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114032640}) to executor  for transfer request: 0.
2022-05-12 22:33:29,222 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:29,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) about to wait for the following futures []
2022-05-12 22:33:29,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) done waiting for dependent futures
2022-05-12 22:33:29,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114032640}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 114032640}
2022-05-12 22:33:29,223 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:29,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:33:29,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:29,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:33:29,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:33:29,854 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 5505024}
2022-05-12 22:33:29,854 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,151 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120586240}) to executor  for transfer request: 0.
2022-05-12 22:33:30,151 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) about to wait for the following futures []
2022-05-12 22:33:30,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) done waiting for dependent futures
2022-05-12 22:33:30,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120586240}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 120586240}
2022-05-12 22:33:30,152 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,774 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99352576}) to executor  for transfer request: 0.
2022-05-12 22:33:30,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) about to wait for the following futures []
2022-05-12 22:33:30,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) done waiting for dependent futures
2022-05-12 22:33:30,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99352576}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 99352576}
2022-05-12 22:33:30,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:31,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160432128}) to executor  for transfer request: 0.
2022-05-12 22:33:31,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:31,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) about to wait for the following futures []
2022-05-12 22:33:31,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) done waiting for dependent futures
2022-05-12 22:33:31,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160432128}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 160432128}
2022-05-12 22:33:31,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:34,504 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108265472}) to executor  for transfer request: 0.
2022-05-12 22:33:34,505 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:34,505 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) about to wait for the following futures []
2022-05-12 22:33:34,505 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) done waiting for dependent futures
2022-05-12 22:33:34,505 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108265472}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 108265472}
2022-05-12 22:33:34,506 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:34,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135790592}) to executor  for transfer request: 0.
2022-05-12 22:33:34,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:34,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) about to wait for the following futures []
2022-05-12 22:33:34,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) done waiting for dependent futures
2022-05-12 22:33:34,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135790592}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 135790592}
2022-05-12 22:33:34,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,231 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:33:36,232 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,232 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:33:36,232 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:33:36,232 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 5767168}
2022-05-12 22:33:36,233 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,281 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129236992}) to executor  for transfer request: 0.
2022-05-12 22:33:36,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) about to wait for the following futures []
2022-05-12 22:33:36,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) done waiting for dependent futures
2022-05-12 22:33:36,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129236992}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 129236992}
2022-05-12 22:33:36,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,791 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160694272}) to executor  for transfer request: 0.
2022-05-12 22:33:36,791 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) about to wait for the following futures []
2022-05-12 22:33:36,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) done waiting for dependent futures
2022-05-12 22:33:36,792 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160694272}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 160694272}
2022-05-12 22:33:36,792 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:38,078 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144441344}) to executor  for transfer request: 0.
2022-05-12 22:33:38,078 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:38,078 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) about to wait for the following futures []
2022-05-12 22:33:38,078 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) done waiting for dependent futures
2022-05-12 22:33:38,078 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144441344}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 144441344}
2022-05-12 22:33:38,079 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:38,375 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152305664}) to executor  for transfer request: 0.
2022-05-12 22:33:38,375 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:38,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) about to wait for the following futures []
2022-05-12 22:33:38,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) done waiting for dependent futures
2022-05-12 22:33:38,376 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152305664}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 152305664}
2022-05-12 22:33:38,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:39,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120848384}) to executor  for transfer request: 0.
2022-05-12 22:33:39,195 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:39,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) about to wait for the following futures []
2022-05-12 22:33:39,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) done waiting for dependent futures
2022-05-12 22:33:39,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120848384}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 120848384}
2022-05-12 22:33:39,196 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:39,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99614720}) to executor  for transfer request: 0.
2022-05-12 22:33:39,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:39,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) about to wait for the following futures []
2022-05-12 22:33:39,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) done waiting for dependent futures
2022-05-12 22:33:39,600 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99614720}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 99614720}
2022-05-12 22:33:39,600 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:41,437 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114294784}) to executor  for transfer request: 0.
2022-05-12 22:33:41,437 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:41,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) about to wait for the following futures []
2022-05-12 22:33:41,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) done waiting for dependent futures
2022-05-12 22:33:41,438 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114294784}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 114294784}
2022-05-12 22:33:41,438 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:42,288 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:33:42,288 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:42,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:33:42,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:33:42,289 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 6029312}
2022-05-12 22:33:42,289 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:42,356 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160956416}) to executor  for transfer request: 0.
2022-05-12 22:33:42,356 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:42,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) about to wait for the following futures []
2022-05-12 22:33:42,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) done waiting for dependent futures
2022-05-12 22:33:42,357 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160956416}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 160956416}
2022-05-12 22:33:42,357 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:43,073 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129499136}) to executor  for transfer request: 0.
2022-05-12 22:33:43,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:43,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) about to wait for the following futures []
2022-05-12 22:33:43,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) done waiting for dependent futures
2022-05-12 22:33:43,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129499136}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 129499136}
2022-05-12 22:33:43,074 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:43,322 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108527616}) to executor  for transfer request: 0.
2022-05-12 22:33:43,322 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:43,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) about to wait for the following futures []
2022-05-12 22:33:43,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) done waiting for dependent futures
2022-05-12 22:33:43,322 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108527616}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 108527616}
2022-05-12 22:33:43,323 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144703488}) to executor  for transfer request: 0.
2022-05-12 22:33:44,771 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:44,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) about to wait for the following futures []
2022-05-12 22:33:44,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) done waiting for dependent futures
2022-05-12 22:33:44,771 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144703488}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 144703488}
2022-05-12 22:33:44,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:45,110 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136052736}) to executor  for transfer request: 0.
2022-05-12 22:33:45,110 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:45,111 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) about to wait for the following futures []
2022-05-12 22:33:45,111 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) done waiting for dependent futures
2022-05-12 22:33:45,111 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136052736}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 136052736}
2022-05-12 22:33:45,111 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:47,379 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99876864}) to executor  for transfer request: 0.
2022-05-12 22:33:47,379 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:47,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) about to wait for the following futures []
2022-05-12 22:33:47,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) done waiting for dependent futures
2022-05-12 22:33:47,380 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99876864}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 99876864}
2022-05-12 22:33:47,380 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:49,188 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152567808}) to executor  for transfer request: 0.
2022-05-12 22:33:49,188 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) about to wait for the following futures []
2022-05-12 22:33:49,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) done waiting for dependent futures
2022-05-12 22:33:49,189 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152567808}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 152567808}
2022-05-12 22:33:49,189 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:49,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121110528}) to executor  for transfer request: 0.
2022-05-12 22:33:49,380 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) about to wait for the following futures []
2022-05-12 22:33:49,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) done waiting for dependent futures
2022-05-12 22:33:49,381 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121110528}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 121110528}
2022-05-12 22:33:49,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:49,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161218560}) to executor  for transfer request: 0.
2022-05-12 22:33:49,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) about to wait for the following futures []
2022-05-12 22:33:49,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) done waiting for dependent futures
2022-05-12 22:33:49,390 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161218560}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 161218560}
2022-05-12 22:33:49,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:49,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129761280}) to executor  for transfer request: 0.
2022-05-12 22:33:49,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) about to wait for the following futures []
2022-05-12 22:33:49,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) done waiting for dependent futures
2022-05-12 22:33:49,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129761280}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 129761280}
2022-05-12 22:33:49,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:49,860 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:33:49,860 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:33:49,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:33:49,861 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 6291456}
2022-05-12 22:33:49,861 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:50,384 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114556928}) to executor  for transfer request: 0.
2022-05-12 22:33:50,385 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:50,385 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) about to wait for the following futures []
2022-05-12 22:33:50,385 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) done waiting for dependent futures
2022-05-12 22:33:50,385 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114556928}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 114556928}
2022-05-12 22:33:50,385 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108789760}) to executor  for transfer request: 0.
2022-05-12 22:33:51,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,557 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,557 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) about to wait for the following futures []
2022-05-12 22:33:51,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) about to wait for the following futures []
2022-05-12 22:33:51,558 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) done waiting for dependent futures
2022-05-12 22:33:51,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) done waiting for dependent futures
2022-05-12 22:33:51,558 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=167772160-176160767'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 167772160, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:51,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108789760}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 108789760}
2022-05-12 22:33:51,559 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:51,559 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:51,559 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:51,559 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:51,559 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,559 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:51,560 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:51,560 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:51,560 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:33:51,560 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:51,560 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:51,560 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=167772160-176160767', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:51,560 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:51,560 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:51,560 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:51,561 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:51,561 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:51,561 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:51,561 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:33:51,561 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:33:51,561 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:51,561 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=167772160-176160767
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223351Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:51,561 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223351Z
20220512/eu-central-1/s3/aws4_request
5b4a813674818fc655a9c5fba6e649863e673bb49f9c525345cff5d26736568c
2022-05-12 22:33:51,562 botocore.auth DEBUG    Signature:
cbe079fc9fd5426b064e07c3818d0e8b236a3f06eb0b070212092700542b6507
2022-05-12 22:33:51,562 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:51,562 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:51,562 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:51,562 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:51,563 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:52,910 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:52,910 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'FWFmNfGWfUNm4qU/+LHLg7YS9GTC+eMZK71/mE1anYXX6zdM2cbwzjHzuKuRhmnQjkBsBF6Zubk=', 'x-amz-request-id': 'TC0YM6C6E08W2NDC', 'Date': 'Thu, 12 May 2022 22:33:53 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 167772160-176160767/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:52,910 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:52,911 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:52,911 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:52,911 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:54,814 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161480704}) to executor  for transfer request: 0.
2022-05-12 22:33:54,815 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:54,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) about to wait for the following futures []
2022-05-12 22:33:54,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) done waiting for dependent futures
2022-05-12 22:33:54,815 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161480704}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 161480704}
2022-05-12 22:33:54,816 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:56,403 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100139008}) to executor  for transfer request: 0.
2022-05-12 22:33:56,403 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:56,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) about to wait for the following futures []
2022-05-12 22:33:56,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) done waiting for dependent futures
2022-05-12 22:33:56,404 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100139008}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 100139008}
2022-05-12 22:33:56,404 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:56,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144965632}) to executor  for transfer request: 0.
2022-05-12 22:33:56,643 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:56,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) about to wait for the following futures []
2022-05-12 22:33:56,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) done waiting for dependent futures
2022-05-12 22:33:56,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144965632}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 144965632}
2022-05-12 22:33:56,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:56,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121372672}) to executor  for transfer request: 0.
2022-05-12 22:33:56,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:56,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) about to wait for the following futures []
2022-05-12 22:33:56,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) done waiting for dependent futures
2022-05-12 22:33:56,663 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121372672}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 121372672}
2022-05-12 22:33:56,663 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:57,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:33:57,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:57,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:33:57,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:33:57,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 6553600}
2022-05-12 22:33:57,828 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:58,652 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130023424}) to executor  for transfer request: 0.
2022-05-12 22:33:58,653 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:58,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) about to wait for the following futures []
2022-05-12 22:33:58,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) done waiting for dependent futures
2022-05-12 22:33:58,653 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130023424}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 130023424}
2022-05-12 22:33:58,654 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:58,828 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136314880}) to executor  for transfer request: 0.
2022-05-12 22:33:58,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:58,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) about to wait for the following futures []
2022-05-12 22:33:58,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) done waiting for dependent futures
2022-05-12 22:33:58,829 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136314880}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 136314880}
2022-05-12 22:33:58,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:58,900 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152829952}) to executor  for transfer request: 0.
2022-05-12 22:33:58,900 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:58,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) about to wait for the following futures []
2022-05-12 22:33:58,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) done waiting for dependent futures
2022-05-12 22:33:58,900 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152829952}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 152829952}
2022-05-12 22:33:58,900 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:00,571 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161742848}) to executor  for transfer request: 0.
2022-05-12 22:34:00,571 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:00,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) about to wait for the following futures []
2022-05-12 22:34:00,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) done waiting for dependent futures
2022-05-12 22:34:00,572 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161742848}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 161742848}
2022-05-12 22:34:00,572 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114819072}) to executor  for transfer request: 0.
2022-05-12 22:34:01,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:01,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) about to wait for the following futures []
2022-05-12 22:34:01,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) done waiting for dependent futures
2022-05-12 22:34:01,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114819072}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 114819072}
2022-05-12 22:34:01,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:04,275 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130285568}) to executor  for transfer request: 0.
2022-05-12 22:34:04,276 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:04,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) about to wait for the following futures []
2022-05-12 22:34:04,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) done waiting for dependent futures
2022-05-12 22:34:04,276 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130285568}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 130285568}
2022-05-12 22:34:04,277 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:05,554 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162004992}) to executor  for transfer request: 0.
2022-05-12 22:34:05,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:05,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) about to wait for the following futures []
2022-05-12 22:34:05,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) done waiting for dependent futures
2022-05-12 22:34:05,555 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162004992}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 162004992}
2022-05-12 22:34:05,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:05,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:34:05,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:05,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:34:05,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:34:05,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 6815744}
2022-05-12 22:34:05,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,169 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145227776}) to executor  for transfer request: 0.
2022-05-12 22:34:06,169 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) about to wait for the following futures []
2022-05-12 22:34:06,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) done waiting for dependent futures
2022-05-12 22:34:06,170 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145227776}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 145227776}
2022-05-12 22:34:06,170 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,314 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121634816}) to executor  for transfer request: 0.
2022-05-12 22:34:06,314 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) about to wait for the following futures []
2022-05-12 22:34:06,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) done waiting for dependent futures
2022-05-12 22:34:06,314 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121634816}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 121634816}
2022-05-12 22:34:06,315 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:07,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167772160}) to executor  for transfer request: 0.
2022-05-12 22:34:07,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:07,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) about to wait for the following futures []
2022-05-12 22:34:07,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) done waiting for dependent futures
2022-05-12 22:34:07,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167772160}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 167772160}
2022-05-12 22:34:07,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:08,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153092096}) to executor  for transfer request: 0.
2022-05-12 22:34:08,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:08,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) about to wait for the following futures []
2022-05-12 22:34:08,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) done waiting for dependent futures
2022-05-12 22:34:08,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153092096}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 153092096}
2022-05-12 22:34:08,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:09,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130547712}) to executor  for transfer request: 0.
2022-05-12 22:34:09,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:09,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) about to wait for the following futures []
2022-05-12 22:34:09,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) done waiting for dependent futures
2022-05-12 22:34:09,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130547712}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 130547712}
2022-05-12 22:34:09,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136577024}) to executor  for transfer request: 0.
2022-05-12 22:34:10,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) about to wait for the following futures []
2022-05-12 22:34:10,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) done waiting for dependent futures
2022-05-12 22:34:10,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136577024}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 136577024}
2022-05-12 22:34:10,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,946 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115081216}) to executor  for transfer request: 0.
2022-05-12 22:34:10,946 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) about to wait for the following futures []
2022-05-12 22:34:10,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) done waiting for dependent futures
2022-05-12 22:34:10,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115081216}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 115081216}
2022-05-12 22:34:10,947 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:11,072 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100401152}) to executor  for transfer request: 0.
2022-05-12 22:34:11,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:11,073 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:11,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) about to wait for the following futures []
2022-05-12 22:34:11,073 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) about to wait for the following futures []
2022-05-12 22:34:11,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) done waiting for dependent futures
2022-05-12 22:34:11,073 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) done waiting for dependent futures
2022-05-12 22:34:11,073 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100401152}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 100401152}
2022-05-12 22:34:11,073 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=176160768-184549375'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 176160768, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:34:11,074 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:11,074 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:11,074 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:11,074 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:11,074 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:11,074 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:11,075 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:11,075 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:34:11,075 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:34:11,075 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:11,075 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:11,075 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=176160768-184549375', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:34:11,075 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:11,075 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:34:11,075 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:11,075 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:11,076 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:34:11,076 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:34:11,076 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:34:11,076 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:34:11,076 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:34:11,076 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=176160768-184549375
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223411Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:34:11,076 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223411Z
20220512/eu-central-1/s3/aws4_request
b88960e9f7c109c7ee5ec8fba84160c5de79fe6b8dac93c98ff95a0e69f556d6
2022-05-12 22:34:11,076 botocore.auth DEBUG    Signature:
5f89ad27b77bac12d9d106e27a422b332c35fe0b9e283e3602c259a87c3c81aa
2022-05-12 22:34:11,077 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:11,077 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:11,077 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:34:11,077 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:34:11,257 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:34:11,257 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Empd9oftrFJ67MJwrpzH5QwaXeXF8cZHxAkxjkHV8OiB97cTA7dIf+7qK6VoKa/RFxzmfBWT6Zo=', 'x-amz-request-id': 'KQXBZ5TVXYEVCWQD', 'Date': 'Thu, 12 May 2022 22:34:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 176160768-184549375/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:34:11,257 botocore.parsers DEBUG    Response body:

2022-05-12 22:34:11,258 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:34:11,258 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:34:11,258 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:34:11,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162267136}) to executor  for transfer request: 0.
2022-05-12 22:34:11,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:11,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) about to wait for the following futures []
2022-05-12 22:34:11,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) done waiting for dependent futures
2022-05-12 22:34:11,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162267136}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 162267136}
2022-05-12 22:34:11,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,188 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:34:13,188 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:34:13,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:34:13,190 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 7077888}
2022-05-12 22:34:13,190 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:14,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121896960}) to executor  for transfer request: 0.
2022-05-12 22:34:14,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:14,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) about to wait for the following futures []
2022-05-12 22:34:14,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) done waiting for dependent futures
2022-05-12 22:34:14,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121896960}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 121896960}
2022-05-12 22:34:14,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:15,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168034304}) to executor  for transfer request: 0.
2022-05-12 22:34:15,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:15,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) about to wait for the following futures []
2022-05-12 22:34:15,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) done waiting for dependent futures
2022-05-12 22:34:15,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168034304}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 168034304}
2022-05-12 22:34:15,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:17,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115343360}) to executor  for transfer request: 0.
2022-05-12 22:34:17,147 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:17,147 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) about to wait for the following futures []
2022-05-12 22:34:17,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) done waiting for dependent futures
2022-05-12 22:34:17,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115343360}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 115343360}
2022-05-12 22:34:17,148 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:17,578 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145489920}) to executor  for transfer request: 0.
2022-05-12 22:34:17,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:17,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) about to wait for the following futures []
2022-05-12 22:34:17,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) done waiting for dependent futures
2022-05-12 22:34:17,579 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145489920}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 145489920}
2022-05-12 22:34:17,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:18,486 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176160768}) to executor  for transfer request: 0.
2022-05-12 22:34:18,487 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:18,487 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) about to wait for the following futures []
2022-05-12 22:34:18,487 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) done waiting for dependent futures
2022-05-12 22:34:18,487 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176160768}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 176160768}
2022-05-12 22:34:18,488 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,191 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162529280}) to executor  for transfer request: 0.
2022-05-12 22:34:19,191 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) about to wait for the following futures []
2022-05-12 22:34:19,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) done waiting for dependent futures
2022-05-12 22:34:19,191 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162529280}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 162529280}
2022-05-12 22:34:19,192 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130809856}) to executor  for transfer request: 0.
2022-05-12 22:34:19,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) about to wait for the following futures []
2022-05-12 22:34:19,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) done waiting for dependent futures
2022-05-12 22:34:19,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130809856}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 130809856}
2022-05-12 22:34:19,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:20,270 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153354240}) to executor  for transfer request: 0.
2022-05-12 22:34:20,270 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:20,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) about to wait for the following futures []
2022-05-12 22:34:20,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) done waiting for dependent futures
2022-05-12 22:34:20,271 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153354240}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 153354240}
2022-05-12 22:34:20,271 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:21,995 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:34:21,995 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:21,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:34:21,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:34:21,996 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 7340032}
2022-05-12 22:34:21,996 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:22,407 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122159104}) to executor  for transfer request: 0.
2022-05-12 22:34:22,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:22,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) about to wait for the following futures []
2022-05-12 22:34:22,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) done waiting for dependent futures
2022-05-12 22:34:22,408 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122159104}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 122159104}
2022-05-12 22:34:22,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136839168}) to executor  for transfer request: 0.
2022-05-12 22:34:24,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:24,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) about to wait for the following futures []
2022-05-12 22:34:24,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) done waiting for dependent futures
2022-05-12 22:34:24,926 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136839168}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 136839168}
2022-05-12 22:34:24,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,940 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145752064}) to executor  for transfer request: 0.
2022-05-12 22:34:24,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:24,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) about to wait for the following futures []
2022-05-12 22:34:24,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) done waiting for dependent futures
2022-05-12 22:34:24,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145752064}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 145752064}
2022-05-12 22:34:24,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162791424}) to executor  for transfer request: 0.
2022-05-12 22:34:24,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:24,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) about to wait for the following futures []
2022-05-12 22:34:24,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) done waiting for dependent futures
2022-05-12 22:34:24,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162791424}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 162791424}
2022-05-12 22:34:24,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:25,088 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168296448}) to executor  for transfer request: 0.
2022-05-12 22:34:25,088 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:25,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) about to wait for the following futures []
2022-05-12 22:34:25,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) done waiting for dependent futures
2022-05-12 22:34:25,089 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168296448}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 168296448}
2022-05-12 22:34:25,089 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:27,213 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176422912}) to executor  for transfer request: 0.
2022-05-12 22:34:27,214 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:27,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) about to wait for the following futures []
2022-05-12 22:34:27,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) done waiting for dependent futures
2022-05-12 22:34:27,214 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176422912}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 176422912}
2022-05-12 22:34:27,214 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:28,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153616384}) to executor  for transfer request: 0.
2022-05-12 22:34:28,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:28,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) about to wait for the following futures []
2022-05-12 22:34:28,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) done waiting for dependent futures
2022-05-12 22:34:28,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153616384}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 153616384}
2022-05-12 22:34:28,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:29,588 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146014208}) to executor  for transfer request: 0.
2022-05-12 22:34:29,589 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:29,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) about to wait for the following futures []
2022-05-12 22:34:29,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) done waiting for dependent futures
2022-05-12 22:34:29,589 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146014208}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 146014208}
2022-05-12 22:34:29,590 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:29,937 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131072000}) to executor  for transfer request: 0.
2022-05-12 22:34:29,938 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:29,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) about to wait for the following futures []
2022-05-12 22:34:29,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) done waiting for dependent futures
2022-05-12 22:34:29,938 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131072000}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 131072000}
2022-05-12 22:34:29,939 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:29,967 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122421248}) to executor  for transfer request: 0.
2022-05-12 22:34:29,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:29,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) about to wait for the following futures []
2022-05-12 22:34:29,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) done waiting for dependent futures
2022-05-12 22:34:29,968 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122421248}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 122421248}
2022-05-12 22:34:29,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115605504}) to executor  for transfer request: 0.
2022-05-12 22:34:31,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) about to wait for the following futures []
2022-05-12 22:34:31,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) done waiting for dependent futures
2022-05-12 22:34:31,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115605504}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 115605504}
2022-05-12 22:34:31,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163053568}) to executor  for transfer request: 0.
2022-05-12 22:34:31,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) about to wait for the following futures []
2022-05-12 22:34:31,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) done waiting for dependent futures
2022-05-12 22:34:31,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163053568}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 163053568}
2022-05-12 22:34:31,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:32,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:34:32,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:32,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:34:32,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:34:32,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 7602176}
2022-05-12 22:34:32,679 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:33,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176685056}) to executor  for transfer request: 0.
2022-05-12 22:34:33,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:33,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) about to wait for the following futures []
2022-05-12 22:34:33,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) done waiting for dependent futures
2022-05-12 22:34:33,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176685056}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 176685056}
2022-05-12 22:34:33,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,230 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146276352}) to executor  for transfer request: 0.
2022-05-12 22:34:37,230 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) about to wait for the following futures []
2022-05-12 22:34:37,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) done waiting for dependent futures
2022-05-12 22:34:37,231 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146276352}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 146276352}
2022-05-12 22:34:37,231 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,962 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115867648}) to executor  for transfer request: 0.
2022-05-12 22:34:37,962 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) about to wait for the following futures []
2022-05-12 22:34:37,963 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) done waiting for dependent futures
2022-05-12 22:34:37,963 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115867648}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 115867648}
2022-05-12 22:34:37,963 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:38,331 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131334144}) to executor  for transfer request: 0.
2022-05-12 22:34:38,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:38,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) about to wait for the following futures []
2022-05-12 22:34:38,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) done waiting for dependent futures
2022-05-12 22:34:38,332 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131334144}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 131334144}
2022-05-12 22:34:38,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:38,336 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168558592}) to executor  for transfer request: 0.
2022-05-12 22:34:38,336 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:38,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) about to wait for the following futures []
2022-05-12 22:34:38,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) done waiting for dependent futures
2022-05-12 22:34:38,337 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168558592}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 168558592}
2022-05-12 22:34:38,337 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153878528}) to executor  for transfer request: 0.
2022-05-12 22:34:39,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) about to wait for the following futures []
2022-05-12 22:34:39,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) done waiting for dependent futures
2022-05-12 22:34:39,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153878528}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 153878528}
2022-05-12 22:34:39,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:40,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:34:40,841 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:40,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:34:40,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:34:40,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 7864320}
2022-05-12 22:34:40,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:40,882 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163315712}) to executor  for transfer request: 0.
2022-05-12 22:34:40,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:40,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) about to wait for the following futures []
2022-05-12 22:34:40,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) done waiting for dependent futures
2022-05-12 22:34:40,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163315712}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 163315712}
2022-05-12 22:34:40,884 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:41,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122683392}) to executor  for transfer request: 0.
2022-05-12 22:34:41,273 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) about to wait for the following futures []
2022-05-12 22:34:41,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) done waiting for dependent futures
2022-05-12 22:34:41,274 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122683392}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 122683392}
2022-05-12 22:34:41,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:42,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176947200}) to executor  for transfer request: 0.
2022-05-12 22:34:42,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:42,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) about to wait for the following futures []
2022-05-12 22:34:42,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) done waiting for dependent futures
2022-05-12 22:34:42,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176947200}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 176947200}
2022-05-12 22:34:42,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:45,112 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146538496}) to executor  for transfer request: 0.
2022-05-12 22:34:45,112 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:45,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) about to wait for the following futures []
2022-05-12 22:34:45,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) done waiting for dependent futures
2022-05-12 22:34:45,113 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146538496}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 146538496}
2022-05-12 22:34:45,113 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:47,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154140672}) to executor  for transfer request: 0.
2022-05-12 22:34:47,203 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:47,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) about to wait for the following futures []
2022-05-12 22:34:47,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) done waiting for dependent futures
2022-05-12 22:34:47,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154140672}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 154140672}
2022-05-12 22:34:47,204 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,302 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131596288}) to executor  for transfer request: 0.
2022-05-12 22:34:48,302 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) about to wait for the following futures []
2022-05-12 22:34:48,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) done waiting for dependent futures
2022-05-12 22:34:48,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131596288}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 131596288}
2022-05-12 22:34:48,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163577856}) to executor  for transfer request: 0.
2022-05-12 22:34:48,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) about to wait for the following futures []
2022-05-12 22:34:48,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) done waiting for dependent futures
2022-05-12 22:34:48,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163577856}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 163577856}
2022-05-12 22:34:48,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:49,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116129792}) to executor  for transfer request: 0.
2022-05-12 22:34:49,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:49,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) about to wait for the following futures []
2022-05-12 22:34:49,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) done waiting for dependent futures
2022-05-12 22:34:49,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116129792}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 116129792}
2022-05-12 22:34:49,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:50,871 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168820736}) to executor  for transfer request: 0.
2022-05-12 22:34:50,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:50,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) about to wait for the following futures []
2022-05-12 22:34:50,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) done waiting for dependent futures
2022-05-12 22:34:50,872 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168820736}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 168820736}
2022-05-12 22:34:50,873 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122945536}) to executor  for transfer request: 0.
2022-05-12 22:34:52,981 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) about to wait for the following futures []
2022-05-12 22:34:52,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) done waiting for dependent futures
2022-05-12 22:34:52,981 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122945536}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 122945536}
2022-05-12 22:34:52,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:53,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146800640}) to executor  for transfer request: 0.
2022-05-12 22:34:53,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:53,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) about to wait for the following futures []
2022-05-12 22:34:53,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) done waiting for dependent futures
2022-05-12 22:34:53,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146800640}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 146800640}
2022-05-12 22:34:53,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,012 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177209344}) to executor  for transfer request: 0.
2022-05-12 22:34:54,012 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) about to wait for the following futures []
2022-05-12 22:34:54,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) done waiting for dependent futures
2022-05-12 22:34:54,012 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177209344}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 177209344}
2022-05-12 22:34:54,013 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,108 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131858432}) to executor  for transfer request: 0.
2022-05-12 22:34:54,108 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) about to wait for the following futures []
2022-05-12 22:34:54,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) done waiting for dependent futures
2022-05-12 22:34:54,109 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131858432}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 131858432}
2022-05-12 22:34:54,109 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163840000}) to executor  for transfer request: 0.
2022-05-12 22:34:54,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) about to wait for the following futures []
2022-05-12 22:34:54,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) done waiting for dependent futures
2022-05-12 22:34:54,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163840000}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 163840000}
2022-05-12 22:34:54,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:56,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154402816}) to executor  for transfer request: 0.
2022-05-12 22:34:56,025 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:56,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) about to wait for the following futures []
2022-05-12 22:34:56,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) done waiting for dependent futures
2022-05-12 22:34:56,025 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154402816}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 154402816}
2022-05-12 22:34:56,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:34:57,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:57,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:34:57,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:34:57,601 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) about to wait for the following futures []
2022-05-12 22:34:57,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 8126464}
2022-05-12 22:34:57,602 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) done waiting for dependent futures
2022-05-12 22:34:57,602 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=184549376-192937983'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 184549376, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:34:57,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,603 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:57,603 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:57,603 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:57,603 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:57,603 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:57,604 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:57,604 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:34:57,604 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:34:57,604 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:57,604 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:57,604 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=184549376-192937983', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:34:57,604 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:57,604 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:34:57,604 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:57,604 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:57,605 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:34:57,605 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:34:57,605 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:34:57,605 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:34:57,605 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:34:57,605 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=184549376-192937983
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223457Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:34:57,605 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223457Z
20220512/eu-central-1/s3/aws4_request
82fefeda5696c0b40e0130a3914597bd85d632e6c6e03fd73894616e45e21359
2022-05-12 22:34:57,605 botocore.auth DEBUG    Signature:
119016a071b5900c7b8c5b9c500b097414a6ef07e27b1de24eea01011fd5d2e2
2022-05-12 22:34:57,606 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:57,606 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:57,606 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:34:57,607 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:34:57,607 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:34:58,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147062784}) to executor  for transfer request: 0.
2022-05-12 22:34:58,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:58,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) about to wait for the following futures []
2022-05-12 22:34:58,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) done waiting for dependent futures
2022-05-12 22:34:58,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147062784}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 147062784}
2022-05-12 22:34:58,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:58,950 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116391936}) to executor  for transfer request: 0.
2022-05-12 22:34:58,950 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:58,950 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) about to wait for the following futures []
2022-05-12 22:34:58,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) done waiting for dependent futures
2022-05-12 22:34:58,951 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116391936}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 116391936}
2022-05-12 22:34:58,951 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:59,019 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:34:59,019 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'zCwyLXYTRaQ3wEDGIWaNbDVxJJEVe03icr8pwn0f2d8B6xHBzuWqCFyXZzSR9pNk+Yn5TppfJ8E=', 'x-amz-request-id': '2J588H31TPPPJGG9', 'Date': 'Thu, 12 May 2022 22:34:59 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 184549376-192937983/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:34:59,019 botocore.parsers DEBUG    Response body:

2022-05-12 22:34:59,020 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:34:59,020 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:34:59,020 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:34:59,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132120576}) to executor  for transfer request: 0.
2022-05-12 22:34:59,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:59,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) about to wait for the following futures []
2022-05-12 22:34:59,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) done waiting for dependent futures
2022-05-12 22:34:59,477 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132120576}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 132120576}
2022-05-12 22:34:59,477 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:00,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169082880}) to executor  for transfer request: 0.
2022-05-12 22:35:00,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:00,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) about to wait for the following futures []
2022-05-12 22:35:00,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) done waiting for dependent futures
2022-05-12 22:35:00,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169082880}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 169082880}
2022-05-12 22:35:00,117 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:01,486 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164102144}) to executor  for transfer request: 0.
2022-05-12 22:35:01,486 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:01,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) about to wait for the following futures []
2022-05-12 22:35:01,487 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) done waiting for dependent futures
2022-05-12 22:35:01,487 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164102144}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 164102144}
2022-05-12 22:35:01,487 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:01,567 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123207680}) to executor  for transfer request: 0.
2022-05-12 22:35:01,567 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:01,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) about to wait for the following futures []
2022-05-12 22:35:01,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) done waiting for dependent futures
2022-05-12 22:35:01,568 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123207680}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 123207680}
2022-05-12 22:35:01,568 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:03,336 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154664960}) to executor  for transfer request: 0.
2022-05-12 22:35:03,336 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:03,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) about to wait for the following futures []
2022-05-12 22:35:03,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) done waiting for dependent futures
2022-05-12 22:35:03,337 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154664960}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 154664960}
2022-05-12 22:35:03,337 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:03,918 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137101312}) to executor  for transfer request: 0.
2022-05-12 22:35:03,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:03,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) about to wait for the following futures []
2022-05-12 22:35:03,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) done waiting for dependent futures
2022-05-12 22:35:03,920 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137101312}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 137101312}
2022-05-12 22:35:03,920 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:04,270 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147324928}) to executor  for transfer request: 0.
2022-05-12 22:35:04,270 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:04,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) about to wait for the following futures []
2022-05-12 22:35:04,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) done waiting for dependent futures
2022-05-12 22:35:04,271 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147324928}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 147324928}
2022-05-12 22:35:04,271 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,129 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177471488}) to executor  for transfer request: 0.
2022-05-12 22:35:06,129 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) about to wait for the following futures []
2022-05-12 22:35:06,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) done waiting for dependent futures
2022-05-12 22:35:06,130 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177471488}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 177471488}
2022-05-12 22:35:06,130 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,718 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132382720}) to executor  for transfer request: 0.
2022-05-12 22:35:06,718 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,718 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) about to wait for the following futures []
2022-05-12 22:35:06,719 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) done waiting for dependent futures
2022-05-12 22:35:06,719 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132382720}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 132382720}
2022-05-12 22:35:06,719 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,876 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164364288}) to executor  for transfer request: 0.
2022-05-12 22:35:06,876 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) about to wait for the following futures []
2022-05-12 22:35:06,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) done waiting for dependent futures
2022-05-12 22:35:06,877 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164364288}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 164364288}
2022-05-12 22:35:06,877 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:07,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184549376}) to executor  for transfer request: 0.
2022-05-12 22:35:07,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:07,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) about to wait for the following futures []
2022-05-12 22:35:07,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) done waiting for dependent futures
2022-05-12 22:35:07,496 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184549376}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 184549376}
2022-05-12 22:35:07,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,193 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116654080}) to executor  for transfer request: 0.
2022-05-12 22:35:09,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) about to wait for the following futures []
2022-05-12 22:35:09,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) done waiting for dependent futures
2022-05-12 22:35:09,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116654080}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 116654080}
2022-05-12 22:35:09,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,784 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132644864}) to executor  for transfer request: 0.
2022-05-12 22:35:10,785 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) about to wait for the following futures []
2022-05-12 22:35:10,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) done waiting for dependent futures
2022-05-12 22:35:10,785 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132644864}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 132644864}
2022-05-12 22:35:10,786 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,911 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147587072}) to executor  for transfer request: 0.
2022-05-12 22:35:10,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) about to wait for the following futures []
2022-05-12 22:35:10,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) done waiting for dependent futures
2022-05-12 22:35:10,912 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147587072}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 147587072}
2022-05-12 22:35:10,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:11,176 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169345024}) to executor  for transfer request: 0.
2022-05-12 22:35:11,177 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:11,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) about to wait for the following futures []
2022-05-12 22:35:11,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) done waiting for dependent futures
2022-05-12 22:35:11,177 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169345024}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 169345024}
2022-05-12 22:35:11,178 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:11,817 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154927104}) to executor  for transfer request: 0.
2022-05-12 22:35:11,817 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:11,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) about to wait for the following futures []
2022-05-12 22:35:11,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) done waiting for dependent futures
2022-05-12 22:35:11,818 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154927104}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 154927104}
2022-05-12 22:35:11,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:12,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123469824}) to executor  for transfer request: 0.
2022-05-12 22:35:12,545 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:12,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) about to wait for the following futures []
2022-05-12 22:35:12,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) done waiting for dependent futures
2022-05-12 22:35:12,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123469824}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 123469824}
2022-05-12 22:35:12,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:12,967 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164626432}) to executor  for transfer request: 0.
2022-05-12 22:35:12,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:12,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) about to wait for the following futures []
2022-05-12 22:35:12,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) done waiting for dependent futures
2022-05-12 22:35:12,968 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164626432}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 164626432}
2022-05-12 22:35:12,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:13,896 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184811520}) to executor  for transfer request: 0.
2022-05-12 22:35:13,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:13,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) about to wait for the following futures []
2022-05-12 22:35:13,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) done waiting for dependent futures
2022-05-12 22:35:13,897 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184811520}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 184811520}
2022-05-12 22:35:13,897 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:14,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177733632}) to executor  for transfer request: 0.
2022-05-12 22:35:14,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:14,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) about to wait for the following futures []
2022-05-12 22:35:14,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) done waiting for dependent futures
2022-05-12 22:35:14,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177733632}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 177733632}
2022-05-12 22:35:14,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:14,772 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147849216}) to executor  for transfer request: 0.
2022-05-12 22:35:14,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:14,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) about to wait for the following futures []
2022-05-12 22:35:14,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) done waiting for dependent futures
2022-05-12 22:35:14,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147849216}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 147849216}
2022-05-12 22:35:14,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:18,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155189248}) to executor  for transfer request: 0.
2022-05-12 22:35:18,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:18,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) about to wait for the following futures []
2022-05-12 22:35:18,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) done waiting for dependent futures
2022-05-12 22:35:18,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155189248}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 155189248}
2022-05-12 22:35:18,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:19,697 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148111360}) to executor  for transfer request: 0.
2022-05-12 22:35:19,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:19,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) about to wait for the following futures []
2022-05-12 22:35:19,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) done waiting for dependent futures
2022-05-12 22:35:19,697 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148111360}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 148111360}
2022-05-12 22:35:19,698 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:19,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164888576}) to executor  for transfer request: 0.
2022-05-12 22:35:19,969 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:19,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) about to wait for the following futures []
2022-05-12 22:35:19,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) done waiting for dependent futures
2022-05-12 22:35:19,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164888576}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 164888576}
2022-05-12 22:35:19,970 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132907008}) to executor  for transfer request: 0.
2022-05-12 22:35:20,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) about to wait for the following futures []
2022-05-12 22:35:20,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) done waiting for dependent futures
2022-05-12 22:35:20,887 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132907008}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 132907008}
2022-05-12 22:35:20,887 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,630 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169607168}) to executor  for transfer request: 0.
2022-05-12 22:35:21,630 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) about to wait for the following futures []
2022-05-12 22:35:21,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) done waiting for dependent futures
2022-05-12 22:35:21,631 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169607168}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 169607168}
2022-05-12 22:35:21,631 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:22,040 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185073664}) to executor  for transfer request: 0.
2022-05-12 22:35:22,040 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:22,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) about to wait for the following futures []
2022-05-12 22:35:22,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) done waiting for dependent futures
2022-05-12 22:35:22,041 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185073664}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 185073664}
2022-05-12 22:35:22,041 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:22,403 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116916224}) to executor  for transfer request: 0.
2022-05-12 22:35:22,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:22,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) about to wait for the following futures []
2022-05-12 22:35:22,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) done waiting for dependent futures
2022-05-12 22:35:22,404 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116916224}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 116916224}
2022-05-12 22:35:22,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:24,366 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177995776}) to executor  for transfer request: 0.
2022-05-12 22:35:24,366 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:24,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) about to wait for the following futures []
2022-05-12 22:35:24,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) done waiting for dependent futures
2022-05-12 22:35:24,367 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177995776}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 177995776}
2022-05-12 22:35:24,367 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:24,630 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148373504}) to executor  for transfer request: 0.
2022-05-12 22:35:24,630 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:24,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) about to wait for the following futures []
2022-05-12 22:35:24,631 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) done waiting for dependent futures
2022-05-12 22:35:24,631 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148373504}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 148373504}
2022-05-12 22:35:24,631 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,159 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123731968}) to executor  for transfer request: 0.
2022-05-12 22:35:25,159 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) about to wait for the following futures []
2022-05-12 22:35:25,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) done waiting for dependent futures
2022-05-12 22:35:25,159 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123731968}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 123731968}
2022-05-12 22:35:25,160 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133169152}) to executor  for transfer request: 0.
2022-05-12 22:35:27,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) about to wait for the following futures []
2022-05-12 22:35:27,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) done waiting for dependent futures
2022-05-12 22:35:27,267 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133169152}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 133169152}
2022-05-12 22:35:27,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:28,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165150720}) to executor  for transfer request: 0.
2022-05-12 22:35:28,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:28,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) about to wait for the following futures []
2022-05-12 22:35:28,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) done waiting for dependent futures
2022-05-12 22:35:28,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165150720}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 165150720}
2022-05-12 22:35:28,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:30,377 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155451392}) to executor  for transfer request: 0.
2022-05-12 22:35:30,377 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:30,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) about to wait for the following futures []
2022-05-12 22:35:30,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) done waiting for dependent futures
2022-05-12 22:35:30,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155451392}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 155451392}
2022-05-12 22:35:30,378 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:30,407 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148635648}) to executor  for transfer request: 0.
2022-05-12 22:35:30,407 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:30,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) about to wait for the following futures []
2022-05-12 22:35:30,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) done waiting for dependent futures
2022-05-12 22:35:30,408 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148635648}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 148635648}
2022-05-12 22:35:30,408 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,333 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169869312}) to executor  for transfer request: 0.
2022-05-12 22:35:31,333 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) about to wait for the following futures []
2022-05-12 22:35:31,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) done waiting for dependent futures
2022-05-12 22:35:31,334 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169869312}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 169869312}
2022-05-12 22:35:31,334 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,511 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185335808}) to executor  for transfer request: 0.
2022-05-12 22:35:31,511 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) about to wait for the following futures []
2022-05-12 22:35:31,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) done waiting for dependent futures
2022-05-12 22:35:31,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185335808}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 185335808}
2022-05-12 22:35:31,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123994112}) to executor  for transfer request: 0.
2022-05-12 22:35:31,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) about to wait for the following futures []
2022-05-12 22:35:31,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) done waiting for dependent futures
2022-05-12 22:35:31,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123994112}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 123994112}
2022-05-12 22:35:31,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:32,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117178368}) to executor  for transfer request: 0.
2022-05-12 22:35:32,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:32,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:32,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) about to wait for the following futures []
2022-05-12 22:35:32,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) done waiting for dependent futures
2022-05-12 22:35:32,005 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) about to wait for the following futures []
2022-05-12 22:35:32,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117178368}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 117178368}
2022-05-12 22:35:32,006 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) done waiting for dependent futures
2022-05-12 22:35:32,006 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=192937984-201326591'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 192937984, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:32,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:32,006 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:32,007 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:32,007 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:32,007 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:32,007 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:32,007 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:32,007 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:32,007 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:35:32,007 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:32,008 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:32,008 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=192937984-201326591', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:32,008 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:32,008 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:32,008 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:32,008 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:32,008 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:32,008 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:32,008 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:35:32,008 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:35:32,008 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:32,008 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=192937984-201326591
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223532Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:32,008 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223532Z
20220512/eu-central-1/s3/aws4_request
0243166130612efd72f754dd1e78ac6c6181b3a7aa2e4ef6b7cc57b181989c4e
2022-05-12 22:35:32,009 botocore.auth DEBUG    Signature:
27b4ea1fa236e1e40c19036e147d259a5c26d9ae4f036e1501e93bbfab3c6acc
2022-05-12 22:35:32,009 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:32,009 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:32,009 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:32,009 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:32,009 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:35:33,717 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:33,718 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2TXKB2xBRVYg+y85yXXS9g4ONQLRkWyuAwOB08pNFrhB++5s0DqtB8XJ/YRgs+5F355/km0DzEM=', 'x-amz-request-id': 'V2N3BTHYX8Y9ZBQT', 'Date': 'Thu, 12 May 2022 22:35:34 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 192937984-201326591/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:33,718 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:33,718 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:33,718 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:33,718 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:34,441 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148897792}) to executor  for transfer request: 0.
2022-05-12 22:35:34,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) about to wait for the following futures []
2022-05-12 22:35:34,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) done waiting for dependent futures
2022-05-12 22:35:34,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148897792}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 148897792}
2022-05-12 22:35:34,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:34,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133431296}) to executor  for transfer request: 0.
2022-05-12 22:35:34,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) about to wait for the following futures []
2022-05-12 22:35:34,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) done waiting for dependent futures
2022-05-12 22:35:34,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133431296}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 133431296}
2022-05-12 22:35:34,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,832 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178257920}) to executor  for transfer request: 0.
2022-05-12 22:35:35,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) about to wait for the following futures []
2022-05-12 22:35:35,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) done waiting for dependent futures
2022-05-12 22:35:35,833 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178257920}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 178257920}
2022-05-12 22:35:35,833 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:36,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165412864}) to executor  for transfer request: 0.
2022-05-12 22:35:36,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:36,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) about to wait for the following futures []
2022-05-12 22:35:36,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) done waiting for dependent futures
2022-05-12 22:35:36,443 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165412864}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 165412864}
2022-05-12 22:35:36,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:36,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155713536}) to executor  for transfer request: 0.
2022-05-12 22:35:36,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:36,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) about to wait for the following futures []
2022-05-12 22:35:36,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) done waiting for dependent futures
2022-05-12 22:35:36,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155713536}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 155713536}
2022-05-12 22:35:36,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:38,079 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185597952}) to executor  for transfer request: 0.
2022-05-12 22:35:38,079 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:38,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) about to wait for the following futures []
2022-05-12 22:35:38,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) done waiting for dependent futures
2022-05-12 22:35:38,080 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185597952}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 185597952}
2022-05-12 22:35:38,080 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:39,351 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133693440}) to executor  for transfer request: 0.
2022-05-12 22:35:39,351 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:39,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) about to wait for the following futures []
2022-05-12 22:35:39,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) done waiting for dependent futures
2022-05-12 22:35:39,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133693440}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 133693440}
2022-05-12 22:35:39,352 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:39,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137363456}) to executor  for transfer request: 0.
2022-05-12 22:35:39,942 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:39,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) about to wait for the following futures []
2022-05-12 22:35:39,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) done waiting for dependent futures
2022-05-12 22:35:39,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137363456}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 137363456}
2022-05-12 22:35:39,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,625 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149159936}) to executor  for transfer request: 0.
2022-05-12 22:35:40,625 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) about to wait for the following futures []
2022-05-12 22:35:40,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) done waiting for dependent futures
2022-05-12 22:35:40,625 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149159936}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 149159936}
2022-05-12 22:35:40,626 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,675 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165675008}) to executor  for transfer request: 0.
2022-05-12 22:35:40,675 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) about to wait for the following futures []
2022-05-12 22:35:40,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) done waiting for dependent futures
2022-05-12 22:35:40,676 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165675008}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 165675008}
2022-05-12 22:35:40,676 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192937984}) to executor  for transfer request: 0.
2022-05-12 22:35:40,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) about to wait for the following futures []
2022-05-12 22:35:40,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) done waiting for dependent futures
2022-05-12 22:35:40,791 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192937984}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 192937984}
2022-05-12 22:35:40,791 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:41,653 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124256256}) to executor  for transfer request: 0.
2022-05-12 22:35:41,653 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:41,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) about to wait for the following futures []
2022-05-12 22:35:41,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) done waiting for dependent futures
2022-05-12 22:35:41,654 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124256256}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 124256256}
2022-05-12 22:35:41,654 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:42,324 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155975680}) to executor  for transfer request: 0.
2022-05-12 22:35:42,324 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:42,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) about to wait for the following futures []
2022-05-12 22:35:42,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) done waiting for dependent futures
2022-05-12 22:35:42,325 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155975680}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 155975680}
2022-05-12 22:35:42,325 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:42,358 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170131456}) to executor  for transfer request: 0.
2022-05-12 22:35:42,358 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:42,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) about to wait for the following futures []
2022-05-12 22:35:42,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) done waiting for dependent futures
2022-05-12 22:35:42,359 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170131456}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 170131456}
2022-05-12 22:35:42,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:44,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185860096}) to executor  for transfer request: 0.
2022-05-12 22:35:44,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:44,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) about to wait for the following futures []
2022-05-12 22:35:44,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) done waiting for dependent futures
2022-05-12 22:35:44,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185860096}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 185860096}
2022-05-12 22:35:44,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:46,215 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133955584}) to executor  for transfer request: 0.
2022-05-12 22:35:46,215 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:46,215 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:46,216 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) about to wait for the following futures []
2022-05-12 22:35:46,216 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) done waiting for dependent futures
2022-05-12 22:35:46,216 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=201326592-209715199'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 201326592, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:46,216 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:46,216 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:46,216 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:46,216 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:46,216 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:46,217 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:46,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) about to wait for the following futures []
2022-05-12 22:35:46,217 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:46,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) done waiting for dependent futures
2022-05-12 22:35:46,217 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:35:46,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133955584}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 133955584}
2022-05-12 22:35:46,218 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:46,218 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:46,218 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=201326592-209715199', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:46,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:46,218 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:46,218 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:46,219 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:46,219 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:46,219 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:46,219 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:46,219 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:35:46,219 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:35:46,219 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:46,219 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=201326592-209715199
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223546Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:46,220 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223546Z
20220512/eu-central-1/s3/aws4_request
d7cfb26267ba67104ae39305749361b4dc661182508ecc151068a80c5aef6774
2022-05-12 22:35:46,220 botocore.auth DEBUG    Signature:
6fb979bed9b58047c8f24c89d8bbc7c2458057d285cb79437bafb1a716566387
2022-05-12 22:35:46,220 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:46,220 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:46,220 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:46,221 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:46,221 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:35:46,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193200128}) to executor  for transfer request: 0.
2022-05-12 22:35:46,875 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:46,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) about to wait for the following futures []
2022-05-12 22:35:46,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) done waiting for dependent futures
2022-05-12 22:35:46,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193200128}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 193200128}
2022-05-12 22:35:46,876 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:47,500 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149422080}) to executor  for transfer request: 0.
2022-05-12 22:35:47,500 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:47,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) about to wait for the following futures []
2022-05-12 22:35:47,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) done waiting for dependent futures
2022-05-12 22:35:47,501 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149422080}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 149422080}
2022-05-12 22:35:47,502 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:47,842 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:47,842 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+LJCMI+5klC2WM+WZ2y5ZhdtcRcMNqJIjAnurQbhwtuFQROiEovCpmGtdevAIxv1/UiElwO85PM=', 'x-amz-request-id': 'E1CWEC3RMKDCH0TM', 'Date': 'Thu, 12 May 2022 22:35:48 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 201326592-209715199/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:47,842 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:47,843 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:47,843 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:47,843 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:47,934 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165937152}) to executor  for transfer request: 0.
2022-05-12 22:35:47,935 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:47,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) about to wait for the following futures []
2022-05-12 22:35:47,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) done waiting for dependent futures
2022-05-12 22:35:47,935 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165937152}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 165937152}
2022-05-12 22:35:47,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:48,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137625600}) to executor  for transfer request: 0.
2022-05-12 22:35:48,797 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:48,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) about to wait for the following futures []
2022-05-12 22:35:48,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) done waiting for dependent futures
2022-05-12 22:35:48,797 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137625600}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 137625600}
2022-05-12 22:35:48,798 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,625 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178520064}) to executor  for transfer request: 0.
2022-05-12 22:35:49,625 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) about to wait for the following futures []
2022-05-12 22:35:49,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) done waiting for dependent futures
2022-05-12 22:35:49,626 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178520064}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 178520064}
2022-05-12 22:35:49,626 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:50,433 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124518400}) to executor  for transfer request: 0.
2022-05-12 22:35:50,433 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:50,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) about to wait for the following futures []
2022-05-12 22:35:50,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) done waiting for dependent futures
2022-05-12 22:35:50,434 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124518400}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 124518400}
2022-05-12 22:35:50,434 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,440 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193462272}) to executor  for transfer request: 0.
2022-05-12 22:35:51,441 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) about to wait for the following futures []
2022-05-12 22:35:51,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) done waiting for dependent futures
2022-05-12 22:35:51,441 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193462272}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 193462272}
2022-05-12 22:35:51,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,824 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156237824}) to executor  for transfer request: 0.
2022-05-12 22:35:51,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) about to wait for the following futures []
2022-05-12 22:35:51,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) done waiting for dependent futures
2022-05-12 22:35:51,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156237824}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 156237824}
2022-05-12 22:35:51,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,931 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186122240}) to executor  for transfer request: 0.
2022-05-12 22:35:51,931 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) about to wait for the following futures []
2022-05-12 22:35:51,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) done waiting for dependent futures
2022-05-12 22:35:51,931 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186122240}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 186122240}
2022-05-12 22:35:51,932 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:53,299 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166199296}) to executor  for transfer request: 0.
2022-05-12 22:35:53,299 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:53,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) about to wait for the following futures []
2022-05-12 22:35:53,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) done waiting for dependent futures
2022-05-12 22:35:53,300 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166199296}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 166199296}
2022-05-12 22:35:53,300 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149684224}) to executor  for transfer request: 0.
2022-05-12 22:35:54,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) about to wait for the following futures []
2022-05-12 22:35:54,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) done waiting for dependent futures
2022-05-12 22:35:54,048 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149684224}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 149684224}
2022-05-12 22:35:54,048 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,940 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201326592}) to executor  for transfer request: 0.
2022-05-12 22:35:54,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) about to wait for the following futures []
2022-05-12 22:35:54,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) done waiting for dependent futures
2022-05-12 22:35:54,941 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201326592}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 201326592}
2022-05-12 22:35:54,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,998 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170393600}) to executor  for transfer request: 0.
2022-05-12 22:35:54,999 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) about to wait for the following futures []
2022-05-12 22:35:54,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) done waiting for dependent futures
2022-05-12 22:35:54,999 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170393600}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 170393600}
2022-05-12 22:35:55,000 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,074 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193724416}) to executor  for transfer request: 0.
2022-05-12 22:35:57,074 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) about to wait for the following futures []
2022-05-12 22:35:57,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) done waiting for dependent futures
2022-05-12 22:35:57,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193724416}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 193724416}
2022-05-12 22:35:57,075 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,660 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124780544}) to executor  for transfer request: 0.
2022-05-12 22:35:57,660 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) about to wait for the following futures []
2022-05-12 22:35:57,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) done waiting for dependent futures
2022-05-12 22:35:57,660 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124780544}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 124780544}
2022-05-12 22:35:57,661 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,954 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186384384}) to executor  for transfer request: 0.
2022-05-12 22:35:57,954 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) about to wait for the following futures []
2022-05-12 22:35:57,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) done waiting for dependent futures
2022-05-12 22:35:57,955 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186384384}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 186384384}
2022-05-12 22:35:57,956 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:58,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166461440}) to executor  for transfer request: 0.
2022-05-12 22:35:58,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:58,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) about to wait for the following futures []
2022-05-12 22:35:58,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) done waiting for dependent futures
2022-05-12 22:35:58,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166461440}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 166461440}
2022-05-12 22:35:58,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:59,716 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149946368}) to executor  for transfer request: 0.
2022-05-12 22:35:59,716 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:59,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) about to wait for the following futures []
2022-05-12 22:35:59,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) done waiting for dependent futures
2022-05-12 22:35:59,717 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149946368}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 149946368}
2022-05-12 22:35:59,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:00,197 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137887744}) to executor  for transfer request: 0.
2022-05-12 22:36:00,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:00,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) about to wait for the following futures []
2022-05-12 22:36:00,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) done waiting for dependent futures
2022-05-12 22:36:00,197 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137887744}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 137887744}
2022-05-12 22:36:00,198 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:00,918 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156499968}) to executor  for transfer request: 0.
2022-05-12 22:36:00,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:00,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) about to wait for the following futures []
2022-05-12 22:36:00,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) done waiting for dependent futures
2022-05-12 22:36:00,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156499968}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 156499968}
2022-05-12 22:36:00,918 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:01,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201588736}) to executor  for transfer request: 0.
2022-05-12 22:36:01,772 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:01,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) about to wait for the following futures []
2022-05-12 22:36:01,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) done waiting for dependent futures
2022-05-12 22:36:01,772 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201588736}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 201588736}
2022-05-12 22:36:01,773 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:01,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178782208}) to executor  for transfer request: 0.
2022-05-12 22:36:01,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:01,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) about to wait for the following futures []
2022-05-12 22:36:01,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) done waiting for dependent futures
2022-05-12 22:36:01,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178782208}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 178782208}
2022-05-12 22:36:01,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:04,214 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193986560}) to executor  for transfer request: 0.
2022-05-12 22:36:04,214 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:04,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) about to wait for the following futures []
2022-05-12 22:36:04,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) done waiting for dependent futures
2022-05-12 22:36:04,215 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193986560}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 193986560}
2022-05-12 22:36:04,215 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170655744}) to executor  for transfer request: 0.
2022-05-12 22:36:05,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) about to wait for the following futures []
2022-05-12 22:36:05,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) done waiting for dependent futures
2022-05-12 22:36:05,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170655744}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 170655744}
2022-05-12 22:36:05,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,919 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125042688}) to executor  for transfer request: 0.
2022-05-12 22:36:05,919 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) about to wait for the following futures []
2022-05-12 22:36:05,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) done waiting for dependent futures
2022-05-12 22:36:05,919 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125042688}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 125042688}
2022-05-12 22:36:05,920 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:06,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156762112}) to executor  for transfer request: 0.
2022-05-12 22:36:06,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:06,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) about to wait for the following futures []
2022-05-12 22:36:06,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) done waiting for dependent futures
2022-05-12 22:36:06,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156762112}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 156762112}
2022-05-12 22:36:06,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:07,433 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166723584}) to executor  for transfer request: 0.
2022-05-12 22:36:07,434 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:07,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) about to wait for the following futures []
2022-05-12 22:36:07,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) done waiting for dependent futures
2022-05-12 22:36:07,434 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166723584}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 166723584}
2022-05-12 22:36:07,435 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:07,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186646528}) to executor  for transfer request: 0.
2022-05-12 22:36:07,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:07,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) about to wait for the following futures []
2022-05-12 22:36:07,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) done waiting for dependent futures
2022-05-12 22:36:07,682 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186646528}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 186646528}
2022-05-12 22:36:07,682 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:07,813 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150208512}) to executor  for transfer request: 0.
2022-05-12 22:36:07,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:07,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) about to wait for the following futures []
2022-05-12 22:36:07,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) done waiting for dependent futures
2022-05-12 22:36:07,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150208512}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 150208512}
2022-05-12 22:36:07,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:09,765 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138149888}) to executor  for transfer request: 0.
2022-05-12 22:36:09,765 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:09,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) about to wait for the following futures []
2022-05-12 22:36:09,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) done waiting for dependent futures
2022-05-12 22:36:09,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138149888}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 138149888}
2022-05-12 22:36:09,766 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:09,915 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194248704}) to executor  for transfer request: 0.
2022-05-12 22:36:09,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:09,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) about to wait for the following futures []
2022-05-12 22:36:09,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) done waiting for dependent futures
2022-05-12 22:36:09,916 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194248704}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 194248704}
2022-05-12 22:36:09,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:10,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201850880}) to executor  for transfer request: 0.
2022-05-12 22:36:10,508 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:10,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) about to wait for the following futures []
2022-05-12 22:36:10,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) done waiting for dependent futures
2022-05-12 22:36:10,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201850880}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 201850880}
2022-05-12 22:36:10,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:11,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166985728}) to executor  for transfer request: 0.
2022-05-12 22:36:11,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:11,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) about to wait for the following futures []
2022-05-12 22:36:11,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) done waiting for dependent futures
2022-05-12 22:36:11,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166985728}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 166985728}
2022-05-12 22:36:11,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:14,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179044352}) to executor  for transfer request: 0.
2022-05-12 22:36:14,575 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:14,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) about to wait for the following futures []
2022-05-12 22:36:14,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) done waiting for dependent futures
2022-05-12 22:36:14,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179044352}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 179044352}
2022-05-12 22:36:14,576 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:14,629 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202113024}) to executor  for transfer request: 0.
2022-05-12 22:36:14,629 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:14,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) about to wait for the following futures []
2022-05-12 22:36:14,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) done waiting for dependent futures
2022-05-12 22:36:14,630 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202113024}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 202113024}
2022-05-12 22:36:14,630 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:14,814 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194510848}) to executor  for transfer request: 0.
2022-05-12 22:36:14,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:14,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) about to wait for the following futures []
2022-05-12 22:36:14,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) done waiting for dependent futures
2022-05-12 22:36:14,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194510848}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 194510848}
2022-05-12 22:36:14,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150470656}) to executor  for transfer request: 0.
2022-05-12 22:36:15,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) about to wait for the following futures []
2022-05-12 22:36:15,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) done waiting for dependent futures
2022-05-12 22:36:15,724 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150470656}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 150470656}
2022-05-12 22:36:15,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157024256}) to executor  for transfer request: 0.
2022-05-12 22:36:15,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) about to wait for the following futures []
2022-05-12 22:36:15,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) done waiting for dependent futures
2022-05-12 22:36:15,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157024256}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 157024256}
2022-05-12 22:36:15,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125304832}) to executor  for transfer request: 0.
2022-05-12 22:36:15,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) about to wait for the following futures []
2022-05-12 22:36:15,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) done waiting for dependent futures
2022-05-12 22:36:15,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125304832}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 125304832}
2022-05-12 22:36:15,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,962 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138412032}) to executor  for transfer request: 0.
2022-05-12 22:36:17,962 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) about to wait for the following futures []
2022-05-12 22:36:17,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) done waiting for dependent futures
2022-05-12 22:36:17,962 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138412032}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 138412032}
2022-05-12 22:36:17,963 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186908672}) to executor  for transfer request: 0.
2022-05-12 22:36:17,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) about to wait for the following futures []
2022-05-12 22:36:17,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) done waiting for dependent futures
2022-05-12 22:36:17,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186908672}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 186908672}
2022-05-12 22:36:17,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170917888}) to executor  for transfer request: 0.
2022-05-12 22:36:18,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) about to wait for the following futures []
2022-05-12 22:36:18,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) done waiting for dependent futures
2022-05-12 22:36:18,265 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170917888}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 170917888}
2022-05-12 22:36:18,266 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:20,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167247872}) to executor  for transfer request: 0.
2022-05-12 22:36:20,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:20,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) about to wait for the following futures []
2022-05-12 22:36:20,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) done waiting for dependent futures
2022-05-12 22:36:20,477 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167247872}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 167247872}
2022-05-12 22:36:20,477 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:20,959 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202375168}) to executor  for transfer request: 0.
2022-05-12 22:36:20,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:20,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) about to wait for the following futures []
2022-05-12 22:36:20,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) done waiting for dependent futures
2022-05-12 22:36:20,960 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202375168}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 202375168}
2022-05-12 22:36:20,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:22,552 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194772992}) to executor  for transfer request: 0.
2022-05-12 22:36:22,552 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:22,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) about to wait for the following futures []
2022-05-12 22:36:22,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) done waiting for dependent futures
2022-05-12 22:36:22,553 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194772992}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 194772992}
2022-05-12 22:36:22,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:22,612 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150732800}) to executor  for transfer request: 0.
2022-05-12 22:36:22,613 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:22,613 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:22,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) about to wait for the following futures []
2022-05-12 22:36:22,613 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) about to wait for the following futures []
2022-05-12 22:36:22,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) done waiting for dependent futures
2022-05-12 22:36:22,614 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) done waiting for dependent futures
2022-05-12 22:36:22,614 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150732800}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 150732800}
2022-05-12 22:36:22,614 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=209715200-218103807'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 209715200, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:22,615 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:22,615 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:22,615 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:22,615 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:22,615 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:22,615 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:22,616 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:22,616 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:22,616 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:36:22,616 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:22,616 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:22,616 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=209715200-218103807', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:22,616 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:22,616 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:22,617 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:22,617 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:22,617 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:22,617 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:22,617 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:36:22,617 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:36:22,618 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:22,618 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=209715200-218103807
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223622Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:22,618 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223622Z
20220512/eu-central-1/s3/aws4_request
2b7205312b20e82c1d484d02d36ece82717175b4822cd9279cb6e399deccd5d3
2022-05-12 22:36:22,618 botocore.auth DEBUG    Signature:
a24cc591e99fc747d4cfe9b8572b96d16f9e215d4412e2cc1b5ee61fd076467c
2022-05-12 22:36:22,618 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:22,618 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:22,618 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:22,619 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:22,619 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:36:23,108 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125566976}) to executor  for transfer request: 0.
2022-05-12 22:36:23,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,109 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) about to wait for the following futures []
2022-05-12 22:36:23,109 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) about to wait for the following futures []
2022-05-12 22:36:23,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) done waiting for dependent futures
2022-05-12 22:36:23,110 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) done waiting for dependent futures
2022-05-12 22:36:23,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125566976}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 125566976}
2022-05-12 22:36:23,110 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=218103808-226492415'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 218103808, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:23,111 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:23,111 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:23,111 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:23,111 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:23,111 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,112 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:23,112 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:23,112 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:23,112 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:36:23,112 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:23,113 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:23,113 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=218103808-226492415', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:23,113 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:23,113 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:23,113 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:23,113 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:23,113 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:23,113 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:23,113 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:36:23,114 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:36:23,114 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:23,114 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=218103808-226492415
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223623Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:23,114 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223623Z
20220512/eu-central-1/s3/aws4_request
7ddf665d860ad6a5e066b132a609f987c27bf12c478d1c1eca83ff75e397938f
2022-05-12 22:36:23,114 botocore.auth DEBUG    Signature:
e864278ac7f2b102d172c79a1f4baff2c8225ede3423a2cc7bf69bb1e3a307e7
2022-05-12 22:36:23,114 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:23,114 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:23,115 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:23,115 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:23,115 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:36:23,167 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157286400}) to executor  for transfer request: 0.
2022-05-12 22:36:23,167 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) about to wait for the following futures []
2022-05-12 22:36:23,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) done waiting for dependent futures
2022-05-12 22:36:23,168 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157286400}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 157286400}
2022-05-12 22:36:23,168 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,793 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:23,794 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'GbxElsFJ1QIzga3IMx6g1CWdmPVVQG8zZGgL2bbwT/zZzJv573nsjkXdFFGul6aYYeySY0LaI3M=', 'x-amz-request-id': 'PR1T2JFN8YQ9ECRE', 'Date': 'Thu, 12 May 2022 22:36:24 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 209715200-218103807/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:36:23,794 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:23,795 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:23,795 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:23,795 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:23,796 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:23,797 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '5cYA5mBDpOdm5QZAqWXcH6lBAR3v6w2xYrixAF4q4V4yH+/STAYVMk8vRMgq5yIXjvKK+6OrB68=', 'x-amz-request-id': 'PR1TQ9VQWXQXC8Q6', 'Date': 'Thu, 12 May 2022 22:36:24 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 218103808-226492415/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:36:23,797 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:23,797 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:23,798 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:23,798 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:23,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179306496}) to executor  for transfer request: 0.
2022-05-12 22:36:23,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) about to wait for the following futures []
2022-05-12 22:36:23,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) done waiting for dependent futures
2022-05-12 22:36:23,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179306496}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 179306496}
2022-05-12 22:36:23,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,072 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167510016}) to executor  for transfer request: 0.
2022-05-12 22:36:27,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,073 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) about to wait for the following futures []
2022-05-12 22:36:27,073 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) about to wait for the following futures []
2022-05-12 22:36:27,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) done waiting for dependent futures
2022-05-12 22:36:27,074 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) done waiting for dependent futures
2022-05-12 22:36:27,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167510016}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 167510016}
2022-05-12 22:36:27,074 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=226492416-234881023'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 226492416, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:27,075 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:27,075 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,075 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:27,075 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:27,075 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:27,075 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:27,076 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:27,076 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:27,076 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:36:27,076 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:27,076 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:27,076 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=226492416-234881023', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:27,076 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:27,076 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:27,077 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:27,077 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:27,077 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:27,077 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:27,077 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:36:27,077 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:36:27,077 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:27,077 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=226492416-234881023
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223627Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:27,078 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223627Z
20220512/eu-central-1/s3/aws4_request
f2523e0993d5a8ed9e3ca30364812b073b56e8458d84d9ecfb1b8c81dc28f567
2022-05-12 22:36:27,078 botocore.auth DEBUG    Signature:
950fcc7ef74ae225260391f448f50b4ba6b140f6ccf26868559afbb1de6ab644
2022-05-12 22:36:27,078 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:27,078 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:27,078 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:27,078 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:27,078 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:36:27,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187170816}) to executor  for transfer request: 0.
2022-05-12 22:36:27,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) about to wait for the following futures []
2022-05-12 22:36:27,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) done waiting for dependent futures
2022-05-12 22:36:27,325 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187170816}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 187170816}
2022-05-12 22:36:27,325 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:28,004 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:28,004 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ilolbVeNf9tFXDXpDX+S877eLu6gGlcRgeG7gSud6Pa0xrHIJ3luiUQkX1G+8X08st3MI9wddIk=', 'x-amz-request-id': 'P9SDR0YM0E5NNHTC', 'Date': 'Thu, 12 May 2022 22:36:28 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 226492416-234881023/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:36:28,004 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:28,005 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:28,005 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:28,005 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:28,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138674176}) to executor  for transfer request: 0.
2022-05-12 22:36:28,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:28,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) about to wait for the following futures []
2022-05-12 22:36:28,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) done waiting for dependent futures
2022-05-12 22:36:28,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138674176}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 138674176}
2022-05-12 22:36:28,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:28,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209715200}) to executor  for transfer request: 0.
2022-05-12 22:36:28,553 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:28,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) about to wait for the following futures []
2022-05-12 22:36:28,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) done waiting for dependent futures
2022-05-12 22:36:28,553 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209715200}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 209715200}
2022-05-12 22:36:28,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:29,940 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202637312}) to executor  for transfer request: 0.
2022-05-12 22:36:29,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:29,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) about to wait for the following futures []
2022-05-12 22:36:29,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) done waiting for dependent futures
2022-05-12 22:36:29,941 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202637312}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 202637312}
2022-05-12 22:36:29,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,680 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195035136}) to executor  for transfer request: 0.
2022-05-12 22:36:30,680 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) about to wait for the following futures []
2022-05-12 22:36:30,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) done waiting for dependent futures
2022-05-12 22:36:30,681 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195035136}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 195035136}
2022-05-12 22:36:30,681 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171180032}) to executor  for transfer request: 0.
2022-05-12 22:36:31,533 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:31,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) about to wait for the following futures []
2022-05-12 22:36:31,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) done waiting for dependent futures
2022-05-12 22:36:31,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171180032}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 171180032}
2022-05-12 22:36:31,534 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:32,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179568640}) to executor  for transfer request: 0.
2022-05-12 22:36:32,910 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:32,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) about to wait for the following futures []
2022-05-12 22:36:32,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) done waiting for dependent futures
2022-05-12 22:36:32,910 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179568640}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 179568640}
2022-05-12 22:36:32,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:35,127 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187432960}) to executor  for transfer request: 0.
2022-05-12 22:36:35,127 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:35,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) about to wait for the following futures []
2022-05-12 22:36:35,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) done waiting for dependent futures
2022-05-12 22:36:35,128 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187432960}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 187432960}
2022-05-12 22:36:35,128 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:36,156 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157548544}) to executor  for transfer request: 0.
2022-05-12 22:36:36,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:36,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) about to wait for the following futures []
2022-05-12 22:36:36,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) done waiting for dependent futures
2022-05-12 22:36:36,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157548544}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 157548544}
2022-05-12 22:36:36,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:37,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209977344}) to executor  for transfer request: 0.
2022-05-12 22:36:37,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:37,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) about to wait for the following futures []
2022-05-12 22:36:37,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) done waiting for dependent futures
2022-05-12 22:36:37,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209977344}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 209977344}
2022-05-12 22:36:37,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:38,605 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218103808}) to executor  for transfer request: 0.
2022-05-12 22:36:38,605 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:38,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218103808}) about to wait for the following futures []
2022-05-12 22:36:38,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218103808}) done waiting for dependent futures
2022-05-12 22:36:38,606 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218103808}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 218103808}
2022-05-12 22:36:38,606 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:38,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138936320}) to executor  for transfer request: 0.
2022-05-12 22:36:38,856 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:38,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) about to wait for the following futures []
2022-05-12 22:36:38,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) done waiting for dependent futures
2022-05-12 22:36:38,857 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138936320}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 138936320}
2022-05-12 22:36:38,858 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:39,454 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187695104}) to executor  for transfer request: 0.
2022-05-12 22:36:39,454 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:39,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) about to wait for the following futures []
2022-05-12 22:36:39,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) done waiting for dependent futures
2022-05-12 22:36:39,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187695104}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 187695104}
2022-05-12 22:36:39,455 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:40,079 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171442176}) to executor  for transfer request: 0.
2022-05-12 22:36:40,079 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:40,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) about to wait for the following futures []
2022-05-12 22:36:40,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) done waiting for dependent futures
2022-05-12 22:36:40,080 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171442176}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 171442176}
2022-05-12 22:36:40,080 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:40,528 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226492416}) to executor  for transfer request: 0.
2022-05-12 22:36:40,528 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:40,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226492416}) about to wait for the following futures []
2022-05-12 22:36:40,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226492416}) done waiting for dependent futures
2022-05-12 22:36:40,529 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226492416}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 226492416}
2022-05-12 22:36:40,529 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,061 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195297280}) to executor  for transfer request: 0.
2022-05-12 22:36:41,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) about to wait for the following futures []
2022-05-12 22:36:41,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) done waiting for dependent futures
2022-05-12 22:36:41,062 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195297280}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 195297280}
2022-05-12 22:36:41,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202899456}) to executor  for transfer request: 0.
2022-05-12 22:36:41,155 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) about to wait for the following futures []
2022-05-12 22:36:41,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) done waiting for dependent futures
2022-05-12 22:36:41,155 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202899456}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 202899456}
2022-05-12 22:36:41,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:43,655 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157810688}) to executor  for transfer request: 0.
2022-05-12 22:36:43,656 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:43,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) about to wait for the following futures []
2022-05-12 22:36:43,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) done waiting for dependent futures
2022-05-12 22:36:43,656 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157810688}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 157810688}
2022-05-12 22:36:43,656 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:44,327 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179830784}) to executor  for transfer request: 0.
2022-05-12 22:36:44,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:44,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) about to wait for the following futures []
2022-05-12 22:36:44,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) done waiting for dependent futures
2022-05-12 22:36:44,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179830784}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 179830784}
2022-05-12 22:36:44,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,067 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210239488}) to executor  for transfer request: 0.
2022-05-12 22:36:45,067 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:45,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) about to wait for the following futures []
2022-05-12 22:36:45,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) done waiting for dependent futures
2022-05-12 22:36:45,068 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210239488}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 210239488}
2022-05-12 22:36:45,068 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:46,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195559424}) to executor  for transfer request: 0.
2022-05-12 22:36:46,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:46,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) about to wait for the following futures []
2022-05-12 22:36:46,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) done waiting for dependent futures
2022-05-12 22:36:46,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195559424}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 195559424}
2022-05-12 22:36:46,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:46,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218365952}) to executor  for transfer request: 0.
2022-05-12 22:36:46,498 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:46,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218365952}) about to wait for the following futures []
2022-05-12 22:36:46,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218365952}) done waiting for dependent futures
2022-05-12 22:36:46,498 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218365952}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 218365952}
2022-05-12 22:36:46,498 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:46,520 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187957248}) to executor  for transfer request: 0.
2022-05-12 22:36:46,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:46,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) about to wait for the following futures []
2022-05-12 22:36:46,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) done waiting for dependent futures
2022-05-12 22:36:46,521 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187957248}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 187957248}
2022-05-12 22:36:46,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:47,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203161600}) to executor  for transfer request: 0.
2022-05-12 22:36:47,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) about to wait for the following futures []
2022-05-12 22:36:47,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) done waiting for dependent futures
2022-05-12 22:36:47,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203161600}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 203161600}
2022-05-12 22:36:47,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:47,644 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226754560}) to executor  for transfer request: 0.
2022-05-12 22:36:47,644 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226754560}) about to wait for the following futures []
2022-05-12 22:36:47,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226754560}) done waiting for dependent futures
2022-05-12 22:36:47,645 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226754560}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 226754560}
2022-05-12 22:36:47,645 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:49,464 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210501632}) to executor  for transfer request: 0.
2022-05-12 22:36:49,464 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:49,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) about to wait for the following futures []
2022-05-12 22:36:49,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) done waiting for dependent futures
2022-05-12 22:36:49,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210501632}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 210501632}
2022-05-12 22:36:49,465 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:50,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171704320}) to executor  for transfer request: 0.
2022-05-12 22:36:50,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) about to wait for the following futures []
2022-05-12 22:36:50,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) done waiting for dependent futures
2022-05-12 22:36:50,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171704320}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 171704320}
2022-05-12 22:36:50,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:50,378 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203423744}) to executor  for transfer request: 0.
2022-05-12 22:36:50,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) about to wait for the following futures []
2022-05-12 22:36:50,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) done waiting for dependent futures
2022-05-12 22:36:50,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203423744}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 203423744}
2022-05-12 22:36:50,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:50,540 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195821568}) to executor  for transfer request: 0.
2022-05-12 22:36:50,540 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) about to wait for the following futures []
2022-05-12 22:36:50,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) done waiting for dependent futures
2022-05-12 22:36:50,540 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195821568}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 195821568}
2022-05-12 22:36:50,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:51,094 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139198464}) to executor  for transfer request: 0.
2022-05-12 22:36:51,094 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:51,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) about to wait for the following futures []
2022-05-12 22:36:51,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) done waiting for dependent futures
2022-05-12 22:36:51,095 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139198464}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 139198464}
2022-05-12 22:36:51,095 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:51,897 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158072832}) to executor  for transfer request: 0.
2022-05-12 22:36:51,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:51,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) about to wait for the following futures []
2022-05-12 22:36:51,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) done waiting for dependent futures
2022-05-12 22:36:51,898 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158072832}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 158072832}
2022-05-12 22:36:51,899 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:51,957 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227016704}) to executor  for transfer request: 0.
2022-05-12 22:36:51,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:51,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227016704}) about to wait for the following futures []
2022-05-12 22:36:51,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227016704}) done waiting for dependent futures
2022-05-12 22:36:51,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227016704}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 227016704}
2022-05-12 22:36:51,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:53,810 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180092928}) to executor  for transfer request: 0.
2022-05-12 22:36:53,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:53,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) about to wait for the following futures []
2022-05-12 22:36:53,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) done waiting for dependent futures
2022-05-12 22:36:53,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180092928}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 180092928}
2022-05-12 22:36:53,811 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:54,571 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188219392}) to executor  for transfer request: 0.
2022-05-12 22:36:54,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:54,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) about to wait for the following futures []
2022-05-12 22:36:54,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) done waiting for dependent futures
2022-05-12 22:36:54,572 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188219392}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 188219392}
2022-05-12 22:36:54,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:55,061 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203685888}) to executor  for transfer request: 0.
2022-05-12 22:36:55,061 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:55,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) about to wait for the following futures []
2022-05-12 22:36:55,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) done waiting for dependent futures
2022-05-12 22:36:55,062 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203685888}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 203685888}
2022-05-12 22:36:55,062 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:56,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218628096}) to executor  for transfer request: 0.
2022-05-12 22:36:56,069 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:56,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218628096}) about to wait for the following futures []
2022-05-12 22:36:56,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218628096}) done waiting for dependent futures
2022-05-12 22:36:56,069 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218628096}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 218628096}
2022-05-12 22:36:56,070 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:57,504 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196083712}) to executor  for transfer request: 0.
2022-05-12 22:36:57,504 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:57,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) about to wait for the following futures []
2022-05-12 22:36:57,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) done waiting for dependent futures
2022-05-12 22:36:57,504 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196083712}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 196083712}
2022-05-12 22:36:57,505 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:59,352 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171966464}) to executor  for transfer request: 0.
2022-05-12 22:36:59,353 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:59,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) about to wait for the following futures []
2022-05-12 22:36:59,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) done waiting for dependent futures
2022-05-12 22:36:59,353 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171966464}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 171966464}
2022-05-12 22:36:59,354 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:59,992 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210763776}) to executor  for transfer request: 0.
2022-05-12 22:36:59,992 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:59,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) about to wait for the following futures []
2022-05-12 22:36:59,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) done waiting for dependent futures
2022-05-12 22:36:59,992 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210763776}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 210763776}
2022-05-12 22:36:59,993 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:00,255 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139460608}) to executor  for transfer request: 0.
2022-05-12 22:37:00,255 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:00,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) about to wait for the following futures []
2022-05-12 22:37:00,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) done waiting for dependent futures
2022-05-12 22:37:00,256 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139460608}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 139460608}
2022-05-12 22:37:00,256 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:01,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227278848}) to executor  for transfer request: 0.
2022-05-12 22:37:01,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:01,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227278848}) about to wait for the following futures []
2022-05-12 22:37:01,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227278848}) done waiting for dependent futures
2022-05-12 22:37:01,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227278848}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 227278848}
2022-05-12 22:37:01,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:01,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180355072}) to executor  for transfer request: 0.
2022-05-12 22:37:01,298 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:01,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) about to wait for the following futures []
2022-05-12 22:37:01,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) done waiting for dependent futures
2022-05-12 22:37:01,298 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180355072}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 180355072}
2022-05-12 22:37:01,299 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:01,789 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158334976}) to executor  for transfer request: 0.
2022-05-12 22:37:01,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:01,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) about to wait for the following futures []
2022-05-12 22:37:01,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) done waiting for dependent futures
2022-05-12 22:37:01,790 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158334976}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 158334976}
2022-05-12 22:37:01,791 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:04,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203948032}) to executor  for transfer request: 0.
2022-05-12 22:37:04,437 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:04,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) about to wait for the following futures []
2022-05-12 22:37:04,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) done waiting for dependent futures
2022-05-12 22:37:04,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203948032}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 203948032}
2022-05-12 22:37:04,438 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:05,975 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158597120}) to executor  for transfer request: 0.
2022-05-12 22:37:05,976 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:05,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) about to wait for the following futures []
2022-05-12 22:37:05,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) done waiting for dependent futures
2022-05-12 22:37:05,976 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158597120}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 158597120}
2022-05-12 22:37:05,977 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:06,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227540992}) to executor  for transfer request: 0.
2022-05-12 22:37:06,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:06,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227540992}) about to wait for the following futures []
2022-05-12 22:37:06,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227540992}) done waiting for dependent futures
2022-05-12 22:37:06,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227540992}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 227540992}
2022-05-12 22:37:06,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:06,573 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188481536}) to executor  for transfer request: 0.
2022-05-12 22:37:06,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:06,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) about to wait for the following futures []
2022-05-12 22:37:06,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) done waiting for dependent futures
2022-05-12 22:37:06,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188481536}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 188481536}
2022-05-12 22:37:06,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:06,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172228608}) to executor  for transfer request: 0.
2022-05-12 22:37:06,694 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:06,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) about to wait for the following futures []
2022-05-12 22:37:06,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) done waiting for dependent futures
2022-05-12 22:37:06,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172228608}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 172228608}
2022-05-12 22:37:06,695 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:06,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180617216}) to executor  for transfer request: 0.
2022-05-12 22:37:06,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:06,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) about to wait for the following futures []
2022-05-12 22:37:06,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) done waiting for dependent futures
2022-05-12 22:37:06,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180617216}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 180617216}
2022-05-12 22:37:06,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:07,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218890240}) to executor  for transfer request: 0.
2022-05-12 22:37:07,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:07,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218890240}) about to wait for the following futures []
2022-05-12 22:37:07,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218890240}) done waiting for dependent futures
2022-05-12 22:37:07,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218890240}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 218890240}
2022-05-12 22:37:07,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211025920}) to executor  for transfer request: 0.
2022-05-12 22:37:08,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) about to wait for the following futures []
2022-05-12 22:37:08,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) done waiting for dependent futures
2022-05-12 22:37:08,680 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211025920}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 211025920}
2022-05-12 22:37:08,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139722752}) to executor  for transfer request: 0.
2022-05-12 22:37:08,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) about to wait for the following futures []
2022-05-12 22:37:08,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) done waiting for dependent futures
2022-05-12 22:37:08,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139722752}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 139722752}
2022-05-12 22:37:08,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:09,031 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196345856}) to executor  for transfer request: 0.
2022-05-12 22:37:09,031 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:09,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) about to wait for the following futures []
2022-05-12 22:37:09,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) done waiting for dependent futures
2022-05-12 22:37:09,032 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196345856}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 196345856}
2022-05-12 22:37:09,032 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:09,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158859264}) to executor  for transfer request: 0.
2022-05-12 22:37:09,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:09,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) about to wait for the following futures []
2022-05-12 22:37:09,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) done waiting for dependent futures
2022-05-12 22:37:09,948 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158859264}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 158859264}
2022-05-12 22:37:09,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,969 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227803136}) to executor  for transfer request: 0.
2022-05-12 22:37:11,969 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:11,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227803136}) about to wait for the following futures []
2022-05-12 22:37:11,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227803136}) done waiting for dependent futures
2022-05-12 22:37:11,970 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227803136}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 227803136}
2022-05-12 22:37:11,970 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,066 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204210176}) to executor  for transfer request: 0.
2022-05-12 22:37:14,066 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) about to wait for the following futures []
2022-05-12 22:37:14,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) done waiting for dependent futures
2022-05-12 22:37:14,067 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204210176}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 204210176}
2022-05-12 22:37:14,067 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,473 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180879360}) to executor  for transfer request: 0.
2022-05-12 22:37:14,473 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) about to wait for the following futures []
2022-05-12 22:37:14,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) done waiting for dependent futures
2022-05-12 22:37:14,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180879360}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 180879360}
2022-05-12 22:37:14,474 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,587 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196608000}) to executor  for transfer request: 0.
2022-05-12 22:37:14,587 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) about to wait for the following futures []
2022-05-12 22:37:14,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) done waiting for dependent futures
2022-05-12 22:37:14,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196608000}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 196608000}
2022-05-12 22:37:14,589 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,969 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219152384}) to executor  for transfer request: 0.
2022-05-12 22:37:14,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219152384}) about to wait for the following futures []
2022-05-12 22:37:14,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219152384}) done waiting for dependent futures
2022-05-12 22:37:14,970 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219152384}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 219152384}
2022-05-12 22:37:14,971 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,980 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159121408}) to executor  for transfer request: 0.
2022-05-12 22:37:14,980 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,981 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) about to wait for the following futures []
2022-05-12 22:37:14,981 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) about to wait for the following futures []
2022-05-12 22:37:14,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) done waiting for dependent futures
2022-05-12 22:37:14,981 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) done waiting for dependent futures
2022-05-12 22:37:14,981 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159121408}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 159121408}
2022-05-12 22:37:14,982 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=26>, 'extra_args': {'Range': 'bytes=234881024-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 234881024, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:37:14,982 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:14,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,982 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:14,983 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:14,983 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:14,983 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:14,983 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:14,983 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:37:14,983 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:37:14,983 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:14,983 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:14,983 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=234881024-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:37:14,983 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:14,984 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:37:14,984 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:14,984 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:14,984 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:37:14,984 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:37:14,984 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:37:14,984 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data/BANDS.npy
2022-05-12 22:37:14,984 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:37:14,984 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_2_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=234881024-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223714Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:37:14,984 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223714Z
20220512/eu-central-1/s3/aws4_request
5c5d6b627ccafb7c68113c9cdeb2a3ea275f77a32ed268a478594daa434e7134
2022-05-12 22:37:14,985 botocore.auth DEBUG    Signature:
075e9eb787f3cab6b948d57b6c914311fd90cda17f0647a296a7d1fda945d61f
2022-05-12 22:37:14,985 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:14,985 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:14,985 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:37:14,985 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:37:14,986 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:37:16,184 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_2_1/data/BANDS.npy HTTP/1.1" 206 7119104
2022-05-12 22:37:16,184 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NQvS8dT1s49KxNVAdH1vaMnp/WgujKPofz9Z8Hue/XKogIStRvabUPH0Xr/JRA+/sMdhLQyYEcw=', 'x-amz-request-id': '9YG03KMCWNW6BQ79', 'Date': 'Thu, 12 May 2022 22:37:16 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:37 GMT', 'ETag': '"961719f7383ed9f8c8f51f5bbf470366-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 234881024-242000127/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '7119104'}
2022-05-12 22:37:16,184 botocore.parsers DEBUG    Response body:

2022-05-12 22:37:16,185 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:37:16,185 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:37:16,185 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:37:16,797 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139984896}) to executor  for transfer request: 0.
2022-05-12 22:37:16,797 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:16,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) about to wait for the following futures []
2022-05-12 22:37:16,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) done waiting for dependent futures
2022-05-12 22:37:16,797 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139984896}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 139984896}
2022-05-12 22:37:16,798 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211288064}) to executor  for transfer request: 0.
2022-05-12 22:37:17,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) about to wait for the following futures []
2022-05-12 22:37:17,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) done waiting for dependent futures
2022-05-12 22:37:17,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211288064}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 211288064}
2022-05-12 22:37:17,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:18,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228065280}) to executor  for transfer request: 0.
2022-05-12 22:37:18,809 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:18,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228065280}) about to wait for the following futures []
2022-05-12 22:37:18,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228065280}) done waiting for dependent futures
2022-05-12 22:37:18,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228065280}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 228065280}
2022-05-12 22:37:18,810 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:19,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188743680}) to executor  for transfer request: 0.
2022-05-12 22:37:19,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:19,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) about to wait for the following futures []
2022-05-12 22:37:19,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) done waiting for dependent futures
2022-05-12 22:37:19,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188743680}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 188743680}
2022-05-12 22:37:19,516 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:19,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172490752}) to executor  for transfer request: 0.
2022-05-12 22:37:19,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:19,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) about to wait for the following futures []
2022-05-12 22:37:19,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) done waiting for dependent futures
2022-05-12 22:37:19,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172490752}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 172490752}
2022-05-12 22:37:19,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:20,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204472320}) to executor  for transfer request: 0.
2022-05-12 22:37:20,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:20,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) about to wait for the following futures []
2022-05-12 22:37:20,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) done waiting for dependent futures
2022-05-12 22:37:20,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204472320}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 204472320}
2022-05-12 22:37:20,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:20,586 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219414528}) to executor  for transfer request: 0.
2022-05-12 22:37:20,586 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:20,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219414528}) about to wait for the following futures []
2022-05-12 22:37:20,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219414528}) done waiting for dependent futures
2022-05-12 22:37:20,587 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219414528}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 219414528}
2022-05-12 22:37:20,587 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:21,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196870144}) to executor  for transfer request: 0.
2022-05-12 22:37:21,333 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:21,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) about to wait for the following futures []
2022-05-12 22:37:21,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) done waiting for dependent futures
2022-05-12 22:37:21,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196870144}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 196870144}
2022-05-12 22:37:21,334 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:24,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211550208}) to executor  for transfer request: 0.
2022-05-12 22:37:24,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:24,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) about to wait for the following futures []
2022-05-12 22:37:24,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) done waiting for dependent futures
2022-05-12 22:37:24,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211550208}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 211550208}
2022-05-12 22:37:24,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:24,081 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181141504}) to executor  for transfer request: 0.
2022-05-12 22:37:24,081 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:24,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) about to wait for the following futures []
2022-05-12 22:37:24,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) done waiting for dependent futures
2022-05-12 22:37:24,082 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181141504}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 181141504}
2022-05-12 22:37:24,083 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:24,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140247040}) to executor  for transfer request: 0.
2022-05-12 22:37:24,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:24,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) about to wait for the following futures []
2022-05-12 22:37:24,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) done waiting for dependent futures
2022-05-12 22:37:24,253 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140247040}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 140247040}
2022-05-12 22:37:24,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:24,371 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228327424}) to executor  for transfer request: 0.
2022-05-12 22:37:24,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:24,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228327424}) about to wait for the following futures []
2022-05-12 22:37:24,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228327424}) done waiting for dependent futures
2022-05-12 22:37:24,372 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228327424}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 228327424}
2022-05-12 22:37:24,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:25,840 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234881024}) to executor  for transfer request: 0.
2022-05-12 22:37:25,840 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:25,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234881024}) about to wait for the following futures []
2022-05-12 22:37:25,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234881024}) done waiting for dependent futures
2022-05-12 22:37:25,841 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234881024}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 234881024}
2022-05-12 22:37:25,841 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:26,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197132288}) to executor  for transfer request: 0.
2022-05-12 22:37:26,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:26,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) about to wait for the following futures []
2022-05-12 22:37:26,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) done waiting for dependent futures
2022-05-12 22:37:26,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197132288}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 197132288}
2022-05-12 22:37:26,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172752896}) to executor  for transfer request: 0.
2022-05-12 22:37:27,497 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) about to wait for the following futures []
2022-05-12 22:37:27,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) done waiting for dependent futures
2022-05-12 22:37:27,498 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172752896}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 172752896}
2022-05-12 22:37:27,498 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,692 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204734464}) to executor  for transfer request: 0.
2022-05-12 22:37:27,692 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) about to wait for the following futures []
2022-05-12 22:37:27,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) done waiting for dependent futures
2022-05-12 22:37:27,693 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204734464}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 204734464}
2022-05-12 22:37:27,693 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189005824}) to executor  for transfer request: 0.
2022-05-12 22:37:27,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) about to wait for the following futures []
2022-05-12 22:37:27,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) done waiting for dependent futures
2022-05-12 22:37:27,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189005824}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 189005824}
2022-05-12 22:37:27,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:28,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219676672}) to executor  for transfer request: 0.
2022-05-12 22:37:28,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:28,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219676672}) about to wait for the following futures []
2022-05-12 22:37:28,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219676672}) done waiting for dependent futures
2022-05-12 22:37:28,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219676672}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 219676672}
2022-05-12 22:37:28,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,064 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211812352}) to executor  for transfer request: 0.
2022-05-12 22:37:30,065 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:30,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) about to wait for the following futures []
2022-05-12 22:37:30,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) done waiting for dependent futures
2022-05-12 22:37:30,065 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211812352}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 211812352}
2022-05-12 22:37:30,066 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,225 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228589568}) to executor  for transfer request: 0.
2022-05-12 22:37:30,225 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:30,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228589568}) about to wait for the following futures []
2022-05-12 22:37:30,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228589568}) done waiting for dependent futures
2022-05-12 22:37:30,226 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228589568}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 228589568}
2022-05-12 22:37:30,226 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,863 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181403648}) to executor  for transfer request: 0.
2022-05-12 22:37:32,864 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) about to wait for the following futures []
2022-05-12 22:37:32,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) done waiting for dependent futures
2022-05-12 22:37:32,864 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181403648}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 181403648}
2022-05-12 22:37:32,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,893 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235143168}) to executor  for transfer request: 0.
2022-05-12 22:37:32,893 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235143168}) about to wait for the following futures []
2022-05-12 22:37:32,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235143168}) done waiting for dependent futures
2022-05-12 22:37:32,894 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235143168}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 235143168}
2022-05-12 22:37:32,894 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:33,763 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228851712}) to executor  for transfer request: 0.
2022-05-12 22:37:33,764 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:33,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228851712}) about to wait for the following futures []
2022-05-12 22:37:33,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228851712}) done waiting for dependent futures
2022-05-12 22:37:33,764 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228851712}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 228851712}
2022-05-12 22:37:33,765 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:34,254 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204996608}) to executor  for transfer request: 0.
2022-05-12 22:37:34,254 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:34,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) about to wait for the following futures []
2022-05-12 22:37:34,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) done waiting for dependent futures
2022-05-12 22:37:34,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204996608}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 204996608}
2022-05-12 22:37:34,255 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:34,674 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197394432}) to executor  for transfer request: 0.
2022-05-12 22:37:34,674 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:34,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) about to wait for the following futures []
2022-05-12 22:37:34,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) done waiting for dependent futures
2022-05-12 22:37:34,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197394432}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 197394432}
2022-05-12 22:37:34,675 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:35,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189267968}) to executor  for transfer request: 0.
2022-05-12 22:37:35,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:35,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) about to wait for the following futures []
2022-05-12 22:37:35,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) done waiting for dependent futures
2022-05-12 22:37:35,544 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189267968}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 189267968}
2022-05-12 22:37:35,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:36,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140509184}) to executor  for transfer request: 0.
2022-05-12 22:37:36,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:36,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) about to wait for the following futures []
2022-05-12 22:37:36,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) done waiting for dependent futures
2022-05-12 22:37:36,496 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140509184}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 140509184}
2022-05-12 22:37:36,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:36,847 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219938816}) to executor  for transfer request: 0.
2022-05-12 22:37:36,847 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:36,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219938816}) about to wait for the following futures []
2022-05-12 22:37:36,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219938816}) done waiting for dependent futures
2022-05-12 22:37:36,848 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219938816}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 219938816}
2022-05-12 22:37:36,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:36,870 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229113856}) to executor  for transfer request: 0.
2022-05-12 22:37:36,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:36,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229113856}) about to wait for the following futures []
2022-05-12 22:37:36,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229113856}) done waiting for dependent futures
2022-05-12 22:37:36,871 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229113856}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 229113856}
2022-05-12 22:37:36,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212074496}) to executor  for transfer request: 0.
2022-05-12 22:37:37,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) about to wait for the following futures []
2022-05-12 22:37:37,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) done waiting for dependent futures
2022-05-12 22:37:37,476 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212074496}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 212074496}
2022-05-12 22:37:37,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,887 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173015040}) to executor  for transfer request: 0.
2022-05-12 22:37:37,887 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) about to wait for the following futures []
2022-05-12 22:37:37,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) done waiting for dependent futures
2022-05-12 22:37:37,888 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173015040}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 173015040}
2022-05-12 22:37:37,888 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:38,437 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181665792}) to executor  for transfer request: 0.
2022-05-12 22:37:38,437 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:38,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) about to wait for the following futures []
2022-05-12 22:37:38,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) done waiting for dependent futures
2022-05-12 22:37:38,438 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181665792}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 181665792}
2022-05-12 22:37:38,438 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:40,167 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205258752}) to executor  for transfer request: 0.
2022-05-12 22:37:40,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:40,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) about to wait for the following futures []
2022-05-12 22:37:40,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) done waiting for dependent futures
2022-05-12 22:37:40,168 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205258752}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 205258752}
2022-05-12 22:37:40,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,331 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229376000}) to executor  for transfer request: 0.
2022-05-12 22:37:41,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229376000}) about to wait for the following futures []
2022-05-12 22:37:41,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229376000}) done waiting for dependent futures
2022-05-12 22:37:41,332 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229376000}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 229376000}
2022-05-12 22:37:41,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189530112}) to executor  for transfer request: 0.
2022-05-12 22:37:41,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) about to wait for the following futures []
2022-05-12 22:37:41,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) done waiting for dependent futures
2022-05-12 22:37:41,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189530112}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 189530112}
2022-05-12 22:37:41,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,057 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220200960}) to executor  for transfer request: 0.
2022-05-12 22:37:44,058 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220200960}) about to wait for the following futures []
2022-05-12 22:37:44,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220200960}) done waiting for dependent futures
2022-05-12 22:37:44,058 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220200960}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 220200960}
2022-05-12 22:37:44,059 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,428 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197656576}) to executor  for transfer request: 0.
2022-05-12 22:37:44,428 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,429 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) about to wait for the following futures []
2022-05-12 22:37:44,429 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) done waiting for dependent futures
2022-05-12 22:37:44,429 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197656576}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 197656576}
2022-05-12 22:37:44,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212336640}) to executor  for transfer request: 0.
2022-05-12 22:37:44,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) about to wait for the following futures []
2022-05-12 22:37:44,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) done waiting for dependent futures
2022-05-12 22:37:44,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212336640}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 212336640}
2022-05-12 22:37:44,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181927936}) to executor  for transfer request: 0.
2022-05-12 22:37:44,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) about to wait for the following futures []
2022-05-12 22:37:44,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) done waiting for dependent futures
2022-05-12 22:37:44,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181927936}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 181927936}
2022-05-12 22:37:44,983 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205520896}) to executor  for transfer request: 0.
2022-05-12 22:37:45,138 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) about to wait for the following futures []
2022-05-12 22:37:45,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) done waiting for dependent futures
2022-05-12 22:37:45,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205520896}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 205520896}
2022-05-12 22:37:45,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,985 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235405312}) to executor  for transfer request: 0.
2022-05-12 22:37:45,986 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235405312}) about to wait for the following futures []
2022-05-12 22:37:45,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235405312}) done waiting for dependent futures
2022-05-12 22:37:45,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235405312}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 235405312}
2022-05-12 22:37:45,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,614 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173277184}) to executor  for transfer request: 0.
2022-05-12 22:37:46,615 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) about to wait for the following futures []
2022-05-12 22:37:46,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) done waiting for dependent futures
2022-05-12 22:37:46,615 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173277184}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 173277184}
2022-05-12 22:37:46,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,714 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140771328}) to executor  for transfer request: 0.
2022-05-12 22:37:46,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,715 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) about to wait for the following futures []
2022-05-12 22:37:46,715 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) done waiting for dependent futures
2022-05-12 22:37:46,715 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140771328}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 140771328}
2022-05-12 22:37:46,715 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:47,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229638144}) to executor  for transfer request: 0.
2022-05-12 22:37:47,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:47,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229638144}) about to wait for the following futures []
2022-05-12 22:37:47,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229638144}) done waiting for dependent futures
2022-05-12 22:37:47,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229638144}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 229638144}
2022-05-12 22:37:47,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189792256}) to executor  for transfer request: 0.
2022-05-12 22:37:49,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:49,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) about to wait for the following futures []
2022-05-12 22:37:49,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) done waiting for dependent futures
2022-05-12 22:37:49,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189792256}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 189792256}
2022-05-12 22:37:49,640 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182190080}) to executor  for transfer request: 0.
2022-05-12 22:37:49,983 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:49,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) about to wait for the following futures []
2022-05-12 22:37:49,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) done waiting for dependent futures
2022-05-12 22:37:49,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182190080}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 182190080}
2022-05-12 22:37:49,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:50,229 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229900288}) to executor  for transfer request: 0.
2022-05-12 22:37:50,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:50,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229900288}) about to wait for the following futures []
2022-05-12 22:37:50,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229900288}) done waiting for dependent futures
2022-05-12 22:37:50,230 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229900288}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 229900288}
2022-05-12 22:37:50,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212598784}) to executor  for transfer request: 0.
2022-05-12 22:37:51,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) about to wait for the following futures []
2022-05-12 22:37:51,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) done waiting for dependent futures
2022-05-12 22:37:51,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212598784}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 212598784}
2022-05-12 22:37:51,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:52,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197918720}) to executor  for transfer request: 0.
2022-05-12 22:37:52,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:52,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) about to wait for the following futures []
2022-05-12 22:37:52,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) done waiting for dependent futures
2022-05-12 22:37:52,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197918720}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 197918720}
2022-05-12 22:37:52,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:52,362 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220463104}) to executor  for transfer request: 0.
2022-05-12 22:37:52,362 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:52,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220463104}) about to wait for the following futures []
2022-05-12 22:37:52,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220463104}) done waiting for dependent futures
2022-05-12 22:37:52,362 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220463104}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 220463104}
2022-05-12 22:37:52,362 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:52,554 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173539328}) to executor  for transfer request: 0.
2022-05-12 22:37:52,555 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:52,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) about to wait for the following futures []
2022-05-12 22:37:52,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) done waiting for dependent futures
2022-05-12 22:37:52,555 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173539328}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 173539328}
2022-05-12 22:37:52,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:52,772 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141033472}) to executor  for transfer request: 0.
2022-05-12 22:37:52,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:52,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) about to wait for the following futures []
2022-05-12 22:37:52,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) done waiting for dependent futures
2022-05-12 22:37:52,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141033472}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 141033472}
2022-05-12 22:37:52,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:53,103 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205783040}) to executor  for transfer request: 0.
2022-05-12 22:37:53,103 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:53,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) about to wait for the following futures []
2022-05-12 22:37:53,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) done waiting for dependent futures
2022-05-12 22:37:53,104 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205783040}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 205783040}
2022-05-12 22:37:53,104 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:54,069 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230162432}) to executor  for transfer request: 0.
2022-05-12 22:37:54,069 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:54,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230162432}) about to wait for the following futures []
2022-05-12 22:37:54,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230162432}) done waiting for dependent futures
2022-05-12 22:37:54,070 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230162432}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 230162432}
2022-05-12 22:37:54,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:54,425 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235667456}) to executor  for transfer request: 0.
2022-05-12 22:37:54,425 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:54,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235667456}) about to wait for the following futures []
2022-05-12 22:37:54,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235667456}) done waiting for dependent futures
2022-05-12 22:37:54,426 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235667456}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 235667456}
2022-05-12 22:37:54,426 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:55,012 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190054400}) to executor  for transfer request: 0.
2022-05-12 22:37:55,012 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:55,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) about to wait for the following futures []
2022-05-12 22:37:55,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) done waiting for dependent futures
2022-05-12 22:37:55,013 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190054400}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 190054400}
2022-05-12 22:37:55,013 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:55,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198180864}) to executor  for transfer request: 0.
2022-05-12 22:37:55,202 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:55,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) about to wait for the following futures []
2022-05-12 22:37:55,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) done waiting for dependent futures
2022-05-12 22:37:55,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198180864}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 198180864}
2022-05-12 22:37:55,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,788 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220725248}) to executor  for transfer request: 0.
2022-05-12 22:37:56,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220725248}) about to wait for the following futures []
2022-05-12 22:37:56,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220725248}) done waiting for dependent futures
2022-05-12 22:37:56,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220725248}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 220725248}
2022-05-12 22:37:56,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206045184}) to executor  for transfer request: 0.
2022-05-12 22:37:56,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) about to wait for the following futures []
2022-05-12 22:37:56,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) done waiting for dependent futures
2022-05-12 22:37:56,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206045184}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 206045184}
2022-05-12 22:37:56,831 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212860928}) to executor  for transfer request: 0.
2022-05-12 22:37:57,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:57,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) about to wait for the following futures []
2022-05-12 22:37:57,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) done waiting for dependent futures
2022-05-12 22:37:57,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212860928}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 212860928}
2022-05-12 22:37:57,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,299 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182452224}) to executor  for transfer request: 0.
2022-05-12 22:37:57,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:57,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) about to wait for the following futures []
2022-05-12 22:37:57,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) done waiting for dependent futures
2022-05-12 22:37:57,300 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182452224}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 182452224}
2022-05-12 22:37:57,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:58,859 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141295616}) to executor  for transfer request: 0.
2022-05-12 22:37:58,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:58,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) about to wait for the following futures []
2022-05-12 22:37:58,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) done waiting for dependent futures
2022-05-12 22:37:58,860 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141295616}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 141295616}
2022-05-12 22:37:58,861 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:59,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230424576}) to executor  for transfer request: 0.
2022-05-12 22:37:59,297 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:59,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230424576}) about to wait for the following futures []
2022-05-12 22:37:59,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230424576}) done waiting for dependent futures
2022-05-12 22:37:59,298 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230424576}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 230424576}
2022-05-12 22:37:59,299 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:59,975 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220987392}) to executor  for transfer request: 0.
2022-05-12 22:37:59,975 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:59,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220987392}) about to wait for the following futures []
2022-05-12 22:37:59,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220987392}) done waiting for dependent futures
2022-05-12 22:37:59,976 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220987392}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 220987392}
2022-05-12 22:37:59,976 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:00,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206307328}) to executor  for transfer request: 0.
2022-05-12 22:38:00,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:00,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) about to wait for the following futures []
2022-05-12 22:38:00,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) done waiting for dependent futures
2022-05-12 22:38:00,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206307328}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 206307328}
2022-05-12 22:38:00,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:00,261 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235929600}) to executor  for transfer request: 0.
2022-05-12 22:38:00,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:00,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235929600}) about to wait for the following futures []
2022-05-12 22:38:00,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235929600}) done waiting for dependent futures
2022-05-12 22:38:00,262 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235929600}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 235929600}
2022-05-12 22:38:00,263 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:00,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173801472}) to executor  for transfer request: 0.
2022-05-12 22:38:00,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:00,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) about to wait for the following futures []
2022-05-12 22:38:00,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) done waiting for dependent futures
2022-05-12 22:38:00,948 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173801472}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 173801472}
2022-05-12 22:38:00,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190316544}) to executor  for transfer request: 0.
2022-05-12 22:38:01,273 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) about to wait for the following futures []
2022-05-12 22:38:01,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) done waiting for dependent futures
2022-05-12 22:38:01,274 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190316544}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 190316544}
2022-05-12 22:38:01,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,889 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198443008}) to executor  for transfer request: 0.
2022-05-12 22:38:01,889 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) about to wait for the following futures []
2022-05-12 22:38:01,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) done waiting for dependent futures
2022-05-12 22:38:01,890 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198443008}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 198443008}
2022-05-12 22:38:01,890 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:03,437 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213123072}) to executor  for transfer request: 0.
2022-05-12 22:38:03,438 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:03,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213123072}) about to wait for the following futures []
2022-05-12 22:38:03,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213123072}) done waiting for dependent futures
2022-05-12 22:38:03,438 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213123072}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 213123072}
2022-05-12 22:38:03,439 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,228 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230686720}) to executor  for transfer request: 0.
2022-05-12 22:38:05,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230686720}) about to wait for the following futures []
2022-05-12 22:38:05,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230686720}) done waiting for dependent futures
2022-05-12 22:38:05,229 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230686720}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 230686720}
2022-05-12 22:38:05,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,444 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174063616}) to executor  for transfer request: 0.
2022-05-12 22:38:05,444 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) about to wait for the following futures []
2022-05-12 22:38:05,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) done waiting for dependent futures
2022-05-12 22:38:05,445 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174063616}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 174063616}
2022-05-12 22:38:05,445 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,446 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141557760}) to executor  for transfer request: 0.
2022-05-12 22:38:05,447 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) about to wait for the following futures []
2022-05-12 22:38:05,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) done waiting for dependent futures
2022-05-12 22:38:05,447 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141557760}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 141557760}
2022-05-12 22:38:05,448 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190578688}) to executor  for transfer request: 0.
2022-05-12 22:38:05,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) about to wait for the following futures []
2022-05-12 22:38:05,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) done waiting for dependent futures
2022-05-12 22:38:05,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190578688}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 190578688}
2022-05-12 22:38:05,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,563 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182714368}) to executor  for transfer request: 0.
2022-05-12 22:38:05,564 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) about to wait for the following futures []
2022-05-12 22:38:05,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) done waiting for dependent futures
2022-05-12 22:38:05,564 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182714368}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 182714368}
2022-05-12 22:38:05,564 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:06,039 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236191744}) to executor  for transfer request: 0.
2022-05-12 22:38:06,039 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:06,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236191744}) about to wait for the following futures []
2022-05-12 22:38:06,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236191744}) done waiting for dependent futures
2022-05-12 22:38:06,040 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236191744}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 236191744}
2022-05-12 22:38:06,040 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:06,720 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221249536}) to executor  for transfer request: 0.
2022-05-12 22:38:06,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:06,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221249536}) about to wait for the following futures []
2022-05-12 22:38:06,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221249536}) done waiting for dependent futures
2022-05-12 22:38:06,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221249536}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 221249536}
2022-05-12 22:38:06,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:07,129 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206569472}) to executor  for transfer request: 0.
2022-05-12 22:38:07,129 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:07,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) about to wait for the following futures []
2022-05-12 22:38:07,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) done waiting for dependent futures
2022-05-12 22:38:07,129 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206569472}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 206569472}
2022-05-12 22:38:07,129 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,656 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198705152}) to executor  for transfer request: 0.
2022-05-12 22:38:08,656 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) about to wait for the following futures []
2022-05-12 22:38:08,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) done waiting for dependent futures
2022-05-12 22:38:08,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198705152}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 198705152}
2022-05-12 22:38:08,657 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,973 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213385216}) to executor  for transfer request: 0.
2022-05-12 22:38:08,973 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213385216}) about to wait for the following futures []
2022-05-12 22:38:08,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213385216}) done waiting for dependent futures
2022-05-12 22:38:08,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213385216}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 213385216}
2022-05-12 22:38:08,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:10,486 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230948864}) to executor  for transfer request: 0.
2022-05-12 22:38:10,487 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:10,487 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230948864}) about to wait for the following futures []
2022-05-12 22:38:10,487 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230948864}) done waiting for dependent futures
2022-05-12 22:38:10,487 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230948864}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 230948864}
2022-05-12 22:38:10,488 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:11,487 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141819904}) to executor  for transfer request: 0.
2022-05-12 22:38:11,487 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:11,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) about to wait for the following futures []
2022-05-12 22:38:11,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) done waiting for dependent futures
2022-05-12 22:38:11,488 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141819904}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 141819904}
2022-05-12 22:38:11,488 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:11,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182976512}) to executor  for transfer request: 0.
2022-05-12 22:38:11,644 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:11,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) about to wait for the following futures []
2022-05-12 22:38:11,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) done waiting for dependent futures
2022-05-12 22:38:11,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182976512}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 182976512}
2022-05-12 22:38:11,645 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:11,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206831616}) to executor  for transfer request: 0.
2022-05-12 22:38:11,975 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:11,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) about to wait for the following futures []
2022-05-12 22:38:11,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) done waiting for dependent futures
2022-05-12 22:38:11,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206831616}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 206831616}
2022-05-12 22:38:11,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,174 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190840832}) to executor  for transfer request: 0.
2022-05-12 22:38:13,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) about to wait for the following futures []
2022-05-12 22:38:13,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) done waiting for dependent futures
2022-05-12 22:38:13,175 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190840832}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 190840832}
2022-05-12 22:38:13,175 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,336 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213647360}) to executor  for transfer request: 0.
2022-05-12 22:38:13,336 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213647360}) about to wait for the following futures []
2022-05-12 22:38:13,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213647360}) done waiting for dependent futures
2022-05-12 22:38:13,337 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213647360}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 213647360}
2022-05-12 22:38:13,337 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207093760}) to executor  for transfer request: 0.
2022-05-12 22:38:13,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) about to wait for the following futures []
2022-05-12 22:38:13,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) done waiting for dependent futures
2022-05-12 22:38:13,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207093760}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 207093760}
2022-05-12 22:38:13,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:14,189 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221511680}) to executor  for transfer request: 0.
2022-05-12 22:38:14,189 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:14,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221511680}) about to wait for the following futures []
2022-05-12 22:38:14,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221511680}) done waiting for dependent futures
2022-05-12 22:38:14,189 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221511680}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 221511680}
2022-05-12 22:38:14,189 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:14,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236453888}) to executor  for transfer request: 0.
2022-05-12 22:38:14,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:14,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236453888}) about to wait for the following futures []
2022-05-12 22:38:14,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236453888}) done waiting for dependent futures
2022-05-12 22:38:14,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236453888}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 236453888}
2022-05-12 22:38:14,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:14,312 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174325760}) to executor  for transfer request: 0.
2022-05-12 22:38:14,312 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:14,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) about to wait for the following futures []
2022-05-12 22:38:14,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) done waiting for dependent futures
2022-05-12 22:38:14,312 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174325760}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 174325760}
2022-05-12 22:38:14,312 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:15,960 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231211008}) to executor  for transfer request: 0.
2022-05-12 22:38:15,960 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:15,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231211008}) about to wait for the following futures []
2022-05-12 22:38:15,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231211008}) done waiting for dependent futures
2022-05-12 22:38:15,961 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231211008}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 231211008}
2022-05-12 22:38:15,961 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:16,269 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198967296}) to executor  for transfer request: 0.
2022-05-12 22:38:16,269 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:16,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) about to wait for the following futures []
2022-05-12 22:38:16,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) done waiting for dependent futures
2022-05-12 22:38:16,269 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198967296}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 198967296}
2022-05-12 22:38:16,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:16,793 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213909504}) to executor  for transfer request: 0.
2022-05-12 22:38:16,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:16,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213909504}) about to wait for the following futures []
2022-05-12 22:38:16,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213909504}) done waiting for dependent futures
2022-05-12 22:38:16,794 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213909504}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 213909504}
2022-05-12 22:38:16,794 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:17,188 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207355904}) to executor  for transfer request: 0.
2022-05-12 22:38:17,188 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:17,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) about to wait for the following futures []
2022-05-12 22:38:17,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) done waiting for dependent futures
2022-05-12 22:38:17,188 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207355904}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 207355904}
2022-05-12 22:38:17,189 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:18,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191102976}) to executor  for transfer request: 0.
2022-05-12 22:38:18,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:18,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) about to wait for the following futures []
2022-05-12 22:38:18,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) done waiting for dependent futures
2022-05-12 22:38:18,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191102976}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 191102976}
2022-05-12 22:38:18,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:18,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142082048}) to executor  for transfer request: 0.
2022-05-12 22:38:18,925 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:18,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) about to wait for the following futures []
2022-05-12 22:38:18,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) done waiting for dependent futures
2022-05-12 22:38:18,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142082048}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 142082048}
2022-05-12 22:38:18,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:19,977 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174587904}) to executor  for transfer request: 0.
2022-05-12 22:38:19,977 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:19,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) about to wait for the following futures []
2022-05-12 22:38:19,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) done waiting for dependent futures
2022-05-12 22:38:19,977 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174587904}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 174587904}
2022-05-12 22:38:19,978 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:20,302 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221773824}) to executor  for transfer request: 0.
2022-05-12 22:38:20,302 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:20,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221773824}) about to wait for the following futures []
2022-05-12 22:38:20,303 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221773824}) done waiting for dependent futures
2022-05-12 22:38:20,303 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221773824}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 221773824}
2022-05-12 22:38:20,303 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:21,688 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199229440}) to executor  for transfer request: 0.
2022-05-12 22:38:21,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:21,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) about to wait for the following futures []
2022-05-12 22:38:21,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) done waiting for dependent futures
2022-05-12 22:38:21,689 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199229440}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 199229440}
2022-05-12 22:38:21,690 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,015 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183238656}) to executor  for transfer request: 0.
2022-05-12 22:38:22,016 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) about to wait for the following futures []
2022-05-12 22:38:22,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) done waiting for dependent futures
2022-05-12 22:38:22,016 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183238656}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 183238656}
2022-05-12 22:38:22,016 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,440 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214171648}) to executor  for transfer request: 0.
2022-05-12 22:38:22,440 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214171648}) about to wait for the following futures []
2022-05-12 22:38:22,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214171648}) done waiting for dependent futures
2022-05-12 22:38:22,441 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214171648}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 214171648}
2022-05-12 22:38:22,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,776 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207618048}) to executor  for transfer request: 0.
2022-05-12 22:38:22,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) about to wait for the following futures []
2022-05-12 22:38:22,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) done waiting for dependent futures
2022-05-12 22:38:22,777 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207618048}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 207618048}
2022-05-12 22:38:22,778 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,378 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222035968}) to executor  for transfer request: 0.
2022-05-12 22:38:23,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:23,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222035968}) about to wait for the following futures []
2022-05-12 22:38:23,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222035968}) done waiting for dependent futures
2022-05-12 22:38:23,379 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222035968}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 222035968}
2022-05-12 22:38:23,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,504 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236716032}) to executor  for transfer request: 0.
2022-05-12 22:38:23,504 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:23,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236716032}) about to wait for the following futures []
2022-05-12 22:38:23,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236716032}) done waiting for dependent futures
2022-05-12 22:38:23,505 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236716032}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 236716032}
2022-05-12 22:38:23,505 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:24,357 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191365120}) to executor  for transfer request: 0.
2022-05-12 22:38:24,358 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:24,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) about to wait for the following futures []
2022-05-12 22:38:24,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) done waiting for dependent futures
2022-05-12 22:38:24,358 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191365120}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 191365120}
2022-05-12 22:38:24,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:25,794 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183500800}) to executor  for transfer request: 0.
2022-05-12 22:38:25,794 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:25,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) about to wait for the following futures []
2022-05-12 22:38:25,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) done waiting for dependent futures
2022-05-12 22:38:25,795 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183500800}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 183500800}
2022-05-12 22:38:25,795 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:25,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231473152}) to executor  for transfer request: 0.
2022-05-12 22:38:25,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:25,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231473152}) about to wait for the following futures []
2022-05-12 22:38:25,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231473152}) done waiting for dependent futures
2022-05-12 22:38:25,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231473152}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 231473152}
2022-05-12 22:38:25,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:25,934 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199491584}) to executor  for transfer request: 0.
2022-05-12 22:38:25,934 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:25,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) about to wait for the following futures []
2022-05-12 22:38:25,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) done waiting for dependent futures
2022-05-12 22:38:25,935 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199491584}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 199491584}
2022-05-12 22:38:25,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174850048}) to executor  for transfer request: 0.
2022-05-12 22:38:26,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) about to wait for the following futures []
2022-05-12 22:38:26,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) done waiting for dependent futures
2022-05-12 22:38:26,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174850048}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 174850048}
2022-05-12 22:38:26,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207880192}) to executor  for transfer request: 0.
2022-05-12 22:38:27,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) about to wait for the following futures []
2022-05-12 22:38:27,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) done waiting for dependent futures
2022-05-12 22:38:27,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207880192}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 207880192}
2022-05-12 22:38:27,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:28,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214433792}) to executor  for transfer request: 0.
2022-05-12 22:38:28,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:28,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214433792}) about to wait for the following futures []
2022-05-12 22:38:28,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214433792}) done waiting for dependent futures
2022-05-12 22:38:28,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214433792}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 214433792}
2022-05-12 22:38:28,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:28,892 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142344192}) to executor  for transfer request: 0.
2022-05-12 22:38:28,892 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:28,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:28,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) about to wait for the following futures []
2022-05-12 22:38:28,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) done waiting for dependent futures
2022-05-12 22:38:28,893 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142344192}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 142344192}
2022-05-12 22:38:28,893 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:29,580 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199753728}) to executor  for transfer request: 0.
2022-05-12 22:38:29,580 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:29,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) about to wait for the following futures []
2022-05-12 22:38:29,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) done waiting for dependent futures
2022-05-12 22:38:29,581 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199753728}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 199753728}
2022-05-12 22:38:29,582 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:29,763 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231735296}) to executor  for transfer request: 0.
2022-05-12 22:38:29,763 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:29,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231735296}) about to wait for the following futures []
2022-05-12 22:38:29,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231735296}) done waiting for dependent futures
2022-05-12 22:38:29,764 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231735296}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 231735296}
2022-05-12 22:38:29,764 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:29,957 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208142336}) to executor  for transfer request: 0.
2022-05-12 22:38:29,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:29,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) about to wait for the following futures []
2022-05-12 22:38:29,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) done waiting for dependent futures
2022-05-12 22:38:29,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208142336}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 208142336}
2022-05-12 22:38:29,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:30,528 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191627264}) to executor  for transfer request: 0.
2022-05-12 22:38:30,529 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:30,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) about to wait for the following futures []
2022-05-12 22:38:30,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) done waiting for dependent futures
2022-05-12 22:38:30,529 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191627264}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 191627264}
2022-05-12 22:38:30,530 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175112192}) to executor  for transfer request: 0.
2022-05-12 22:38:31,029 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) about to wait for the following futures []
2022-05-12 22:38:31,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) done waiting for dependent futures
2022-05-12 22:38:31,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175112192}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 175112192}
2022-05-12 22:38:31,030 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222298112}) to executor  for transfer request: 0.
2022-05-12 22:38:31,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222298112}) about to wait for the following futures []
2022-05-12 22:38:31,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222298112}) done waiting for dependent futures
2022-05-12 22:38:31,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222298112}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 222298112}
2022-05-12 22:38:31,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:32,047 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236978176}) to executor  for transfer request: 0.
2022-05-12 22:38:32,047 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:32,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236978176}) about to wait for the following futures []
2022-05-12 22:38:32,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236978176}) done waiting for dependent futures
2022-05-12 22:38:32,048 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236978176}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 236978176}
2022-05-12 22:38:32,048 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:32,383 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208404480}) to executor  for transfer request: 0.
2022-05-12 22:38:32,383 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:32,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) about to wait for the following futures []
2022-05-12 22:38:32,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) done waiting for dependent futures
2022-05-12 22:38:32,383 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208404480}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 208404480}
2022-05-12 22:38:32,384 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200015872}) to executor  for transfer request: 0.
2022-05-12 22:38:33,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:33,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) about to wait for the following futures []
2022-05-12 22:38:33,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) done waiting for dependent futures
2022-05-12 22:38:33,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200015872}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 200015872}
2022-05-12 22:38:33,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,820 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214695936}) to executor  for transfer request: 0.
2022-05-12 22:38:33,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:33,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214695936}) about to wait for the following futures []
2022-05-12 22:38:33,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214695936}) done waiting for dependent futures
2022-05-12 22:38:33,821 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214695936}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 214695936}
2022-05-12 22:38:33,821 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,096 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183762944}) to executor  for transfer request: 0.
2022-05-12 22:38:35,096 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) about to wait for the following futures []
2022-05-12 22:38:35,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) done waiting for dependent futures
2022-05-12 22:38:35,097 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183762944}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 183762944}
2022-05-12 22:38:35,097 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,218 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208666624}) to executor  for transfer request: 0.
2022-05-12 22:38:35,219 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) about to wait for the following futures []
2022-05-12 22:38:35,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) done waiting for dependent futures
2022-05-12 22:38:35,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208666624}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 208666624}
2022-05-12 22:38:35,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:36,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231997440}) to executor  for transfer request: 0.
2022-05-12 22:38:36,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:36,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231997440}) about to wait for the following futures []
2022-05-12 22:38:36,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231997440}) done waiting for dependent futures
2022-05-12 22:38:36,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231997440}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 231997440}
2022-05-12 22:38:36,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:37,578 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237240320}) to executor  for transfer request: 0.
2022-05-12 22:38:37,578 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:37,578 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237240320}) about to wait for the following futures []
2022-05-12 22:38:37,578 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237240320}) done waiting for dependent futures
2022-05-12 22:38:37,578 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237240320}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 237240320}
2022-05-12 22:38:37,579 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:38,473 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191889408}) to executor  for transfer request: 0.
2022-05-12 22:38:38,473 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:38,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) about to wait for the following futures []
2022-05-12 22:38:38,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) done waiting for dependent futures
2022-05-12 22:38:38,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191889408}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 191889408}
2022-05-12 22:38:38,474 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:39,503 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208928768}) to executor  for transfer request: 0.
2022-05-12 22:38:39,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:39,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) about to wait for the following futures []
2022-05-12 22:38:39,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) done waiting for dependent futures
2022-05-12 22:38:39,504 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208928768}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 208928768}
2022-05-12 22:38:39,504 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175374336}) to executor  for transfer request: 0.
2022-05-12 22:38:40,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) about to wait for the following futures []
2022-05-12 22:38:40,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) done waiting for dependent futures
2022-05-12 22:38:40,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175374336}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 175374336}
2022-05-12 22:38:40,162 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214958080}) to executor  for transfer request: 0.
2022-05-12 22:38:40,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214958080}) about to wait for the following futures []
2022-05-12 22:38:40,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214958080}) done waiting for dependent futures
2022-05-12 22:38:40,168 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214958080}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 214958080}
2022-05-12 22:38:40,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,459 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200278016}) to executor  for transfer request: 0.
2022-05-12 22:38:40,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) about to wait for the following futures []
2022-05-12 22:38:40,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) done waiting for dependent futures
2022-05-12 22:38:40,460 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200278016}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 200278016}
2022-05-12 22:38:40,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232259584}) to executor  for transfer request: 0.
2022-05-12 22:38:40,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232259584}) about to wait for the following futures []
2022-05-12 22:38:40,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232259584}) done waiting for dependent futures
2022-05-12 22:38:40,682 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232259584}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 232259584}
2022-05-12 22:38:40,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222560256}) to executor  for transfer request: 0.
2022-05-12 22:38:40,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222560256}) about to wait for the following futures []
2022-05-12 22:38:40,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222560256}) done waiting for dependent futures
2022-05-12 22:38:40,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222560256}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 222560256}
2022-05-12 22:38:40,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:42,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184025088}) to executor  for transfer request: 0.
2022-05-12 22:38:42,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:42,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) about to wait for the following futures []
2022-05-12 22:38:42,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) done waiting for dependent futures
2022-05-12 22:38:42,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184025088}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 184025088}
2022-05-12 22:38:42,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:42,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192151552}) to executor  for transfer request: 0.
2022-05-12 22:38:42,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:42,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) about to wait for the following futures []
2022-05-12 22:38:42,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) done waiting for dependent futures
2022-05-12 22:38:42,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192151552}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 192151552}
2022-05-12 22:38:42,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:43,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209190912}) to executor  for transfer request: 0.
2022-05-12 22:38:43,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:43,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) about to wait for the following futures []
2022-05-12 22:38:43,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) done waiting for dependent futures
2022-05-12 22:38:43,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209190912}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 209190912}
2022-05-12 22:38:43,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:43,269 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232521728}) to executor  for transfer request: 0.
2022-05-12 22:38:43,269 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:43,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232521728}) about to wait for the following futures []
2022-05-12 22:38:43,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232521728}) done waiting for dependent futures
2022-05-12 22:38:43,270 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232521728}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 232521728}
2022-05-12 22:38:43,270 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:45,658 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215220224}) to executor  for transfer request: 0.
2022-05-12 22:38:45,658 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:45,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215220224}) about to wait for the following futures []
2022-05-12 22:38:45,659 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215220224}) done waiting for dependent futures
2022-05-12 22:38:45,659 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215220224}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 215220224}
2022-05-12 22:38:45,659 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:45,908 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200540160}) to executor  for transfer request: 0.
2022-05-12 22:38:45,908 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:45,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) about to wait for the following futures []
2022-05-12 22:38:45,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) done waiting for dependent futures
2022-05-12 22:38:45,909 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200540160}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 200540160}
2022-05-12 22:38:45,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:46,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209453056}) to executor  for transfer request: 0.
2022-05-12 22:38:46,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:46,693 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:46,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) about to wait for the following futures []
2022-05-12 22:38:46,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) done waiting for dependent futures
2022-05-12 22:38:46,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209453056}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 209453056}
2022-05-12 22:38:46,694 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,309 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184287232}) to executor  for transfer request: 0.
2022-05-12 22:38:47,309 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:47,310 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) about to wait for the following futures []
2022-05-12 22:38:47,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) done waiting for dependent futures
2022-05-12 22:38:47,310 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184287232}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 184287232}
2022-05-12 22:38:47,310 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,363 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175636480}) to executor  for transfer request: 0.
2022-05-12 22:38:47,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:47,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) about to wait for the following futures []
2022-05-12 22:38:47,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) done waiting for dependent futures
2022-05-12 22:38:47,364 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175636480}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 175636480}
2022-05-12 22:38:47,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222822400}) to executor  for transfer request: 0.
2022-05-12 22:38:47,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:47,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222822400}) about to wait for the following futures []
2022-05-12 22:38:47,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222822400}) done waiting for dependent futures
2022-05-12 22:38:47,723 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222822400}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 222822400}
2022-05-12 22:38:47,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237502464}) to executor  for transfer request: 0.
2022-05-12 22:38:48,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:48,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237502464}) about to wait for the following futures []
2022-05-12 22:38:48,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237502464}) done waiting for dependent futures
2022-05-12 22:38:48,359 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237502464}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 237502464}
2022-05-12 22:38:48,360 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192413696}) to executor  for transfer request: 0.
2022-05-12 22:38:48,514 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:48,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) about to wait for the following futures []
2022-05-12 22:38:48,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) done waiting for dependent futures
2022-05-12 22:38:48,515 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192413696}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 192413696}
2022-05-12 22:38:48,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,718 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232783872}) to executor  for transfer request: 0.
2022-05-12 22:38:48,718 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:48,719 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232783872}) about to wait for the following futures []
2022-05-12 22:38:48,719 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232783872}) done waiting for dependent futures
2022-05-12 22:38:48,719 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232783872}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 232783872}
2022-05-12 22:38:48,719 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:50,280 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215482368}) to executor  for transfer request: 0.
2022-05-12 22:38:50,280 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:50,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215482368}) about to wait for the following futures []
2022-05-12 22:38:50,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215482368}) done waiting for dependent futures
2022-05-12 22:38:50,281 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215482368}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 215482368}
2022-05-12 22:38:50,281 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:51,591 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223084544}) to executor  for transfer request: 0.
2022-05-12 22:38:51,592 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:51,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223084544}) about to wait for the following futures []
2022-05-12 22:38:51,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223084544}) done waiting for dependent futures
2022-05-12 22:38:51,592 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223084544}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 223084544}
2022-05-12 22:38:51,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:51,946 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200802304}) to executor  for transfer request: 0.
2022-05-12 22:38:51,946 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:51,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) about to wait for the following futures []
2022-05-12 22:38:51,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) done waiting for dependent futures
2022-05-12 22:38:51,946 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200802304}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 200802304}
2022-05-12 22:38:51,947 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192675840}) to executor  for transfer request: 0.
2022-05-12 22:38:52,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:52,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) about to wait for the following futures []
2022-05-12 22:38:52,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) done waiting for dependent futures
2022-05-12 22:38:52,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192675840}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 192675840}
2022-05-12 22:38:52,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,740 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175898624}) to executor  for transfer request: 0.
2022-05-12 22:38:52,740 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:52,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) about to wait for the following futures []
2022-05-12 22:38:52,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) done waiting for dependent futures
2022-05-12 22:38:52,741 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175898624}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 175898624}
2022-05-12 22:38:52,741 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:53,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233046016}) to executor  for transfer request: 0.
2022-05-12 22:38:53,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:53,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233046016}) about to wait for the following futures []
2022-05-12 22:38:53,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233046016}) done waiting for dependent futures
2022-05-12 22:38:53,924 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233046016}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 233046016}
2022-05-12 22:38:53,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,240 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223346688}) to executor  for transfer request: 0.
2022-05-12 22:38:54,240 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223346688}) about to wait for the following futures []
2022-05-12 22:38:54,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223346688}) done waiting for dependent futures
2022-05-12 22:38:54,241 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223346688}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 223346688}
2022-05-12 22:38:54,241 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,501 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237764608}) to executor  for transfer request: 0.
2022-05-12 22:38:54,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237764608}) about to wait for the following futures []
2022-05-12 22:38:54,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237764608}) done waiting for dependent futures
2022-05-12 22:38:54,502 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237764608}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 237764608}
2022-05-12 22:38:54,503 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:55,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201064448}) to executor  for transfer request: 0.
2022-05-12 22:38:55,015 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:55,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:55,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) about to wait for the following futures []
2022-05-12 22:38:55,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) done waiting for dependent futures
2022-05-12 22:38:55,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201064448}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 201064448}
2022-05-12 22:38:55,016 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:55,454 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215744512}) to executor  for transfer request: 0.
2022-05-12 22:38:55,454 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:55,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215744512}) about to wait for the following futures []
2022-05-12 22:38:55,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215744512}) done waiting for dependent futures
2022-05-12 22:38:55,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215744512}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 215744512}
2022-05-12 22:38:55,455 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:57,531 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238026752}) to executor  for transfer request: 0.
2022-05-12 22:38:57,531 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:57,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238026752}) about to wait for the following futures []
2022-05-12 22:38:57,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238026752}) done waiting for dependent futures
2022-05-12 22:38:57,531 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238026752}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 238026752}
2022-05-12 22:38:57,532 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:57,608 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233308160}) to executor  for transfer request: 0.
2022-05-12 22:38:57,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:57,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233308160}) about to wait for the following futures []
2022-05-12 22:38:57,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233308160}) done waiting for dependent futures
2022-05-12 22:38:57,609 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233308160}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 233308160}
2022-05-12 22:38:57,609 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:58,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223608832}) to executor  for transfer request: 0.
2022-05-12 22:38:58,024 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:58,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223608832}) about to wait for the following futures []
2022-05-12 22:38:58,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223608832}) done waiting for dependent futures
2022-05-12 22:38:58,025 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223608832}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 223608832}
2022-05-12 22:38:58,025 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:59,360 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223870976}) to executor  for transfer request: 0.
2022-05-12 22:38:59,360 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:59,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223870976}) about to wait for the following futures []
2022-05-12 22:38:59,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223870976}) done waiting for dependent futures
2022-05-12 22:38:59,361 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223870976}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 223870976}
2022-05-12 22:38:59,361 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:59,776 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216006656}) to executor  for transfer request: 0.
2022-05-12 22:38:59,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:59,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216006656}) about to wait for the following futures []
2022-05-12 22:38:59,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216006656}) done waiting for dependent futures
2022-05-12 22:38:59,777 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216006656}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 216006656}
2022-05-12 22:38:59,778 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233570304}) to executor  for transfer request: 0.
2022-05-12 22:39:00,167 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233570304}) about to wait for the following futures []
2022-05-12 22:39:00,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233570304}) done waiting for dependent futures
2022-05-12 22:39:00,167 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233570304}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 233570304}
2022-05-12 22:39:00,168 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,220 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216268800}) to executor  for transfer request: 0.
2022-05-12 22:39:03,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216268800}) about to wait for the following futures []
2022-05-12 22:39:03,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216268800}) done waiting for dependent futures
2022-05-12 22:39:03,221 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216268800}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 216268800}
2022-05-12 22:39:03,221 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,089 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233832448}) to executor  for transfer request: 0.
2022-05-12 22:39:04,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:04,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233832448}) about to wait for the following futures []
2022-05-12 22:39:04,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233832448}) done waiting for dependent futures
2022-05-12 22:39:04,090 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233832448}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 233832448}
2022-05-12 22:39:04,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,624 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238288896}) to executor  for transfer request: 0.
2022-05-12 22:39:04,624 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:04,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238288896}) about to wait for the following futures []
2022-05-12 22:39:04,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238288896}) done waiting for dependent futures
2022-05-12 22:39:04,625 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238288896}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 238288896}
2022-05-12 22:39:04,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:05,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224133120}) to executor  for transfer request: 0.
2022-05-12 22:39:05,999 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:05,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224133120}) about to wait for the following futures []
2022-05-12 22:39:06,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224133120}) done waiting for dependent futures
2022-05-12 22:39:06,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224133120}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 224133120}
2022-05-12 22:39:06,000 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:07,960 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234094592}) to executor  for transfer request: 0.
2022-05-12 22:39:07,960 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:07,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234094592}) about to wait for the following futures []
2022-05-12 22:39:07,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234094592}) done waiting for dependent futures
2022-05-12 22:39:07,961 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234094592}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 234094592}
2022-05-12 22:39:07,961 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:08,151 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216530944}) to executor  for transfer request: 0.
2022-05-12 22:39:08,151 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:08,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216530944}) about to wait for the following futures []
2022-05-12 22:39:08,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216530944}) done waiting for dependent futures
2022-05-12 22:39:08,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216530944}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 216530944}
2022-05-12 22:39:08,152 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:10,689 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234356736}) to executor  for transfer request: 0.
2022-05-12 22:39:10,689 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:10,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234356736}) about to wait for the following futures []
2022-05-12 22:39:10,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234356736}) done waiting for dependent futures
2022-05-12 22:39:10,690 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234356736}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 234356736}
2022-05-12 22:39:10,690 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,078 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224395264}) to executor  for transfer request: 0.
2022-05-12 22:39:11,078 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:11,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224395264}) about to wait for the following futures []
2022-05-12 22:39:11,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224395264}) done waiting for dependent futures
2022-05-12 22:39:11,079 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224395264}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 224395264}
2022-05-12 22:39:11,079 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,223 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216793088}) to executor  for transfer request: 0.
2022-05-12 22:39:11,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:11,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216793088}) about to wait for the following futures []
2022-05-12 22:39:11,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216793088}) done waiting for dependent futures
2022-05-12 22:39:11,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216793088}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 216793088}
2022-05-12 22:39:11,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:12,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234618880}) to executor  for transfer request: 0.
2022-05-12 22:39:12,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:12,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:12,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234618880}) about to wait for the following futures []
2022-05-12 22:39:12,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234618880}) done waiting for dependent futures
2022-05-12 22:39:12,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234618880}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 234618880}
2022-05-12 22:39:12,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:12,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238551040}) to executor  for transfer request: 0.
2022-05-12 22:39:12,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:12,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238551040}) about to wait for the following futures []
2022-05-12 22:39:12,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238551040}) done waiting for dependent futures
2022-05-12 22:39:12,549 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238551040}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 238551040}
2022-05-12 22:39:12,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:13,124 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217055232}) to executor  for transfer request: 0.
2022-05-12 22:39:13,124 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:13,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217055232}) about to wait for the following futures []
2022-05-12 22:39:13,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217055232}) done waiting for dependent futures
2022-05-12 22:39:13,125 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217055232}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 217055232}
2022-05-12 22:39:13,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:14,220 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224657408}) to executor  for transfer request: 0.
2022-05-12 22:39:14,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:14,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224657408}) about to wait for the following futures []
2022-05-12 22:39:14,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224657408}) done waiting for dependent futures
2022-05-12 22:39:14,221 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224657408}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 224657408}
2022-05-12 22:39:14,221 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:15,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217317376}) to executor  for transfer request: 0.
2022-05-12 22:39:15,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:15,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217317376}) about to wait for the following futures []
2022-05-12 22:39:15,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217317376}) done waiting for dependent futures
2022-05-12 22:39:15,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217317376}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 217317376}
2022-05-12 22:39:15,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:16,640 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224919552}) to executor  for transfer request: 0.
2022-05-12 22:39:16,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:16,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224919552}) about to wait for the following futures []
2022-05-12 22:39:16,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224919552}) done waiting for dependent futures
2022-05-12 22:39:16,641 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224919552}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 224919552}
2022-05-12 22:39:16,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:16,793 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238813184}) to executor  for transfer request: 0.
2022-05-12 22:39:16,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:16,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238813184}) about to wait for the following futures []
2022-05-12 22:39:16,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238813184}) done waiting for dependent futures
2022-05-12 22:39:16,794 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238813184}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 238813184}
2022-05-12 22:39:16,795 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,722 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225181696}) to executor  for transfer request: 0.
2022-05-12 22:39:17,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225181696}) about to wait for the following futures []
2022-05-12 22:39:17,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225181696}) done waiting for dependent futures
2022-05-12 22:39:17,723 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225181696}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 225181696}
2022-05-12 22:39:17,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:18,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217579520}) to executor  for transfer request: 0.
2022-05-12 22:39:18,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:18,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217579520}) about to wait for the following futures []
2022-05-12 22:39:18,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217579520}) done waiting for dependent futures
2022-05-12 22:39:18,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217579520}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 217579520}
2022-05-12 22:39:18,221 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,312 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217841664}) to executor  for transfer request: 0.
2022-05-12 22:39:19,312 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,312 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217841664}) about to wait for the following futures []
2022-05-12 22:39:19,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217841664}) done waiting for dependent futures
2022-05-12 22:39:19,312 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217841664}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 217841664}
2022-05-12 22:39:19,312 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225443840}) to executor  for transfer request: 0.
2022-05-12 22:39:19,758 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225443840}) about to wait for the following futures []
2022-05-12 22:39:19,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225443840}) done waiting for dependent futures
2022-05-12 22:39:19,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225443840}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 225443840}
2022-05-12 22:39:19,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,367 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239075328}) to executor  for transfer request: 0.
2022-05-12 22:39:22,367 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239075328}) about to wait for the following futures []
2022-05-12 22:39:22,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239075328}) done waiting for dependent futures
2022-05-12 22:39:22,368 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239075328}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 239075328}
2022-05-12 22:39:22,368 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225705984}) to executor  for transfer request: 0.
2022-05-12 22:39:22,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225705984}) about to wait for the following futures []
2022-05-12 22:39:22,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225705984}) done waiting for dependent futures
2022-05-12 22:39:22,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225705984}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 225705984}
2022-05-12 22:39:22,752 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:25,383 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225968128}) to executor  for transfer request: 0.
2022-05-12 22:39:25,383 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:25,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225968128}) about to wait for the following futures []
2022-05-12 22:39:25,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225968128}) done waiting for dependent futures
2022-05-12 22:39:25,384 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225968128}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 225968128}
2022-05-12 22:39:25,384 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:25,389 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239337472}) to executor  for transfer request: 0.
2022-05-12 22:39:25,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:25,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239337472}) about to wait for the following futures []
2022-05-12 22:39:25,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239337472}) done waiting for dependent futures
2022-05-12 22:39:25,390 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239337472}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 239337472}
2022-05-12 22:39:25,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,815 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226230272}) to executor  for transfer request: 0.
2022-05-12 22:39:26,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:26,816 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226230272}) about to wait for the following futures []
2022-05-12 22:39:26,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226230272}) done waiting for dependent futures
2022-05-12 22:39:26,816 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226230272}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 226230272}
2022-05-12 22:39:26,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:28,573 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239599616}) to executor  for transfer request: 0.
2022-05-12 22:39:28,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:28,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239599616}) about to wait for the following futures []
2022-05-12 22:39:28,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239599616}) done waiting for dependent futures
2022-05-12 22:39:28,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239599616}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 239599616}
2022-05-12 22:39:28,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:33,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239861760}) to executor  for transfer request: 0.
2022-05-12 22:39:33,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239861760}) about to wait for the following futures []
2022-05-12 22:39:33,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239861760}) done waiting for dependent futures
2022-05-12 22:39:33,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239861760}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 239861760}
2022-05-12 22:39:33,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240123904}) to executor  for transfer request: 0.
2022-05-12 22:39:36,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240123904}) about to wait for the following futures []
2022-05-12 22:39:36,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240123904}) done waiting for dependent futures
2022-05-12 22:39:36,663 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240123904}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 240123904}
2022-05-12 22:39:36,663 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:41,343 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240386048}) to executor  for transfer request: 0.
2022-05-12 22:39:41,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:41,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240386048}) about to wait for the following futures []
2022-05-12 22:39:41,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240386048}) done waiting for dependent futures
2022-05-12 22:39:41,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240386048}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 240386048}
2022-05-12 22:39:41,345 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240648192}) to executor  for transfer request: 0.
2022-05-12 22:39:44,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240648192}) about to wait for the following futures []
2022-05-12 22:39:44,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240648192}) done waiting for dependent futures
2022-05-12 22:39:44,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240648192}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 240648192}
2022-05-12 22:39:44,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:45,769 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240910336}) to executor  for transfer request: 0.
2022-05-12 22:39:45,769 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:45,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240910336}) about to wait for the following futures []
2022-05-12 22:39:45,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240910336}) done waiting for dependent futures
2022-05-12 22:39:45,770 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240910336}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 240910336}
2022-05-12 22:39:45,770 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:46,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241172480}) to executor  for transfer request: 0.
2022-05-12 22:39:46,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:46,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241172480}) about to wait for the following futures []
2022-05-12 22:39:46,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241172480}) done waiting for dependent futures
2022-05-12 22:39:46,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241172480}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 241172480}
2022-05-12 22:39:46,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:47,450 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241434624}) to executor  for transfer request: 0.
2022-05-12 22:39:47,450 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:47,451 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241434624}) about to wait for the following futures []
2022-05-12 22:39:47,451 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241434624}) done waiting for dependent futures
2022-05-12 22:39:47,451 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241434624}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 241434624}
2022-05-12 22:39:47,451 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,215 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241696768}) to executor  for transfer request: 0.
2022-05-12 22:39:48,215 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:48,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241696768}) about to wait for the following futures []
2022-05-12 22:39:48,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241696768}) done waiting for dependent futures
2022-05-12 22:39:48,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241696768}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 241696768}
2022-05-12 22:39:48,216 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,304 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241958912}) to executor  for transfer request: 0.
2022-05-12 22:39:48,304 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:48,305 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:39:48,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241958912}) about to wait for the following futures []
2022-05-12 22:39:48,305 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:48,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241958912}) done waiting for dependent futures
2022-05-12 22:39:48,305 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,305 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241958912}) with kwargs {'fileobj': <_io.BufferedRandom name=26>, 'offset': 241958912}
2022-05-12 22:39:48,305 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,306 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:39:48,306 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:39:48,306 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:39:48,306 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,619 eolearn.core.eoworkflow DEBUG    Computing DB2Vector(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {}
  meta_info: {}
  bbox: BBox(((219500.0, 1379500.0), (230500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:48,728 eolearn.core.eoworkflow DEBUG    Removing intermediate result for DB2Vector
2022-05-12 22:39:48,730 eolearn.core.eoworkflow DEBUG    Computing VectorToRaster(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((219500.0, 1379500.0), (230500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:48,737 eolearn.core.eoworkflow DEBUG    Removing intermediate result for VectorToRaster
2022-05-12 22:39:48,738 eolearn.core.eoworkflow DEBUG    Computing Extent2Boundary(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((219500.0, 1379500.0), (230500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:48,757 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Boundary
2022-05-12 22:39:48,758 eolearn.core.eoworkflow DEBUG    Computing Extent2Distance(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((219500.0, 1379500.0), (230500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:48,892 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Distance
2022-05-12 22:39:48,893 eolearn.core.eoworkflow DEBUG    Computing SaveTask(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {
    DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
  }
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((219500.0, 1379500.0), (230500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{'eopatch_folder': '30PTU_2_1'})
2022-05-12 22:39:48,896 botocore.loaders DEBUG    Loading JSON file: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/boto3/data/s3/2006-03-01/resources-1.json
2022-05-12 22:39:48,897 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:48,898 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:48,898 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:48,898 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:48,898 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:48,899 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:48,899 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:48,900 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:48,901 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:48,901 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1'}
2022-05-12 22:39:48,901 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:48,901 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:48,901 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:48,901 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:48,901 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:48,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:48,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:48,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:48,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:48,901 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:48,902 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:48,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:48,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:48,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:48,902 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:48,902 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:48,902 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:39:48,902 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1
2022-05-12 22:39:48,902 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:48,902 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223948Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:48,902 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223948Z
20220512/us-east-1/s3/aws4_request
a844b80f639669e20ece767a77442d8ad0c2fe840ec0d515abd4271f22d19c25
2022-05-12 22:39:48,902 botocore.auth DEBUG    Signature:
9bb9ba371563938d310e91302064062a5deed269dbf8a3c3dabff97fe40a548b
2022-05-12 22:39:48,902 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:48,902 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:48,903 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:48,903 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:04,222 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1 HTTP/1.1" 400 0
2022-05-12 22:40:04,223 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BWJTYCGC48EY8MZT', 'x-amz-id-2': 'PXFc7gVeb7ssP+rD+xQNBGIgiFdT8133dLI7Oj+tRzlqtZSF1hajdg7yrA5CZ0VBXUiIpOt4T9Q=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:03 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:04,223 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:04,227 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:04,228 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:04,228 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:04,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,229 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,229 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,229 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,229 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,229 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:04,229 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,230 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,230 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,230 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,230 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,230 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:04,230 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:04,231 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:04,231 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224004Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:04,231 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224004Z
20220512/us-east-1/s3/aws4_request
01df9403cfeb2d8a32a03c94a9c8bf2da46d75b8fc5f0ecf83f283365294830a
2022-05-12 22:40:04,231 botocore.auth DEBUG    Signature:
4a50d6bf36e9f18c37e761c05e131e35eeddf2a3b6490fae82ab00c0863996c4
2022-05-12 22:40:04,231 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,231 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:04,232 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:04,232 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:05,642 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:05,643 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': '533A34RR697PRGYF', 'x-amz-id-2': 'WZ/qOZ7wRrkL+pKkRveWtCItEBeyX18Cr/vtkTbIWyI8abyKorZp5UzZm42Kg3XKZBYIFObbq5Q=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:04 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:05,643 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:05,643 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,643 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:05,644 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,644 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:05,644 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:05,644 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:05,645 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,645 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,645 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:05,645 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:05,646 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:05,646 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224005Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:05,646 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224005Z
20220512/eu-central-1/s3/aws4_request
66b649f622a46547260a1ed3046915a6a2d8027c99318f33adff82147f909aef
2022-05-12 22:40:05,646 botocore.auth DEBUG    Signature:
0ac8e63213eb9aa617c4da890d84f80381ff40c770e46141df8d17ffcf112050
2022-05-12 22:40:05,646 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,646 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:05,647 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:05,647 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:06,678 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:06,678 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'deB1oIJdSJP0bDACrx3gzVina5DHQDpFjBZO+TTyUtbc4kTDKctXoNKpx/QG87HRnDy1O6Ev0nc=', 'x-amz-request-id': 'PH0N33H8TQF8R4MF', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:06,678 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,679 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:06,679 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,679 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:06,679 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:06,680 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:06,680 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:06,680 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:06,680 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:06,681 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:06,681 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1
2022-05-12 22:40:06,682 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,682 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,682 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/eu-central-1/s3/aws4_request
2f45f895f0ec95274abd6c2bf10ea77df05e92d8a32420b4d81e226a4635255d
2022-05-12 22:40:06,682 botocore.auth DEBUG    Signature:
38a43e6070f56ab5d6c526c7bc990c688f22fb02439589a8be526abfa0e22576
2022-05-12 22:40:06,682 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:06,683 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,683 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,790 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1 HTTP/1.1" 404 0
2022-05-12 22:40:06,790 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'PH0YCVM6X9RT5BFH', 'x-amz-id-2': 'aAsWbrlWaTXyzSTMjhFE9sdFzL7e8tuFAwiD69CwrIcPGbDr+jvR85iJUJDyAe2H3Z4Ls3GCfyI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:06 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:06,791 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,791 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:06,791 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,791 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:06,791 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:06,792 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:06,795 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:06,795 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:06,796 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,796 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,796 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:06,796 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:06,796 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,796 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,796 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:06,796 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:06,796 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,796 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,796 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:06,797 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:06,797 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,797 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,797 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:06,797 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:06,797 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:06,797 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:06,798 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,798 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,798 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/eu-central-1/s3/aws4_request
1629cbd256b2e4e45f56592b179eb5ed5b96905c268f68672436b104f01fd939
2022-05-12 22:40:06,798 botocore.auth DEBUG    Signature:
a55bdaefc62f944cc1892b389a278ceab6df683bc85cba5f104b7cc35f86a94a
2022-05-12 22:40:06,798 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:06,798 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,798 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,880 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:06,880 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'RdtQ1U0Wi8dE1Spv49x71hdRB+Te7O2JTYakJBN7FT5QFvFffwCE4PMP0R4GqT1HC77DvhVbrD4=', 'x-amz-request-id': 'PH0MA5HG55JMVB8Y', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:06,880 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,881 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:06,881 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,881 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:06,881 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'PH0MA5HG55JMVB8Y', 'HostId': 'RdtQ1U0Wi8dE1Spv49x71hdRB+Te7O2JTYakJBN7FT5QFvFffwCE4PMP0R4GqT1HC77DvhVbrD4=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'RdtQ1U0Wi8dE1Spv49x71hdRB+Te7O2JTYakJBN7FT5QFvFffwCE4PMP0R4GqT1HC77DvhVbrD4=', 'x-amz-request-id': 'PH0MA5HG55JMVB8Y', 'date': 'Thu, 12 May 2022 22:40:07 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:06,881 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:06,882 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:06,883 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:06,883 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:06,884 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:06,885 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:06,886 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,886 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,886 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:06,886 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:06,886 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,887 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,887 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:06,887 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,887 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,887 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_1/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:06,887 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:06,887 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,887 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,887 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:06,887 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:06,887 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:06,887 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,887 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,887 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,887 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_1%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,887 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/us-east-1/s3/aws4_request
e5c7447ba7f034a55500226d1c3492c27a85c3b2fb8b6191d0d93eef6d6ac333
2022-05-12 22:40:06,887 botocore.auth DEBUG    Signature:
7432abbccb8eb262d871044928c14e5277b5fdc6140f81f30861393a64b68357
2022-05-12 22:40:06,888 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:06,888 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,888 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,888 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:07,614 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:40:07,615 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'V3SHHXXEF2RSP8AK', 'x-amz-id-2': 'Aa0HtGA93XzoGIAx8lyNHSdPNnlsGuGNSWsSLNrRPV1cVLsy9GtV050wu13Cx2XADhXfr60FKxU=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:07,615 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1V3SHHXXEF2RSP8AKAa0HtGA93XzoGIAx8lyNHSdPNnlsGuGNSWsSLNrRPV1cVLsy9GtV050wu13Cx2XADhXfr60FKxU='
2022-05-12 22:40:07,621 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:07,621 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:07,621 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:07,622 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:07,622 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,622 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:07,622 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:07,622 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,623 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,623 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:07,623 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:07,623 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,623 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,624 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:07,624 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_1%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224007Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:07,624 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224007Z
20220512/eu-central-1/s3/aws4_request
a90e699325ec8e4e7a25459cdef869d7f94c2650770df808f081b52e0227edfe
2022-05-12 22:40:07,624 botocore.auth DEBUG    Signature:
5e238ea228179b4e86cb28524ac1ea5db42e4dc31387df52139734892c4be39e
2022-05-12 22:40:07,624 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:07,625 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:07,625 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:07,625 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:08,596 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,598 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'MwiW2JJ93pPgpRyVJrWFCbMTNKMb0qDQKkjdHR8Z+NEeLYnWhxHfnvaEScsQqzNh51T1FvTSTc0=', 'x-amz-request-id': '34DQGB59A4C156JD', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,598 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_1/1000/urlfalseeopatches/30PTU_2_1/2022-05-12T11:04:14.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/bbox.pkl2022-05-12T11:04:36.000Z"725434ac833dd792b4393cd3e737872a"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/timestamp.pkl2022-05-12T11:04:35.000Z"d20f57f9b0299badcdaec2f120421aa8"2089e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/data/eopatches/30PTU_2_1/mask/'
2022-05-12 22:40:08,599 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,599 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,599 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,599 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:08,599 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,599 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,599 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,599 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,599 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,599 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,600 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,600 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:08,600 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,600 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,600 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,600 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_1/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,600 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:08,600 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,600 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,600 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:08,600 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:08,600 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,600 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,600 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,600 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_1%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,600 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
10308f2eba9b94e174e0d9316738d952215bf6c59ab47bf18ac6f9c27aa4e28b
2022-05-12 22:40:08,600 botocore.auth DEBUG    Signature:
9dc3876b29b73eb98ad1c2e2e2c04b7ed7b17785342a13bd23ea53dc91acb5c6
2022-05-12 22:40:08,600 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:08,600 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,601 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,686 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_1%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,687 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'dChgGTG7dT8afVxmumRhW/JLikrZgttn0JCupGTLu4dmgqhrUseYB+XBj0NtfYENCZcypTi0pr4=', 'x-amz-request-id': '34DQWZFZ471Q3HZB', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,687 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_1/data/1000/urlfalseeopatches/30PTU_2_1/data/2022-05-12T11:04:26.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/data/BANDS.npy2022-05-12T11:04:37.000Z"961719f7383ed9f8c8f51f5bbf470366-29"242000128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/data/CLP.npy2022-05-12T11:04:35.000Z"62fb197ea0e757227be69ba4beb5344b-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:08,689 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,689 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,689 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,689 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,691 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,691 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:08,691 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,691 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,691 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,691 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_2_1/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:08,692 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,692 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,693 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,693 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_2_1%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,693 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
e1798c9ce8ff64031b71c162619cf53e5e03bc05dc263577c6e92abc424625bb
2022-05-12 22:40:08,693 botocore.auth DEBUG    Signature:
fba6114f9ca35d61486a9c570112932a233a59b547810a860895f8c175f27f06
2022-05-12 22:40:08,693 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:08,693 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,694 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,782 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_2_1%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,783 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'koK8DVrxMcjA5qPpIZg8uqYSSLOTNRoJ8vW13GkCCwBIY0MVWBxKH1ZF5BS0XqEWKvfjrACbcwE=', 'x-amz-request-id': '34DN10ANT589XMK8', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,783 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_2_1/mask/1000/urlfalseeopatches/30PTU_2_1/mask/2022-05-12T11:04:21.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/mask/CLM.npy2022-05-12T11:04:36.000Z"92a389103199133c18f0ff7abeaa496d-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_2_1/mask/IS_DATA.npy2022-05-12T11:04:35.000Z"d924a9a3237bf4d818c83d0d9b773608-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:08,785 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,785 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,785 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,785 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,786 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,788 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless'}
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,790 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,790 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,790 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:08,790 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,790 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,790 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,790 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,790 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,790 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,791 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,791 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,791 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:08,791 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:08,791 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,791 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,791 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
3b894a4c60b161edff7279c542ccd63ef5dec4fda37d461e34bd6160df78b18b
2022-05-12 22:40:08,791 botocore.auth DEBUG    Signature:
a39ed243171c93727142a020117f6abf28316a08ce56545025b26546ac056d6e
2022-05-12 22:40:08,791 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,792 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,792 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,874 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:08,875 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DGEPFH7TE819VH', 'x-amz-id-2': 'oRdynRrv3zHQsUP/qyVELbKEu4GsSbBe7adADMNr+uii6rFurOvDed1xhKMxrO8a+CAJrjQ0EmQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,875 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,875 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,876 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,876 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,876 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,878 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless/'}
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,879 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,879 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,879 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:08,879 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:08,880 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,880 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,880 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
2b8cc9e73cf9601a067d402a59cac5e956e09b0db1ef7836b2687be1c32741d3
2022-05-12 22:40:08,880 botocore.auth DEBUG    Signature:
43be80f528a4fcfe9b305fe993abb048a2904a34179121ed3fc83d944950c3c4
2022-05-12 22:40:08,880 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,880 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,881 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,964 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:08,965 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DTSPKV068NBE8B', 'x-amz-id-2': 'U9pAbyOxWsC5C+TUGdHWR0fktWlJbA/3jcUbFxWC01p4dfULd/TYmrYqYpIPSkOmooU5KWhYTG4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,965 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,965 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,965 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,965 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,966 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,968 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,968 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:08,968 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,968 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,969 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,970 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,970 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:08,971 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:08,971 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,971 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,971 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
6c3276d9df4bb0ea8345d6a7485a9b6a7c6857e9682c7bb8019a472b63ff7750
2022-05-12 22:40:08,971 botocore.auth DEBUG    Signature:
656b657f01eac40b8ed02808b442c991bed16635b11c21d5a1d33b0baad81eb5
2022-05-12 22:40:08,971 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,972 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,972 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,057 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,057 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '/ivm0fWAXbB0y+DArnFN9Aw06/O5xzzIJPxzqpsqNwfxCE5RSC7/0ftlwrA/er8Q7fNryTZbXB8=', 'x-amz-request-id': '58AE1V2HN2YCN48A', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,058 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,059 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,060 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58AE1V2HN2YCN48A', 'HostId': '/ivm0fWAXbB0y+DArnFN9Aw06/O5xzzIJPxzqpsqNwfxCE5RSC7/0ftlwrA/er8Q7fNryTZbXB8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '/ivm0fWAXbB0y+DArnFN9Aw06/O5xzzIJPxzqpsqNwfxCE5RSC7/0ftlwrA/er8Q7fNryTZbXB8=', 'x-amz-request-id': '58AE1V2HN2YCN48A', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,060 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,062 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,062 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless'}
2022-05-12 22:40:09,062 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,062 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,063 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:09,064 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:09,064 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,064 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,064 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
1a6bd8f99db5320ce34381286cf458e70f0ae2662854da76c5a46c3b76c8de2b
2022-05-12 22:40:09,064 botocore.auth DEBUG    Signature:
57f98bcfab1b78140ffdb3df84880c39b408eedc538dc8693bde5d7ee4c23f96
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,065 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,145 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,146 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58ADFQHF2FNZZGJY', 'x-amz-id-2': 'OJiAA6sgfbSHTDkAbKFSHCp5uPLlcV4vcsI5cnmU0iTgc/f9ywoCVYXFkqyoIyXaT6w2ElS2kko=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,146 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,146 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,146 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,147 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,147 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,149 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless/'}
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:09,150 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:09,151 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,151 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,151 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
64f54563fafea18e70b42c781f0b66f5f908afc6c482fcb0b65dd0037f62a099
2022-05-12 22:40:09,151 botocore.auth DEBUG    Signature:
8b52f7a3fa89e7ca9c3fe5775132f931723fc45e1dc719453890af2e5f536395
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,151 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,151 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,232 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,233 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A5885CY492TNM9', 'x-amz-id-2': 'D/yDGVxCYDC6bCf/nveCszc5GuL6GuB/vqxhogdSbkPEXodQAy0hQNfEkYGBmWTrpzWkw+G96O0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,233 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,233 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,234 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,234 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,234 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,236 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1'}
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,236 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:09,237 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1
2022-05-12 22:40:09,237 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,237 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,237 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
cdc5fe63bcc48d834fbab9dbc9f306eaf84b4cab94c2c8a72c1d311770610fcb
2022-05-12 22:40:09,237 botocore.auth DEBUG    Signature:
c6a416c83398fc4affa0fb071c8f651fe4b2796e205269837952504380a2ed6c
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,238 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,316 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1 HTTP/1.1" 404 0
2022-05-12 22:40:09,316 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A4ZF8GBYSRN3RP', 'x-amz-id-2': 'ElwZNGFZNSi2fXsa+F8mbT57bCJvgZp0uB5EaIjbXMrudU+NMzoFmckMZ+Urm4x7CdQnQmqd5mU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,317 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,317 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,317 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,317 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,317 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,320 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,320 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:09,320 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,320 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,320 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,321 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,322 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,322 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:09,323 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:09,323 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,323 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,323 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
a5b359ed214f47197ed38d5e2a292e5f1dbb5249852854f7ee4121c3bde98c50
2022-05-12 22:40:09,323 botocore.auth DEBUG    Signature:
b5943080b5a49d6bec193966c2318300c82087ebf28bebeeafed749396d76c36
2022-05-12 22:40:09,324 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,324 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,325 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,407 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,408 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hNwWCTsx4sNWTXD5+THxyI7JMHDPctWKVSqvqsYLli0alm9648hX4D7QrW3DSB3OtLvBOQiTr1Q=', 'x-amz-request-id': '58A3CEMCCK4FV0NK', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,408 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,409 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,409 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,409 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,410 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A3CEMCCK4FV0NK', 'HostId': 'hNwWCTsx4sNWTXD5+THxyI7JMHDPctWKVSqvqsYLli0alm9648hX4D7QrW3DSB3OtLvBOQiTr1Q=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'hNwWCTsx4sNWTXD5+THxyI7JMHDPctWKVSqvqsYLli0alm9648hX4D7QrW3DSB3OtLvBOQiTr1Q=', 'x-amz-request-id': '58A3CEMCCK4FV0NK', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,410 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,413 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1'}
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,415 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,416 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,416 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,416 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:09,416 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1
2022-05-12 22:40:09,417 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,417 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,417 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
cdc5fe63bcc48d834fbab9dbc9f306eaf84b4cab94c2c8a72c1d311770610fcb
2022-05-12 22:40:09,417 botocore.auth DEBUG    Signature:
c6a416c83398fc4affa0fb071c8f651fe4b2796e205269837952504380a2ed6c
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,418 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,418 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,501 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1 HTTP/1.1" 404 0
2022-05-12 22:40:09,502 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A3G6TZTD0SQN8P', 'x-amz-id-2': 'g2SN9gI1vNlXs7wWu5xasKUrtxqqjVvYCl7jkcFsD2tAbWZoQUZivU41HMXS5y1Ck0jn9UzpPzo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,502 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,502 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,502 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,502 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,503 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,505 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,506 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,507 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,508 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,509 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:09,509 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:09,509 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,509 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,510 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
a5b359ed214f47197ed38d5e2a292e5f1dbb5249852854f7ee4121c3bde98c50
2022-05-12 22:40:09,510 botocore.auth DEBUG    Signature:
b5943080b5a49d6bec193966c2318300c82087ebf28bebeeafed749396d76c36
2022-05-12 22:40:09,510 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,510 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,511 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,593 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,594 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'QTjdWim5Li7TQPGx4FNAh/2KHedRTFzWWboqN+zJ6ewU28HwxCPGeZ2qnXJ1od7TtUYIBUn7Glg=', 'x-amz-request-id': '58A1G4MN7X0G379K', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,594 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,595 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,595 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,595 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,595 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A1G4MN7X0G379K', 'HostId': 'QTjdWim5Li7TQPGx4FNAh/2KHedRTFzWWboqN+zJ6ewU28HwxCPGeZ2qnXJ1od7TtUYIBUn7Glg=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'QTjdWim5Li7TQPGx4FNAh/2KHedRTFzWWboqN+zJ6ewU28HwxCPGeZ2qnXJ1od7TtUYIBUn7Glg=', 'x-amz-request-id': '58A1G4MN7X0G379K', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,596 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,598 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,598 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless'}
2022-05-12 22:40:09,598 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,598 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,599 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,599 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,600 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,600 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,600 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,600 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,600 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,600 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:09,600 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:09,601 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,601 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,601 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
1a6bd8f99db5320ce34381286cf458e70f0ae2662854da76c5a46c3b76c8de2b
2022-05-12 22:40:09,601 botocore.auth DEBUG    Signature:
57f98bcfab1b78140ffdb3df84880c39b408eedc538dc8693bde5d7ee4c23f96
2022-05-12 22:40:09,601 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,601 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,602 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,682 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,683 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A1E3XSPQFEX3EX', 'x-amz-id-2': 'RwnUb/JZrCTSM70ZYe+iWP+u4/eedvrybgPfAKeYihtfI7HOlB/x6icYaUeK3YW86It0pcgF3gc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,683 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,683 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,684 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,684 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,684 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,687 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,687 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless/'}
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,689 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,690 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,690 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:09,690 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:09,690 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,690 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,690 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
64f54563fafea18e70b42c781f0b66f5f908afc6c482fcb0b65dd0037f62a099
2022-05-12 22:40:09,690 botocore.auth DEBUG    Signature:
8b52f7a3fa89e7ca9c3fe5775132f931723fc45e1dc719453890af2e5f536395
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,691 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,691 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,769 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,770 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AF77HQ4VV5TBKA', 'x-amz-id-2': 'glQMPjXBew4Q5cfn0zo6EYyuefsIf1kq4sMvwHO9nFoHblMveJjEaKAwxG1nH26tEXMr3u5TWkA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,770 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,770 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,770 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,770 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,770 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,771 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,773 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:09,773 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,773 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,773 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,773 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,773 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:09,773 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:09,774 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,774 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,774 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,774 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:09,774 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:09,774 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,774 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,774 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,775 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:09,775 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:09,775 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:09,775 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:09,775 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:09,775 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:09,775 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:09,775 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,775 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_1/mask_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224009Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:09,775 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
79aa31fc0ec7194fb9e40f74c0e646df7b875afc0477374729c290420faebee7
2022-05-12 22:40:09,775 botocore.auth DEBUG    Signature:
2a2cf2c8ec6e1cae7c7a3a45f825362bf6a624231948606268a50d5d24320924
2022-05-12 22:40:09,775 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:09,775 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,775 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,868 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:09,869 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'H3p0VhwuvHok/FxZAfpEfUcotaNpj5yJp2TvRHWm+SBXVQarhv7HOz953jONnbenQjyQBri5SCo=', 'x-amz-request-id': '58A0V237H71XGV1P', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,869 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:09,869 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:09,869 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A0V237H71XGV1P', 'HostId': 'H3p0VhwuvHok/FxZAfpEfUcotaNpj5yJp2TvRHWm+SBXVQarhv7HOz953jONnbenQjyQBri5SCo=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'H3p0VhwuvHok/FxZAfpEfUcotaNpj5yJp2TvRHWm+SBXVQarhv7HOz953jONnbenQjyQBri5SCo=', 'x-amz-request-id': '58A0V237H71XGV1P', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:09,869 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,870 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,871 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,871 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,871 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:09,871 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:09,871 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,872 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,872 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
a5b359ed214f47197ed38d5e2a292e5f1dbb5249852854f7ee4121c3bde98c50
2022-05-12 22:40:09,872 botocore.auth DEBUG    Signature:
b5943080b5a49d6bec193966c2318300c82087ebf28bebeeafed749396d76c36
2022-05-12 22:40:09,872 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,872 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,872 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,960 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,960 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'nzdhaH1T/rCt9tfxyhTbw2AqtXloIZqysS8CppLlYs0ZG+l+fgEZ1EmJ6EE+dkOSb8UDa793gRE=', 'x-amz-request-id': '58AE00PKE1KWPA23', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,960 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,961 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,961 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,961 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,961 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58AE00PKE1KWPA23', 'HostId': 'nzdhaH1T/rCt9tfxyhTbw2AqtXloIZqysS8CppLlYs0ZG+l+fgEZ1EmJ6EE+dkOSb8UDa793gRE=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'nzdhaH1T/rCt9tfxyhTbw2AqtXloIZqysS8CppLlYs0ZG+l+fgEZ1EmJ6EE+dkOSb8UDa793gRE=', 'x-amz-request-id': '58AE00PKE1KWPA23', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,961 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,962 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,962 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless'}
2022-05-12 22:40:09,962 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,962 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,962 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,962 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,963 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,963 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,963 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,963 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:09,963 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,963 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,963 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,963 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,963 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,963 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,963 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,963 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,963 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:09,963 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:09,963 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,964 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,964 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
1a6bd8f99db5320ce34381286cf458e70f0ae2662854da76c5a46c3b76c8de2b
2022-05-12 22:40:09,964 botocore.auth DEBUG    Signature:
57f98bcfab1b78140ffdb3df84880c39b408eedc538dc8693bde5d7ee4c23f96
2022-05-12 22:40:09,964 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,964 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,964 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,044 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,045 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX19NQMYXDQAZVBN', 'x-amz-id-2': 'QpgcZAWp3OBCsCgUyv3/TUtCT2Tp2vVVV05lXxec646qg+5+gRnQWyiibe4G/QTFtanybMQNmGU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,045 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,045 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,045 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,045 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,046 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,048 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless/'}
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,049 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,049 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,050 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,050 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,050 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:10,050 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:10,050 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,050 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,050 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
0e93ca624d51297487aecae11cb4ed8175eed225df1d5e7c4a0e4f58e836a368
2022-05-12 22:40:10,050 botocore.auth DEBUG    Signature:
d0fe6fd6999cb3b187957637aa8c2e5c591fee933a87f5d239bccf9e6a3177fe
2022-05-12 22:40:10,050 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,050 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,050 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,137 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:10,138 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'AA8K7ovCZ3BfjSAVO2uZEGf+3xqkIftd8ABPbTqmaunkqF4X2NKbCX+j7uOOLSLpAloFnSb0PJA=', 'x-amz-request-id': 'ZX132B3YVSVYGFGJ', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,138 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,138 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,139 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,139 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,139 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX132B3YVSVYGFGJ', 'HostId': 'AA8K7ovCZ3BfjSAVO2uZEGf+3xqkIftd8ABPbTqmaunkqF4X2NKbCX+j7uOOLSLpAloFnSb0PJA=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'AA8K7ovCZ3BfjSAVO2uZEGf+3xqkIftd8ABPbTqmaunkqF4X2NKbCX+j7uOOLSLpAloFnSb0PJA=', 'x-amz-request-id': 'ZX132B3YVSVYGFGJ', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,139 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,140 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,140 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless'}
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,141 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,141 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,142 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,142 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,142 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,142 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,142 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,142 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:10,142 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:10,142 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,142 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,142 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
14abe1bc8418a26beccbcf23a522ee0cbe7cdcee82b809baa56f269014f81c3b
2022-05-12 22:40:10,142 botocore.auth DEBUG    Signature:
89d0bae6c7e0dbfbc13b1e14468b74a95fea017592ef324e20d50880afb5f52a
2022-05-12 22:40:10,143 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,143 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,143 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,228 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,229 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX184T9JV7WA0Y5F', 'x-amz-id-2': 'klew8L7AgH5S2CHjxU8/QNgiFOm7jnaEtqzUbcICRTKxV3q4ibZENqCfdn/NuEPzpCkqXQtKbzE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,229 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,229 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,230 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,230 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,232 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,232 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless/'}
2022-05-12 22:40:10,232 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,232 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,233 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,233 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,233 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,233 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,233 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,233 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:10,233 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,233 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,233 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,233 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,233 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,233 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,234 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,234 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,234 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:10,234 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:10,234 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,234 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,234 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
5443a0449ee87212c3173714e3c4e275f6591b2945063a115686445783ad8f26
2022-05-12 22:40:10,234 botocore.auth DEBUG    Signature:
63de6402aec401e85084842217cd297597d47218c254ea524b495a264ba73333
2022-05-12 22:40:10,234 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,235 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,235 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,320 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,321 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX17MWZG40924W2F', 'x-amz-id-2': 'U3PDhjj7ziBx0151w7A/y5ByuIleb7hk+8oQUeI01KhyF9Wh+dFAaj87LapcBOij0OgDYFqZUhA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,321 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,321 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,321 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,321 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,321 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,322 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,323 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,323 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,323 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:10,323 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:10,323 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,323 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,323 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
2e31aa30c7d241c872e5d39050e9923400d336320ff291e8200b719910cb1b84
2022-05-12 22:40:10,323 botocore.auth DEBUG    Signature:
e5c4bce76a2a5465b157402cd09459062fcbb4d165f4b275682ddccdb2d9ec43
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,323 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,323 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,408 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:10,408 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+cX+o4DKS16uYRMJgkxoPRZC3NRriIW+9gABtOwk4Z4AjCyMJzjbGcEOfyyjiLgsJSPIWupiCxE=', 'x-amz-request-id': 'ZX10A1RC7Q545ZSG', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,408 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,409 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,409 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,409 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,409 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX10A1RC7Q545ZSG', 'HostId': '+cX+o4DKS16uYRMJgkxoPRZC3NRriIW+9gABtOwk4Z4AjCyMJzjbGcEOfyyjiLgsJSPIWupiCxE=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '+cX+o4DKS16uYRMJgkxoPRZC3NRriIW+9gABtOwk4Z4AjCyMJzjbGcEOfyyjiLgsJSPIWupiCxE=', 'x-amz-request-id': 'ZX10A1RC7Q545ZSG', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,409 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,409 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,409 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless'}
2022-05-12 22:40:10,409 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,409 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,409 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,409 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,409 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,410 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,410 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,410 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:10,410 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,410 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,410 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,410 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,410 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,410 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,410 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,410 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,410 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:10,410 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:10,410 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,410 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,410 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
14abe1bc8418a26beccbcf23a522ee0cbe7cdcee82b809baa56f269014f81c3b
2022-05-12 22:40:10,410 botocore.auth DEBUG    Signature:
89d0bae6c7e0dbfbc13b1e14468b74a95fea017592ef324e20d50880afb5f52a
2022-05-12 22:40:10,410 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,410 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,410 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,491 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,491 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1F1N5MY6W171MV', 'x-amz-id-2': 'jVW9awiie9xJ5bffghpYvzNyBLiug2yS9gOmAvWqf25p01jezgUB/OMnwWwfDEvO/XvCTE8XtxQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,491 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,491 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,491 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,491 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,492 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,492 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,493 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless/'}
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:10,493 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:10,494 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,494 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,494 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
5443a0449ee87212c3173714e3c4e275f6591b2945063a115686445783ad8f26
2022-05-12 22:40:10,494 botocore.auth DEBUG    Signature:
63de6402aec401e85084842217cd297597d47218c254ea524b495a264ba73333
2022-05-12 22:40:10,494 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,494 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,494 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,578 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,579 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1E7GP5926GWD8V', 'x-amz-id-2': 'blQCCIWyKa2lduLpY4se2R4/1Jxs/6OPoRlgCUhU/99eRLuDFcnrYF65A6lVoUTpiOKvbI30QAo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,579 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,579 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,580 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,580 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,580 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,582 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,583 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1'}
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,584 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,584 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,585 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:10,585 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1
2022-05-12 22:40:10,585 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,585 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,585 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
bf0b48b5004ad36f08c4240eda8203cfe46918aef3eeae0d42df04e7490194c0
2022-05-12 22:40:10,585 botocore.auth DEBUG    Signature:
511662ff1ff29a2fc720b821b90d7fc848745e477b397895e757fe66381c724c
2022-05-12 22:40:10,586 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,586 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,586 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,668 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1 HTTP/1.1" 404 0
2022-05-12 22:40:10,669 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1E0FGS8R02PS9N', 'x-amz-id-2': 'SGn5VeY2n82QxjxvaSA3UrpWquXPl21DZBaLbbDiKMJ1PSg5UVYlwMkR1BxVjHkDJtgtJRFd2NQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,669 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,669 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,669 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,669 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,670 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,672 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,672 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:10,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,673 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,673 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,674 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:10,674 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:10,674 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,674 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,674 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
2e31aa30c7d241c872e5d39050e9923400d336320ff291e8200b719910cb1b84
2022-05-12 22:40:10,675 botocore.auth DEBUG    Signature:
e5c4bce76a2a5465b157402cd09459062fcbb4d165f4b275682ddccdb2d9ec43
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,675 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,675 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,758 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:10,759 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'rDhU7yjKtpMvF1fAnbgGc3RuVzPKf0pmkLdc0QIq/wVrM0KAYnpg5Ddf4GeTviVLnKpXrPueDJY=', 'x-amz-request-id': 'ZX13HWHMZ169PS8F', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,759 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,761 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,761 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,761 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,761 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX13HWHMZ169PS8F', 'HostId': 'rDhU7yjKtpMvF1fAnbgGc3RuVzPKf0pmkLdc0QIq/wVrM0KAYnpg5Ddf4GeTviVLnKpXrPueDJY=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'rDhU7yjKtpMvF1fAnbgGc3RuVzPKf0pmkLdc0QIq/wVrM0KAYnpg5Ddf4GeTviVLnKpXrPueDJY=', 'x-amz-request-id': 'ZX13HWHMZ169PS8F', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,762 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,763 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1'}
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:10,763 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1
2022-05-12 22:40:10,763 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,763 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,763 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
bf0b48b5004ad36f08c4240eda8203cfe46918aef3eeae0d42df04e7490194c0
2022-05-12 22:40:10,764 botocore.auth DEBUG    Signature:
511662ff1ff29a2fc720b821b90d7fc848745e477b397895e757fe66381c724c
2022-05-12 22:40:10,764 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,764 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,764 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,849 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1 HTTP/1.1" 404 0
2022-05-12 22:40:10,850 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1510KCVVC5XPK1', 'x-amz-id-2': '1GtlVF8PsRJYphHxOfk0V6VcOkuKmCEpTUgGQCvR+9I0TZvtqJESmCN0wdPucOFwj6oIQE0ynv0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,850 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,850 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,850 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,851 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,851 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,854 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,855 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,855 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,855 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,855 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,855 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,855 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,856 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,857 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,857 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:10,857 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:10,857 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,858 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,858 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
2e31aa30c7d241c872e5d39050e9923400d336320ff291e8200b719910cb1b84
2022-05-12 22:40:10,858 botocore.auth DEBUG    Signature:
e5c4bce76a2a5465b157402cd09459062fcbb4d165f4b275682ddccdb2d9ec43
2022-05-12 22:40:10,858 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,858 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,859 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,940 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:10,941 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '/nP3ZATUU6byD9f8RKDcSlr/jdMMNHDPGNtHROT4QMFgHnXTAuHkix2ihfcx6yFV8dLQMOq/mIk=', 'x-amz-request-id': 'ZX19DPXXAWQW2YWQ', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,941 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,942 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,943 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,943 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,943 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX19DPXXAWQW2YWQ', 'HostId': '/nP3ZATUU6byD9f8RKDcSlr/jdMMNHDPGNtHROT4QMFgHnXTAuHkix2ihfcx6yFV8dLQMOq/mIk=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '/nP3ZATUU6byD9f8RKDcSlr/jdMMNHDPGNtHROT4QMFgHnXTAuHkix2ihfcx6yFV8dLQMOq/mIk=', 'x-amz-request-id': 'ZX19DPXXAWQW2YWQ', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,943 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,946 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless'}
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:10,947 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:10,947 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,947 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,947 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
14abe1bc8418a26beccbcf23a522ee0cbe7cdcee82b809baa56f269014f81c3b
2022-05-12 22:40:10,947 botocore.auth DEBUG    Signature:
89d0bae6c7e0dbfbc13b1e14468b74a95fea017592ef324e20d50880afb5f52a
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,948 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,032 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,032 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1E8PBGAD7B08DN', 'x-amz-id-2': 'ICU4/GbWcuCASHrwHFye8kfa6r9rzkalscud3ZdZsCcyT8usaufEhGKdk7XuCcQCRYWKcps+F8k=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,033 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,033 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,033 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,033 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,033 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,037 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless/'}
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,038 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,038 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,039 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,039 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,039 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:11,039 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:11,039 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,039 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,039 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
5506b3bdd9314b43767a6577e7e42ce06030dd9de71c88eb1f04a538fcfcf37b
2022-05-12 22:40:11,039 botocore.auth DEBUG    Signature:
fca856c1b72fe743c9fc24ecaf973fbfa05ca657fc40f74d78569d80fa04c5c4
2022-05-12 22:40:11,039 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,039 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,040 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,118 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,119 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX8SAZA0N8Z3T7T', 'x-amz-id-2': 'vAxQHCo5uoKMy5lHMzZqUH5v2B8TA6JepAozZPb6hMzKu1264/3UzoUJlLhfs0BB8Q8XVbhtLFY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,119 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,119 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,119 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,119 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,119 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,121 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,121 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:11,121 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,121 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,121 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,121 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,121 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:11,122 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,122 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:11,122 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:11,122 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:11,122 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,122 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_1/vector_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224011Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:11,122 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
b9d65b5d4956af41eae44f9f97be317bc5d4fe48020c2bf3b1de512eda53b0e4
2022-05-12 22:40:11,123 botocore.auth DEBUG    Signature:
0dbc5a150b8d2e0ef6e704286312d8cd5f4e311f1cb0c35219cff14d3bfb9e16
2022-05-12 22:40:11,123 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:11,123 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,123 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,215 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,215 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'e2GysEL4fWsctJts7sgmLQ7WOF62bu21x5rDx4uc6hvkBfLiYJGE8RcasXqVGdaLVt1Xnkbu6g0=', 'x-amz-request-id': 'HZX2J7E387PENYFJ', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,215 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,216 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:11,216 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,216 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:11,216 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX2J7E387PENYFJ', 'HostId': 'e2GysEL4fWsctJts7sgmLQ7WOF62bu21x5rDx4uc6hvkBfLiYJGE8RcasXqVGdaLVt1Xnkbu6g0=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'e2GysEL4fWsctJts7sgmLQ7WOF62bu21x5rDx4uc6hvkBfLiYJGE8RcasXqVGdaLVt1Xnkbu6g0=', 'x-amz-request-id': 'HZX2J7E387PENYFJ', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:11,216 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,217 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,217 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,217 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:11,218 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:11,218 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,218 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,218 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
54c08911f19274c452e001e4d5847508ee0ce0b1a33d00dcc1625c9bb427283f
2022-05-12 22:40:11,218 botocore.auth DEBUG    Signature:
b962468eb0e38650f07f267eabbd02e89ab8a79c068261ff32266945e2c3bb72
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,218 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,299 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:11,300 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'EO9jKSAEsk7svU63g4RBZ3Wi+bqou0Zw8Vup5z3FhlG8O0IcAAeoHNgPiRyCWOKe+JIyJkj8sPw=', 'x-amz-request-id': 'HZX1V2WN6WSWE551', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,300 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,301 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,301 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,301 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,301 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX1V2WN6WSWE551', 'HostId': 'EO9jKSAEsk7svU63g4RBZ3Wi+bqou0Zw8Vup5z3FhlG8O0IcAAeoHNgPiRyCWOKe+JIyJkj8sPw=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'EO9jKSAEsk7svU63g4RBZ3Wi+bqou0Zw8Vup5z3FhlG8O0IcAAeoHNgPiRyCWOKe+JIyJkj8sPw=', 'x-amz-request-id': 'HZX1V2WN6WSWE551', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,301 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,303 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,303 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless'}
2022-05-12 22:40:11,303 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,304 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,304 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,304 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,304 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,304 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,304 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,304 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:11,304 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,305 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,305 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,305 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,305 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,305 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,305 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,305 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,305 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:11,306 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:11,306 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,306 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,306 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
c8c17ee17aed9ea0e924ba4c4d6e9cc40688441d7f36161bbd3a4e6b4edfd959
2022-05-12 22:40:11,306 botocore.auth DEBUG    Signature:
1a0d7a3487a3fcb9d9c796e7427c4c5c3907b52b6cac3fba7035b16f055a63c5
2022-05-12 22:40:11,307 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,307 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,307 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,388 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,388 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX99HZ060F526WF', 'x-amz-id-2': 'Xh9caaQ3/5Sr32i53UCsMgkuO7r5YICL6/myLluxZ7j7jy4vgpUShDJ0ef0JwfheQn13xlX8d38=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,389 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,389 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,389 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,389 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,389 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,391 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,391 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless/'}
2022-05-12 22:40:11,391 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,391 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,391 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,392 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,392 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,392 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,392 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,392 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:11,392 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,392 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,392 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,393 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,393 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,393 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,393 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,393 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,393 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:11,393 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:11,394 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,394 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,394 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
5506b3bdd9314b43767a6577e7e42ce06030dd9de71c88eb1f04a538fcfcf37b
2022-05-12 22:40:11,394 botocore.auth DEBUG    Signature:
fca856c1b72fe743c9fc24ecaf973fbfa05ca657fc40f74d78569d80fa04c5c4
2022-05-12 22:40:11,394 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,394 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,395 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,478 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,478 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SKnmFb8lGArJQCOqFkr5AsgzCu81Lk0vcY8844n2r5OElVzyHuzoOqyF9bZ7zcVexgoNrfz+Jrw=', 'x-amz-request-id': 'HZXAKC5Y58PRBG5Y', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,478 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,479 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,479 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,479 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,479 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZXAKC5Y58PRBG5Y', 'HostId': 'SKnmFb8lGArJQCOqFkr5AsgzCu81Lk0vcY8844n2r5OElVzyHuzoOqyF9bZ7zcVexgoNrfz+Jrw=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'SKnmFb8lGArJQCOqFkr5AsgzCu81Lk0vcY8844n2r5OElVzyHuzoOqyF9bZ7zcVexgoNrfz+Jrw=', 'x-amz-request-id': 'HZXAKC5Y58PRBG5Y', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,480 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,481 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,482 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless'}
2022-05-12 22:40:11,482 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,482 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,482 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,482 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,482 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,482 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,483 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,483 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:11,483 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,483 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,483 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,483 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,483 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,483 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,483 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,483 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,483 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:11,484 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:11,484 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,484 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,484 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
c19ec8a26989a2f589027275bbc7bcfda4d267e13ace80cef94e8ddf8979aa53
2022-05-12 22:40:11,484 botocore.auth DEBUG    Signature:
d121b2ac38f9418efe923f6440aad16489288be7718daa98edd9e29a49f32d4b
2022-05-12 22:40:11,484 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,485 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,485 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,568 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,568 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX70S4FZXGQKN3X', 'x-amz-id-2': 'Z0MqA0anCIXIomo7jyHhbNkBGoc6me55JiNY9hxLxNuIp/o4lBoOrQ6HuTdDfW2A+B2r379GlE8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,568 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,568 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,569 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,569 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,569 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,570 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,570 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless/'}
2022-05-12 22:40:11,570 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,571 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,571 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,572 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:11,572 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:11,572 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,572 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,573 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
95597b6ddbd68a111ae0bd1ff35162a2ff8a8070b8a7eb0696e81fbbf03ad9c5
2022-05-12 22:40:11,573 botocore.auth DEBUG    Signature:
53792f5cefcdcb50f115101f2b1afe87c4289a6320907c2ace3a1d7ea84ae619
2022-05-12 22:40:11,573 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,573 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,573 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,680 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,680 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX8K26JR8ZPSG8F', 'x-amz-id-2': 'Adym1PoouUpSd2SxW1SrMUBjsWWMsmgDAM/SkF6PTNrU3OD5SDIpaJItlqfwcwYpLYk4FRLcIa4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,680 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,680 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,680 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,681 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,681 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,682 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,683 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:11,683 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,683 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,683 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,683 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,683 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,683 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,683 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,683 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:11,683 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,684 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,684 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,684 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,684 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,684 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,684 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,684 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,684 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:11,684 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:11,685 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,685 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,685 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
54c08911f19274c452e001e4d5847508ee0ce0b1a33d00dcc1625c9bb427283f
2022-05-12 22:40:11,685 botocore.auth DEBUG    Signature:
b962468eb0e38650f07f267eabbd02e89ab8a79c068261ff32266945e2c3bb72
2022-05-12 22:40:11,685 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,685 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,686 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,770 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:11,770 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7Han6odBqBklzO0dxqDNEGEMXWreDHUxzxOUOoMgeKturuDs24VlUME3vTZVaczN2h9PB51581Q=', 'x-amz-request-id': 'HZXEM1BX8Y77GN69', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,771 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,771 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,772 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,772 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,772 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZXEM1BX8Y77GN69', 'HostId': '7Han6odBqBklzO0dxqDNEGEMXWreDHUxzxOUOoMgeKturuDs24VlUME3vTZVaczN2h9PB51581Q=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '7Han6odBqBklzO0dxqDNEGEMXWreDHUxzxOUOoMgeKturuDs24VlUME3vTZVaczN2h9PB51581Q=', 'x-amz-request-id': 'HZXEM1BX8Y77GN69', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,772 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,773 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,774 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless'}
2022-05-12 22:40:11,774 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,774 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,774 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,774 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,774 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,774 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,774 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,775 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:11,775 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,775 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,775 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,775 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,775 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,775 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,775 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,775 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,775 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:11,775 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:11,776 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,776 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,776 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
c19ec8a26989a2f589027275bbc7bcfda4d267e13ace80cef94e8ddf8979aa53
2022-05-12 22:40:11,776 botocore.auth DEBUG    Signature:
d121b2ac38f9418efe923f6440aad16489288be7718daa98edd9e29a49f32d4b
2022-05-12 22:40:11,776 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,776 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,777 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,857 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,858 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX84CSG4VRYVKAV', 'x-amz-id-2': 'i2agAkYEbJmgRDkO/c0Fc37mdVXv4rZecnmg1sOdUFxMZBMZa4Jh5v7WakcBsCMJ09ZqKzolHeI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,858 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,858 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,858 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,859 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless/'}
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,859 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,859 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:11,860 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:11,860 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,860 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,860 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
95597b6ddbd68a111ae0bd1ff35162a2ff8a8070b8a7eb0696e81fbbf03ad9c5
2022-05-12 22:40:11,860 botocore.auth DEBUG    Signature:
53792f5cefcdcb50f115101f2b1afe87c4289a6320907c2ace3a1d7ea84ae619
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,860 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,860 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,940 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,940 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX5AZEJCXH0ZTJM', 'x-amz-id-2': 'eUpN5Ixilhv4dlIqd0uDPLyun8YYAvztN7fcq1+d0x9lFyHtAWgAbuvNNBkZL2q7DiSPVYXd4pY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,940 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,941 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,941 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,941 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,941 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,942 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,943 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1'}
2022-05-12 22:40:11,943 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,943 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,943 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,943 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,943 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,943 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,943 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,943 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:11,943 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,943 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,944 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,944 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,944 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,944 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,944 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,944 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,944 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:11,944 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1
2022-05-12 22:40:11,945 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,945 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,945 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
6cea6f563eb8820f38b18666a10ab9034afc57da9ae3f35d141810210dd422a9
2022-05-12 22:40:11,945 botocore.auth DEBUG    Signature:
2d7a9cbcb4e79d8ce9acb88d577e4d6c7c09f53f634c04c8ff25e20da25e64d6
2022-05-12 22:40:11,945 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,945 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,945 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,026 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1 HTTP/1.1" 404 0
2022-05-12 22:40:12,027 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX28XJFK1BCFPXY', 'x-amz-id-2': 'AX7inAHTLn3UAYZqehauASy+kpjxFoZYUOIClSwDU+7BWQlpanDPXckf0GCUoVdtIUmG31qwkZ8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,027 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,027 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,027 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,027 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,028 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,029 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,030 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,030 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,030 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,031 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,031 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:12,031 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:12,031 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,031 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,031 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
3a4992f6b63d07dace4e0d05a44f3a9fd6257bfb5312b50be952f42bd5e0c079
2022-05-12 22:40:12,031 botocore.auth DEBUG    Signature:
9837e898680c83dfa01f3b958151cc2a3931417e86284605f6032c4481472fcd
2022-05-12 22:40:12,031 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,032 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,032 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,112 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:12,112 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UKdP7sZxVN+vg4bBcbDfDK3K/4IAC9u1s+65e+VwEG9ANGZWUjxBL5tQFryWEKaWr7v5Eg1HdgE=', 'x-amz-request-id': 'ZJFFK0V0TWJE8P0F', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,112 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,113 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,114 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,114 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,114 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJFFK0V0TWJE8P0F', 'HostId': 'UKdP7sZxVN+vg4bBcbDfDK3K/4IAC9u1s+65e+VwEG9ANGZWUjxBL5tQFryWEKaWr7v5Eg1HdgE=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'UKdP7sZxVN+vg4bBcbDfDK3K/4IAC9u1s+65e+VwEG9ANGZWUjxBL5tQFryWEKaWr7v5Eg1HdgE=', 'x-amz-request-id': 'ZJFFK0V0TWJE8P0F', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,114 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,117 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1'}
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,118 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,118 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,118 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:12,118 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,118 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,118 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,118 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,119 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,119 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,119 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,119 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,119 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1
2022-05-12 22:40:12,119 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1
2022-05-12 22:40:12,119 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,119 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,119 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
8b82e4f467f58ca3e30e26669be103c7da7a9c034365e575d20209f1ca99c670
2022-05-12 22:40:12,120 botocore.auth DEBUG    Signature:
d8122332d9868cc9e709731a71cda6e0092cb669902a2a07833ffb6865fa7070
2022-05-12 22:40:12,120 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,120 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,120 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,202 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1 HTTP/1.1" 404 0
2022-05-12 22:40:12,203 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJFA9MY40GKX7VBR', 'x-amz-id-2': 'MWA0Fm7HYJm7HwwANb+DVO8eqtSVXEhB8jVh99vi6+VF0Zc/CP+jv41BANUgoB0BNa+z+fy9Og0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,203 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,203 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,203 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,203 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,204 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,206 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,207 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,207 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,207 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,207 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:12,207 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,207 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,207 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,207 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,208 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,208 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,208 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,208 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,208 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:12,208 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:12,208 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,209 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,209 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
3a4992f6b63d07dace4e0d05a44f3a9fd6257bfb5312b50be952f42bd5e0c079
2022-05-12 22:40:12,209 botocore.auth DEBUG    Signature:
9837e898680c83dfa01f3b958151cc2a3931417e86284605f6032c4481472fcd
2022-05-12 22:40:12,209 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,209 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,210 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,293 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:12,293 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'vor7jfatgHD4WPpHW7glSVyDkYcU+s2zqDfoKcZowLBHQHlkIsjv5sVKTN07OjQ5JBFsc8iXILQ=', 'x-amz-request-id': 'ZJFASNT4Y7AZCH0V', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,293 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,294 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,294 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJFASNT4Y7AZCH0V', 'HostId': 'vor7jfatgHD4WPpHW7glSVyDkYcU+s2zqDfoKcZowLBHQHlkIsjv5sVKTN07OjQ5JBFsc8iXILQ=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'vor7jfatgHD4WPpHW7glSVyDkYcU+s2zqDfoKcZowLBHQHlkIsjv5sVKTN07OjQ5JBFsc8iXILQ=', 'x-amz-request-id': 'ZJFASNT4Y7AZCH0V', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,295 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,297 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,297 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless'}
2022-05-12 22:40:12,297 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,297 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,297 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,297 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,297 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,298 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,298 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,298 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:12,298 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,298 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,298 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,298 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,298 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,298 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,298 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,298 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,298 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:12,298 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:12,299 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,299 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,299 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
ef8d691e2e032399c022b065a8108c60ea43ff2cbbb0fe8aaa370148c3034808
2022-05-12 22:40:12,299 botocore.auth DEBUG    Signature:
0ecbc8321ad7ffe301841c8861e787a9305896f596f55621295fb0b9e1c9ded4
2022-05-12 22:40:12,299 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,299 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,299 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,380 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:12,380 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJFDT3319SXB10EV', 'x-amz-id-2': '9QQ9osQQPc1twQ0EWtdWaxw29bPczRy2tOo+7zI+wjczWaqLrOMMDhpYE2e2fFjlzkoaXKiTiF4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,380 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,381 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,381 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,381 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,381 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,383 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless/'}
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,384 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,384 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,384 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,384 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,384 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:12,384 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,384 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,384 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,384 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,384 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,384 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,385 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,385 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,385 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:12,385 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:12,385 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,385 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,385 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
186ea7ff44fc67b4b9c886291127cd14e71365ae4dcc000ad5bf8b33a70cdf58
2022-05-12 22:40:12,385 botocore.auth DEBUG    Signature:
3e04552dd50441628d5cbb9adcdc73a0f211d4763d629c513008dd4a32c0981c
2022-05-12 22:40:12,385 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,386 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,386 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,481 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:12,481 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJFC0JPYYJ31CB65', 'x-amz-id-2': 'MCqKL+pgjfdohr552qqMizI/qCYKbcqydvDRgZgpQa9AlNjcdbAsPLI68Yzv/2/J+dlaf0fNcX4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,481 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,482 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,482 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,482 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,482 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,484 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,485 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:12,485 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,485 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,485 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,485 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,485 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:12,485 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:12,485 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:12,486 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,486 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:12,486 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:12,486 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:12,486 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:12,487 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,487 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_1/data_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224012Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:12,487 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
bcd1dcdaeb4d3bc8e9cffce8f52e1d09498a3c1cbf57ef1a13b4de72e1026618
2022-05-12 22:40:12,487 botocore.auth DEBUG    Signature:
ba44056dbca7309aa79abbcec76fb1d4168f0c77928e537655b04f741a1aa875
2022-05-12 22:40:12,487 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:12,487 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,488 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,579 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:12,579 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '6LUxljlFBHoKu5rODhgjJGAQ+Dt2b/nZ+OX1+TLyadsV+AMLTYAaRKOrosh7gUBfolp/pUxWHLo=', 'x-amz-request-id': 'ZJF999SGZ1F0V49E', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,579 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,579 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:12,579 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,579 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:12,579 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF999SGZ1F0V49E', 'HostId': '6LUxljlFBHoKu5rODhgjJGAQ+Dt2b/nZ+OX1+TLyadsV+AMLTYAaRKOrosh7gUBfolp/pUxWHLo=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '6LUxljlFBHoKu5rODhgjJGAQ+Dt2b/nZ+OX1+TLyadsV+AMLTYAaRKOrosh7gUBfolp/pUxWHLo=', 'x-amz-request-id': 'ZJF999SGZ1F0V49E', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:12,579 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,580 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,580 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/'}
2022-05-12 22:40:12,580 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,580 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,580 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,580 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,580 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,580 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,580 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,581 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:12,581 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,581 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,581 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,581 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,581 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,581 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,581 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,581 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,581 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/
2022-05-12 22:40:12,581 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/
2022-05-12 22:40:12,582 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,582 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,582 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
3a4992f6b63d07dace4e0d05a44f3a9fd6257bfb5312b50be952f42bd5e0c079
2022-05-12 22:40:12,582 botocore.auth DEBUG    Signature:
9837e898680c83dfa01f3b958151cc2a3931417e86284605f6032c4481472fcd
2022-05-12 22:40:12,582 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,582 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,582 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,665 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/ HTTP/1.1" 200 0
2022-05-12 22:40:12,665 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ifXySRu1DnuC1MP4MoVl6ZbQmOgxTMiTJ+lkzC3x7jRTrN/FNKIsJKLjP1NvXbqRQY6YSfsARbA=', 'x-amz-request-id': 'ZJF1DYX8GEVZCR0V', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:14 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,665 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,666 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,666 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,666 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,666 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF1DYX8GEVZCR0V', 'HostId': 'ifXySRu1DnuC1MP4MoVl6ZbQmOgxTMiTJ+lkzC3x7jRTrN/FNKIsJKLjP1NvXbqRQY6YSfsARbA=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'ifXySRu1DnuC1MP4MoVl6ZbQmOgxTMiTJ+lkzC3x7jRTrN/FNKIsJKLjP1NvXbqRQY6YSfsARbA=', 'x-amz-request-id': 'ZJF1DYX8GEVZCR0V', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:14 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 14, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,666 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,667 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,667 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless'}
2022-05-12 22:40:12,667 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,668 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,668 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,668 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,669 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:12,669 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:12,669 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,669 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,669 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
ef8d691e2e032399c022b065a8108c60ea43ff2cbbb0fe8aaa370148c3034808
2022-05-12 22:40:12,669 botocore.auth DEBUG    Signature:
0ecbc8321ad7ffe301841c8861e787a9305896f596f55621295fb0b9e1c9ded4
2022-05-12 22:40:12,669 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,669 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,669 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,751 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:12,751 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJFCPG808JT95493', 'x-amz-id-2': 'l2qv2NZicocuirKpnwHeHD7fNxko5a4nXIJEzJtooKUSzW+ULzTTonIggQmUo6is7/NQxkABkR8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,752 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,752 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,752 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,752 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,752 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,754 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,754 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless/'}
2022-05-12 22:40:12,754 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,754 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,754 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,754 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,754 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,755 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,755 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,755 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:12,755 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,755 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,755 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,755 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,755 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,755 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,755 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,755 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,755 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:12,756 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:12,756 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,756 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,756 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
186ea7ff44fc67b4b9c886291127cd14e71365ae4dcc000ad5bf8b33a70cdf58
2022-05-12 22:40:12,756 botocore.auth DEBUG    Signature:
3e04552dd50441628d5cbb9adcdc73a0f211d4763d629c513008dd4a32c0981c
2022-05-12 22:40:12,756 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,756 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,757 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,841 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:12,842 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'cM3+zvUW4n041XThQZ07nVeBe24fta40vVI+8tpL1AbxHBgFLEb447vAKN/Y1oZV6mO7nynDZvY=', 'x-amz-request-id': 'ZJF55PVMMRQW45HE', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,842 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,843 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,843 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,843 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,843 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF55PVMMRQW45HE', 'HostId': 'cM3+zvUW4n041XThQZ07nVeBe24fta40vVI+8tpL1AbxHBgFLEb447vAKN/Y1oZV6mO7nynDZvY=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'cM3+zvUW4n041XThQZ07nVeBe24fta40vVI+8tpL1AbxHBgFLEb447vAKN/Y1oZV6mO7nynDZvY=', 'x-amz-request-id': 'ZJF55PVMMRQW45HE', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,845 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,847 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,847 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,848 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,848 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,851 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,851 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,853 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,854 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,856 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,857 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,857 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,857 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,857 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,858 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,859 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,860 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,860 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,861 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,862 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,864 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,864 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,865 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,865 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,866 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,866 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,867 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,867 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,868 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,870 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,869 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless'}
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,871 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless'}
2022-05-12 22:40:12,868 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,869 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless'}
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,873 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless'}
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,874 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:12,877 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,877 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:12,877 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,878 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,879 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
a4e4bc65bd58a49cd381b1630b707a5889ba6e65de468388780f421f778e4717
2022-05-12 22:40:12,879 botocore.auth DEBUG    Signature:
d70ddd68ddc43b67c21ebcd21c59fbc3f14013168fd47c2f450bcdf31eca83c9
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,880 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:12,880 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,880 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,880 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:12,880 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:12,880 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,880 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,881 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,881 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:12,881 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:12,881 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,881 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,881 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:12,881 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
a238cf88a78bf43e689fb304ce68727fddefd9eae590df5db350e1c06961ecbc
2022-05-12 22:40:12,881 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,881 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,881 botocore.auth DEBUG    Signature:
d738fcd03e31bd49311d86e3d41f1e649d05d99a3fe4d11f4b9930a8aa6f661d
2022-05-12 22:40:12,881 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
29ee8404837e790fa2da3ceb250b47022dad536e34ddb68d81a3309607cacd3b
2022-05-12 22:40:12,881 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,881 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,881 botocore.auth DEBUG    Signature:
28831f328a08d651ad2c45c470ac2bc6f441b807c3fec6113d6ed9a72c54db37
2022-05-12 22:40:12,882 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
a238cf88a78bf43e689fb304ce68727fddefd9eae590df5db350e1c06961ecbc
2022-05-12 22:40:12,882 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,882 botocore.auth DEBUG    Signature:
d738fcd03e31bd49311d86e3d41f1e649d05d99a3fe4d11f4b9930a8aa6f661d
2022-05-12 22:40:12,882 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,882 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,882 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,882 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,883 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,883 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,883 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,883 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:23,662 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,663 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCG4T5D1HRXV726', 'x-amz-id-2': 'j2veEZesbi/QyULPYIcYMpI9P2pkAUWvsKtAx+kmX0mEUtagOn+YQIkz7Wy6/aXs52dgAxUxhLo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,663 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,666 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,667 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,667 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,667 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,667 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,667 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,667 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,668 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,668 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,668 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,668 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,668 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,668 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,669 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,669 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,669 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,669 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,669 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,669 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,670 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,670 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,670 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,670 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,670 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,670 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,671 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,671 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,678 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,679 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCP0PDQN6WBD2HD', 'x-amz-id-2': 'tln2LpZZw4ytfGothpVvNxOhWUhVYsizfQ8aufBE0nq7jrqj3XE+0cifpHWUHdCAn+S1Kfx5aEA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,679 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,682 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,683 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,683 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,683 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,683 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,683 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,683 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,683 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,683 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,683 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,683 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,683 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,683 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,684 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,684 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,684 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,684 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,684 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,684 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,684 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,684 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,695 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,696 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCMBV6TWC5F5EC5', 'x-amz-id-2': 'KrXb2N5b1Ox+etBDw2q8rfg3kFWWSLe4ZHSPsYzShUzI/qetn/F1UtBAmxnRS+Si8G9ssckmByI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,696 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,697 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,697 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,697 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,698 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,699 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,699 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,699 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,699 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,699 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,699 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,699 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,699 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,718 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,718 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCHY770N5VYE6JS', 'x-amz-id-2': 'xDQF/GnS0sP4mrBkSlQVC388hE0c0pGCKfz7MkOt334mDLCjAbFCQ+jpOiftvapbWBEO6fD6QhU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,719 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,721 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,721 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,721 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,721 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,722 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,722 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,722 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,722 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,722 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,722 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,722 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,722 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,723 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,723 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:24,695 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,696 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAGA7WTQCYR68QDH', 'x-amz-id-2': 'kgqO2z8eDiGL2z366Ut/UoPdFIcBo1CjrIuhYYP4+CIgT5KphK2pzt+BwJu0WA6Jc2vGO2p72Kg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,696 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,697 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,697 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,697 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,697 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,697 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,697 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,697 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,697 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,697 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,697 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,697 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,697 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,697 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,697 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,697 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,698 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,698 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,698 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,698 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,698 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,698 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,698 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,698 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAGD3FFV0XWP0Y81', 'x-amz-id-2': 'eZ2xK4WrQxlTp5aBmjHrKC1hkY5qVVnc+tQqQXBSbDsOLZLGkqODDn6p75hn4aNhmbCGryPQTJ0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,698 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,699 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,699 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,699 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,699 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,699 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,699 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,699 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,699 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,699 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,699 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,699 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,699 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,699 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,699 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,699 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,699 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,699 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,699 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,699 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,699 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,699 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,712 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,712 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAG612FC0DXB28JP', 'x-amz-id-2': '7ues43eBZF9rRfJdjG8pd4R3vHY2neStgdXT4XesOwJuRJTNlhi6Ibfl0gKRr4D0h4RsIcjUEfA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,713 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,713 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,713 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,713 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,713 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,713 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAG7WA4Z0TN10KJR', 'x-amz-id-2': 'rA34tDJhF74eMDAmJYIEoPYSGaG7h2HmU/Dj/eoBgeswNhjIshm48rFrmWo2cFDMnKMitnm7Wxw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,713 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,713 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,714 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,714 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,714 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,714 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,715 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,715 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,715 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,715 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,715 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,715 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,715 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,715 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,715 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,716 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,716 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,716 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,716 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,716 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,716 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,716 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,716 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,716 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:30,024 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,024 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Bb/azVfz4BAma7Mifylos2HS1FDtBdGhK/vLwMTwu/otPcDB+4by8uVsSPUfZaIVJarReUex11Q=', 'x-amz-request-id': 'BAY5PDGTR7N68G1G', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,025 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,025 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,025 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,025 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,025 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,026 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,026 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:30,026 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,026 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,026 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,026 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,026 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,026 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,026 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:30,027 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:30,027 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,027 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,027 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
6bded11d2718e843ec70d2b430f09c36050dbf159fb1571efb976604bd191b08
2022-05-12 22:40:30,027 botocore.auth DEBUG    Signature:
14fb37a63155053531456d0eb389bf0135bcaf8caaa72e85a669b30af1a1709e
2022-05-12 22:40:30,027 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,027 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,028 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,029 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,029 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'XkLt/2IJDKMmgHETH4DIeuN+JzdzI0QYaTozPQ/pFclxHlf1FcpsK4fTKyaHX1/ZdJaTufPw0ls=', 'x-amz-request-id': 'BAY0QDSMVZDDK9ET', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,029 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,029 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,029 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,029 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,029 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,029 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,030 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:30,030 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,030 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,030 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,030 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,030 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,030 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,030 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:30,030 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless
2022-05-12 22:40:30,030 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,030 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,030 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,030 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'FLhhH5rdFpe7W1KGwaCrK0eqwOeAtnEfkHMYIFe7jiJb3WnFvgY9TukTkDJiyZXOlIaNwpiDijA=', 'x-amz-request-id': 'BAYF9BXZJP8R2CDH', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,030 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
645f9fd9296ebbf3e840ee3e0d8de23ead00c684e3df9c261dc85f07b9ccc29c
2022-05-12 22:40:30,030 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,031 botocore.auth DEBUG    Signature:
9544029be8740a717386cb83b867249a6966057b93b344f1e39d3c981f1ff475
2022-05-12 22:40:30,031 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,031 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,031 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,031 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,031 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,031 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,031 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,031 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,031 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:30,031 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,031 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,032 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,032 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,032 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,032 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,032 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:30,032 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless
2022-05-12 22:40:30,032 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,032 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,032 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
23a43add3908d298e1d4faba1a50b5f8429d23722ec33968c044885d92293199
2022-05-12 22:40:30,032 botocore.auth DEBUG    Signature:
bc002bacfdc074e391bec76c6ada7107fcfd8918ca3b81d1bcac020ca7f22fa6
2022-05-12 22:40:30,032 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,032 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,032 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,036 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,036 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HoNmts8dWhgF6nKC3gCALTEOtGwrgw6Bm4CmQgU8TsHnMholHLThIijt5zKzgoeRpI/rfvYP5yo=', 'x-amz-request-id': 'BAYD27VA6W057WZS', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,036 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,036 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,036 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,036 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,036 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:30,036 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,037 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:30,037 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless
2022-05-12 22:40:30,037 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,037 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,037 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
6bded11d2718e843ec70d2b430f09c36050dbf159fb1571efb976604bd191b08
2022-05-12 22:40:30,037 botocore.auth DEBUG    Signature:
14fb37a63155053531456d0eb389bf0135bcaf8caaa72e85a669b30af1a1709e
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,037 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,037 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,107 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,108 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTT3QSZM730NVXF', 'x-amz-id-2': 'eHbn9DoJP+mEh2+U2E7X/ts8FvSRFpsCEWJmlqdrWPVfQQ75Wts2TgjUwrWmyj2pAgv1iEfe7jU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,108 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,108 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,108 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,108 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,108 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,108 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,109 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,109 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless/'}
2022-05-12 22:40:30,109 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,109 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,109 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,109 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,109 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,109 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,109 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,109 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:30,109 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,110 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,110 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:30,110 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:30,110 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,110 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,110 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
1c0301b886ea2619ed3b287cb89de1a76aab591952d9e4f51f3c2bca635f7117
2022-05-12 22:40:30,110 botocore.auth DEBUG    Signature:
cb210208caf65d6dd6188c2b3162bacb74561f9035a2186353c61c1b4e84e7c1
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,111 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,111 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,113 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,113 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTMM3E5B5GJDTVR', 'x-amz-id-2': 'fS9YE4zkzUqwfoU9FJN5u1EsTqiAaJVUww40JBJIsgYWCiT2c3cK4FIblngRsjbjoRAO21psk3U=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,113 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,113 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,113 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,113 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,113 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,113 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,114 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,114 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless/'}
2022-05-12 22:40:30,114 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,114 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,114 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,114 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTGVY4BWSFZ6P7G', 'x-amz-id-2': 'Doobj6l+vtS27ESDESu7ZsNS/xhELsQnVyDMycZdo4oLwOcRsU0Xr02+vsHBL4yTTlFbGdE7vEA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,114 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,114 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,114 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,114 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,114 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,115 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,115 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,115 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,115 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,115 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,115 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:30,115 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,115 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,117 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,117 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,117 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,118 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless/'}
2022-05-12 22:40:30,118 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,118 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTNGFG4ENXXSEX9', 'x-amz-id-2': 'H+7/+lp9FAlbM6fYTOK3Dy3NmUQLaUMZfaa0kFHpCB87FCJ21D+DTZGsKfNFy8Zk5O5jbYHnxKc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,118 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,118 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,118 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,118 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,118 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,118 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,118 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,118 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,118 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,119 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:30,119 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless/
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,120 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:30,120 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,120 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless/'}
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:30,121 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:30,120 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,121 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless/
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,122 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
6287042bab24297dde8650bb8db11a8021c97311ae5ff8889cbf3c2167c52a10
2022-05-12 22:40:30,122 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,122 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,124 botocore.auth DEBUG    Signature:
fa5a007f819ef66c636eba7dbda8952a22571fb90db0d5dcb14de15ac424f49e
2022-05-12 22:40:30,124 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,124 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,124 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
d35b1b8a412cd600308bfdf80eda049c9a3fb5a5954607ef7d4d71591c3681be
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,125 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,125 botocore.auth DEBUG    Signature:
8066c5ff9eeb1da29159e52d45d115f7f56b6edfe5157e3b02248505ffc29d5c
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,126 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,126 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,126 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,127 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,127 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,127 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,127 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,127 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:30,128 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/
2022-05-12 22:40:30,128 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,128 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,128 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
1c0301b886ea2619ed3b287cb89de1a76aab591952d9e4f51f3c2bca635f7117
2022-05-12 22:40:30,128 botocore.auth DEBUG    Signature:
cb210208caf65d6dd6188c2b3162bacb74561f9035a2186353c61c1b4e84e7c1
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,128 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,128 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,192 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,192 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '6XRQCK1MYQb0hnV8Ybb9CAFFclB5hwbRT+o2dfdI/hm6mgowis66DSEdg9wrXhAg5uqrRrr1vBs=', 'x-amz-request-id': 'EXTJTKVQRH49P3BS', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,193 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,194 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,194 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,194 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,194 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTJTKVQRH49P3BS', 'HostId': '6XRQCK1MYQb0hnV8Ybb9CAFFclB5hwbRT+o2dfdI/hm6mgowis66DSEdg9wrXhAg5uqrRrr1vBs=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '6XRQCK1MYQb0hnV8Ybb9CAFFclB5hwbRT+o2dfdI/hm6mgowis66DSEdg9wrXhAg5uqrRrr1vBs=', 'x-amz-request-id': 'EXTJTKVQRH49P3BS', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,194 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,197 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,197 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless/EXTENT.npy'}
2022-05-12 22:40:30,197 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,197 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,197 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,197 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,197 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,198 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,198 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,198 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,198 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,198 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,199 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,199 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
581911e5c523b2e479ee12b9eb6f308d0f5a320489f843f74a42781a17b697ac
2022-05-12 22:40:30,199 botocore.auth DEBUG    Signature:
36c1ff9b490cf573438a145ac3c22f11b540f5b87a491daa979c2f78a6fc9398
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,199 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,207 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,208 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'scxyJtxenEu/riAmG3o6XZS9I3bHSaeVLTuODesdfj61qG0sdFMvSzUTKRQmAPpBWMlW3wphPJE=', 'x-amz-request-id': 'EXTG7PSYRBKQCAMQ', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,208 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,208 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,208 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,208 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,208 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTG7PSYRBKQCAMQ', 'HostId': 'scxyJtxenEu/riAmG3o6XZS9I3bHSaeVLTuODesdfj61qG0sdFMvSzUTKRQmAPpBWMlW3wphPJE=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'scxyJtxenEu/riAmG3o6XZS9I3bHSaeVLTuODesdfj61qG0sdFMvSzUTKRQmAPpBWMlW3wphPJE=', 'x-amz-request-id': 'EXTG7PSYRBKQCAMQ', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,208 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,209 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,209 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl'}
2022-05-12 22:40:30,209 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,209 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,209 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ziQY3lVMerqntIELRu7N64SkDSS++psKmGID1RNf7RcHAwA/pZaGvhdCYEE++tJiHMHGnQogguI=', 'x-amz-request-id': 'EXTRE7Q21BG52N0H', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,209 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,209 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,209 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,210 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'dhZXMAw49vPRvp2qW9RSPGYarTzhYSZWlLQWVGhCcaCnDjXq5wEC3GrrSDbe0CZ5E/vi0eoQUZk=', 'x-amz-request-id': 'EXTSK1F6MKBTBF7H', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,210 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,210 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,210 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,211 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,211 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,211 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,211 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,211 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTRE7Q21BG52N0H', 'HostId': 'ziQY3lVMerqntIELRu7N64SkDSS++psKmGID1RNf7RcHAwA/pZaGvhdCYEE++tJiHMHGnQogguI=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'ziQY3lVMerqntIELRu7N64SkDSS++psKmGID1RNf7RcHAwA/pZaGvhdCYEE++tJiHMHGnQogguI=', 'x-amz-request-id': 'EXTRE7Q21BG52N0H', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,211 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,211 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,211 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,211 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,211 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTSK1F6MKBTBF7H', 'HostId': 'dhZXMAw49vPRvp2qW9RSPGYarTzhYSZWlLQWVGhCcaCnDjXq5wEC3GrrSDbe0CZ5E/vi0eoQUZk=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'dhZXMAw49vPRvp2qW9RSPGYarTzhYSZWlLQWVGhCcaCnDjXq5wEC3GrrSDbe0CZ5E/vi0eoQUZk=', 'x-amz-request-id': 'EXTSK1F6MKBTBF7H', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,212 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,212 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,212 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,212 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless/DISTANCE.npy'}
2022-05-12 22:40:30,212 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,213 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,213 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy'}
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,214 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,214 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,214 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,214 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,214 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,214 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,215 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,215 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
53a759c02bf58590457a611470a7d99733447e0edc251bf46bdbe02652c1424d
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,215 botocore.auth DEBUG    Signature:
583ee1e918397bac18f0e221009d0c4db96c8d48d869c8d12826b0409cbf8d16
2022-05-12 22:40:30,215 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,215 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,215 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,216 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,216 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,216 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,216 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,216 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,216 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,216 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,216 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
1cfd90341556293a64a097d2960f02970f94760b8d502f793aa1404710efbe83
2022-05-12 22:40:30,216 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,217 botocore.auth DEBUG    Signature:
d45d19f0f94b25efbb8cffae5d484de37de6b663d0e3b5027e9dec9ba8e3ae70
2022-05-12 22:40:30,217 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
aae0b6e8140b3a6f1442db990a415d9d8d9e614d6075eeeddb0836a7f5ebb0a8
2022-05-12 22:40:30,217 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,217 botocore.auth DEBUG    Signature:
4f9e30b63a2a9549a477cbe5f59e3ba9d1e2f0d2a26f48b81a7856329e1c2b25
2022-05-12 22:40:30,217 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,217 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,217 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,217 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,217 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,282 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless/EXTENT.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,282 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTZ9CD0GBM5KHX3', 'x-amz-id-2': '/uVQ1Y2U4sUN48uARPUZ5c1RRFucbf2RSYyFDokkoXei477p5q0NmLV3mLP1pVZDPw+vc1dshfs=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,282 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,283 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,283 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,283 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,283 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,285 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,285 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless/EXTENT.npy/'}
2022-05-12 22:40:30,285 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,285 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,286 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,286 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,286 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,286 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,286 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,286 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,287 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,287 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,287 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,287 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,288 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,288 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,288 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
0d8be8691094305ca46dbfba902ec6fd97a4f9f7716cb353aca40cb0f6bc8699
2022-05-12 22:40:30,288 botocore.auth DEBUG    Signature:
f791f437e6070e1fb8934284697431dec425986f2ddd17728a02f07f781f4248
2022-05-12 22:40:30,289 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,289 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,289 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,299 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless/DISTANCE.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,299 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTZ1VQTR17M9SR2', 'x-amz-id-2': 'iyYBn5vN13QXFh5cXvRgbSEP40e9m7K7Gt8FNqVmvIXTs/pZo/5MMn0nBzdokyiwl5w3kDrq6HY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,300 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,300 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 404 0
2022-05-12 22:40:30,300 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,301 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,301 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTM21R9BSHRVXME', 'x-amz-id-2': 'X/O8kdwxOhfqmP5jKyRnhLhMUfNTPUhVn6z8RbVYYokqy7d604wSt3lQ31ZMu6zX2s1D5/QWlKk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,301 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,302 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTQNRAZDBR2KFEV', 'x-amz-id-2': '5YNnA6UFWiY7vmWcErTtMHgS+hlUP0AiMISmLp0X04UTrHlytdWijDgl0vF6MnOcOvrmaUkL3J4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,302 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,303 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,304 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,302 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/data_timeless/DISTANCE.npy/'}
2022-05-12 22:40:30,305 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,304 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,305 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,307 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,307 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy/'}
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,308 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl/'}
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,311 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,311 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,311 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,312 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,312 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,312 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,312 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,312 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
ec97e72f0ba68b540025916c9a5fdf3cf518187c3c091c000de41c9b493559d6
2022-05-12 22:40:30,313 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,313 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,313 botocore.auth DEBUG    Signature:
5813af14004e33bbb9c7eb3f957a48f2023d861ab4d9d29e2f500ed7575c2438
2022-05-12 22:40:30,313 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,313 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,313 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,313 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,313 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,313 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,313 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,313 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,314 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,314 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,314 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,314 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
25cced671fb92de3ca606eff2b8e5d009246909dbef8ecfbf67b228b2cd282da
2022-05-12 22:40:30,314 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,314 botocore.auth DEBUG    Signature:
3955b5a2e368134860f91c765982e04ba7eb8886663b41a7cc33751dc3c55764
2022-05-12 22:40:30,314 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,314 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,315 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,315 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,315 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
1f500aec0ceea568db73065e9d71df8e0a307b4a68f95057a1f2a046cbe872d4
2022-05-12 22:40:30,315 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,315 botocore.auth DEBUG    Signature:
9925ae4a7456e5f4f6434270f904c3f4a860acfec2a5259ee00958cdbced85aa
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,315 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,316 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,371 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless/EXTENT.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,372 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTYSN1TSHJDGGZH', 'x-amz-id-2': 'EDqqBOWs0wjsbTVtAX3BEjEr1mz/uiobXl4v7dwbwHLMF+jQx8FFLYgmGGE+xD26W4YlLHe27GI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,372 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,372 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,372 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,373 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,375 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,377 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,377 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,377 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,379 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,381 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,383 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,383 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,383 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,384 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,384 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,384 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,384 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,385 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,385 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,385 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,386 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,386 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,386 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,386 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,386 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,386 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,386 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,387 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,391 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,391 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,391 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,391 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,391 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,391 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,392 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,392 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,392 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,392 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,392 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,392 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,392 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,392 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,392 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,392 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,392 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,392 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
88b1b00da9ec52ef0c6c58f1b60ebaaacb80108723fb0dc0dd7e9539715afff5
2022-05-12 22:40:30,393 botocore.auth DEBUG    Signature:
9cad9f114da1819017320127a16d4f09c570caf54be6df8a18a435db8268b389
2022-05-12 22:40:30,393 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,393 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,393 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,393 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,393 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,397 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/data_timeless/DISTANCE.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,397 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTYVFZ3YTZ18632', 'x-amz-id-2': '2BXCBpbxrScI0mwxas7SKjR7DoZzjVKWuRt8FFw26vIc/X5fV96xpgwDZ1owbapN18k7fKfUPL0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,397 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,397 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,401 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,401 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl/ HTTP/1.1" 404 0
2022-05-12 22:40:30,402 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTWT0DREEGCFWVK', 'x-amz-id-2': 'mZ2ezI2OzMXQqC+N72pXrnTW0GZ9zNXghLfBgJ7kGP+bSrVAz2W5FmxuzgOE3w5hvjrOC/YE7SI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,402 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,402 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,402 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,402 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,402 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,404 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,401 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTQ8YDHMTFMVTFG', 'x-amz-id-2': '+vNzPbnbhjta4UHco/TY7k0irSMtoFCaAcRV+omrRH+48vhwQhcrL8rcK6NLYBO8zDXtTqpkh+o=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,404 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,404 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,407 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,407 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,404 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,409 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,408 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,409 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,409 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,409 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,409 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,409 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,409 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,411 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,412 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,414 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,414 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,414 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,415 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,416 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,417 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,417 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,417 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,419 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,419 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,420 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,420 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,421 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,421 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,421 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,421 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,421 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,422 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,422 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'B0sS5nt7r9iMdSqG874dtg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,423 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,423 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,423 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,423 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,423 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,423 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,423 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,423 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,423 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,423 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,423 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,423 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
4a3a1decb59195b3c7484b6eda37473acf33067ed4719a84dea3a397e1859fd7
2022-05-12 22:40:30,423 botocore.auth DEBUG    Signature:
69f0dfe7d29acd235336a2d6b452829209d6ca2571a1aeeeaedba6d5bbdf425f
2022-05-12 22:40:30,423 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,423 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,423 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,424 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,424 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,421 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,424 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,424 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,421 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,424 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,425 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,425 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,425 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,425 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,425 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,431 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,431 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,431 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,431 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,431 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,431 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
586dfcad37c29a0020ba87bff29a40301e18807deb09127fb9510c9acb7a7db7
2022-05-12 22:40:30,431 botocore.auth DEBUG    Signature:
572441cbbf35a56ad847da5683ca40cb7721fea886596e61362112b4a52db7b5
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,432 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,432 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'S/Wz7xyo6r7KThbY4TUDPg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,435 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,435 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,436 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,436 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,436 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
48397e23a8835ee866a102f478a0c3e9e1e6eb73ed8105b0a8cf7d97aa76ee15
2022-05-12 22:40:30,436 botocore.auth DEBUG    Signature:
c75d342d77d53f827f91d823fea13534cc383334f5aa3173dcb6904b6d0946cc
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,436 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,436 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,436 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:31,563 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,577 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,579 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,581 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,639 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,640 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_2_1/data_timeless/DISTANCE.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,640 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK2J1BFZ77Z9148', 'x-amz-id-2': '83nR5Kwbpttp7FaJ3JZ/c3Mw8Bi9wFblQzT+dr8Hehm+/654Zj6fQ3qIUwONicUY0snogzdzHrQ=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,641 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK2J1BFZ77Z914883nR5Kwbpttp7FaJ3JZ/c3Mw8Bi9wFblQzT+dr8Hehm+/654Zj6fQ3qIUwONicUY0snogzdzHrQ='
2022-05-12 22:40:31,647 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,647 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,647 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,648 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,648 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,648 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,648 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,649 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,649 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,649 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,649 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,649 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,649 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,649 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,650 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,650 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,650 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_1/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,650 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
4ec7487f4f9ef09ccb00de732d130ed4a0bbbebb0157d62a617090e72d31ffe4
2022-05-12 22:40:31,650 botocore.auth DEBUG    Signature:
a6f57c254d73691e2ee1b194fa7e0132748905657e4ca64adc696afc8f3e4a37
2022-05-12 22:40:31,650 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,650 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,650 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,650 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,650 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,656 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,656 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,656 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK41DMVV6FA78AF', 'x-amz-id-2': '5cRGx6bTzfEupQJzC2cQDtgD81j55+uAFuX3CBRG5IGfa2aQQvHfiAQ0cSioY8mtdGcd7VnuswQ=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,656 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK41DMVV6FA78AF5cRGx6bTzfEupQJzC2cQDtgD81j55+uAFuX3CBRG5IGfa2aQQvHfiAQ0cSioY8mtdGcd7VnuswQ='
2022-05-12 22:40:31,658 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,658 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,658 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,658 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,658 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,658 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,658 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_2_1/mask_timeless/EXTENT.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,659 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,659 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 400 None
2022-05-12 22:40:31,659 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,659 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AKEHDSTAJY14Z1R', 'x-amz-id-2': 'viRpaD6f64Bo7ZqOQUmy9goMA8N3zCDukt/JA3EVLs/vTWoeVc3rNI8bx5f+uO47Ea/T9MH3DHI=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,659 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK5V8EKY809TWTX', 'x-amz-id-2': 'FPMBDtK7so1DehkyAl6bv03RXLGXWJcmGizQ8F8tSkLAHSM6RfKAxn3F+uqAvsPK/g8JdnxObsg=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,659 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,659 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AKEHDSTAJY14Z1RviRpaD6f64Bo7ZqOQUmy9goMA8N3zCDukt/JA3EVLs/vTWoeVc3rNI8bx5f+uO47Ea/T9MH3DHI='
2022-05-12 22:40:31,659 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK5V8EKY809TWTXFPMBDtK7so1DehkyAl6bv03RXLGXWJcmGizQ8F8tSkLAHSM6RfKAxn3F+uqAvsPK/g8JdnxObsg='
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,661 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,663 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,663 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,663 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,663 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,663 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,663 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,663 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,663 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,663 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,663 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,663 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,663 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,663 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,663 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,663 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,663 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,664 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,664 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,664 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,664 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,664 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,664 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
7e78bc3213b189f6087cc253663f1e2dff097a350551061168998aaebee47f6a
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,664 botocore.auth DEBUG    Signature:
abbc8bcb077c5d96fb8e9f85dcbb55666a0b27017b53632f2e5ec029d7747f72
2022-05-12 22:40:31,665 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,665 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,665 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,665 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,665 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,665 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,665 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,665 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,665 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,665 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,665 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,665 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,666 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,666 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,666 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,666 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_2_1/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,666 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
b8de53a881782941df2240c15e2bfeacd57370dc498d1a86844bb8d1bbe08108
2022-05-12 22:40:31,666 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,666 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
c62e9dc737e38224b49ecc96e0bf21c8cb9f3d57c88d41ab8da0ebd5fbbfadc4
2022-05-12 22:40:31,666 botocore.auth DEBUG    Signature:
06ee9db129871c454407c9dc6a553874dc9c027f1aea400a94358f7fc95bfcd4
2022-05-12 22:40:31,666 botocore.auth DEBUG    Signature:
f2b680183e57702f90993684bfd5845365eb19e0b2b124e3f05887175c39b6e8
2022-05-12 22:40:31,667 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,667 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,667 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,667 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,667 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,667 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,667 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,667 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,668 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,668 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:34,559 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,565 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,566 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,569 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,655 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,661 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,662 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,664 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:35,060 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 200 0
2022-05-12 22:40:35,060 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ApWH1gU7+VH8NNLR0pB+wXhDOKbcfJ8yHZunLslErdAKso94L9a1vBYtcGylPk8uOUuB/b9DZWk=', 'x-amz-request-id': '789F53JNGB3EWSJD', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"074b12e67b7bafd88c752a86f3be1db6"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:35,061 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:35,061 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:35,061 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:35,061 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:35,061 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:35,062 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:08,656 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_1/mask_timeless/EXTENT.npy HTTP/1.1" 200 0
2022-05-12 22:41:08,657 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'caoNdNk89vLDbok5gnsdv6PS6pViiEgdOwzrfaA3ztEpMZuapR1DrF4587N32uBdfDe8VNAfKZs=', 'x-amz-request-id': '789BBT5RZS0E2PNT', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:08,657 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:08,657 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:08,657 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:08,658 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:08,658 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:08,658 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:16,614 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 200 0
2022-05-12 22:41:16,615 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'oSqRsmagTvnNbHc03m1deT8G4hsBW/pCXSEcrdK216htnmUaYzICCqS7HppvYd5lhOJrwjnBmig=', 'x-amz-request-id': '7890EY2TS9B16ZQ6', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:16,615 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:16,615 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:16,616 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:16,616 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:16,616 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:16,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:42,712 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_2_1/data_timeless/DISTANCE.npy HTTP/1.1" 200 0
2022-05-12 22:41:42,713 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ucILpdSxw2uhOxoxbWRLmKwhiVKbRMUjbeJKxed9H0m4wSDk7i6phrMQf30ImyiI7eWc+qPgFI0=', 'x-amz-request-id': '7897EB0YQ9M8HQ04', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"4bf5b3ef1ca8eabeca4e16d8e135033e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:42,713 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:42,713 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:42,713 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:42,713 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:42,713 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:42,715 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:42,733 eolearn.core.eoworkflow DEBUG    Removing intermediate result for SaveTask
2022-05-12 22:41:42,736 eolearn.core.eoworkflow DEBUG    Workflow finished with WorkflowResults(
  Dependency(SaveTask):
    EOPatch(
      data: {
        BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
        CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
      }
      mask: {
        CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
        IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
      }
      scalar: {}
      label: {}
      vector: {}
      data_timeless: {
        DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
      }
      mask_timeless: {
        BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
        EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
      }
      scalar_timeless: {}
      label_timeless: {}
      vector_timeless: {
        GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
      }
      meta_info: {}
      bbox: BBox(((219500.0, 1379500.0), (230500.0, 1390500.0)), crs=CRS('32630'))
      timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
    )
)
2022-05-12 22:41:42,736 root         DEBUG    EOWorkflow execution finished

Execution 4

Statistics
2022-05-12 22:21:52,329 eolearn.core.eoworkflow DEBUG    Computing LoadTask(*[], **{'eopatch_folder': '30PTU_4_2'})
2022-05-12 22:21:52,330 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:52,331 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,331 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:52,331 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,334 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:52,337 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:52,339 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,339 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,339 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,339 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,340 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,341 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,341 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:52,341 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,341 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,341 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_2/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:52,342 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:52,342 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,342 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,342 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:52,342 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:52,342 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:52,342 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,342 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,343 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:52,343 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_2%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222152Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:52,343 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222152Z
20220512/us-east-1/s3/aws4_request
ce5958691d26b5077b4ee55d64732ec7fd81a6c6d0d09aeb1c6fdb89d75fd7bc
2022-05-12 22:21:52,343 botocore.auth DEBUG    Signature:
f3e3aa15f8f835b32334d069404cc5ebe84736c62d400c74d4f05c5b7ed69d73
2022-05-12 22:21:52,343 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:52,343 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:52,343 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:52,344 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:53,697 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:21:53,698 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'W6ET7PFHVBRQWZH8', 'x-amz-id-2': 'o+D8TTUlFw7chK1XUV1y7TK/mCaEec/9+QzJx0G2jsIr20adYxZhH0RIw+zryPlt0v9WHCatDhI=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:21:52 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:53,698 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1W6ET7PFHVBRQWZH8o+D8TTUlFw7chK1XUV1y7TK/mCaEec/9+QzJx0G2jsIr20adYxZhH0RIw+zryPlt0v9WHCatDhI='
2022-05-12 22:21:53,701 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:53,701 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:53,701 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:53,701 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:53,701 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,701 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:53,704 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:53,704 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,704 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,704 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:53,704 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:53,704 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,704 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,704 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:53,704 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_2%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222153Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:53,704 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222153Z
20220512/eu-central-1/s3/aws4_request
7e5bc3aee8830b307952dde33266e4f9c49a0fb39fd92e07905c14d1c7d1cc8f
2022-05-12 22:21:53,705 botocore.auth DEBUG    Signature:
8e0e5680dc8b87eaba777b9ce850779515350658e99aa2de915b6febb8008348
2022-05-12 22:21:53,705 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:53,705 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:53,705 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:53,705 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:54,653 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,654 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '3wFw66uZsFWzHwIBZeO3q+eL1B5P0ju/pWUG3pRbrjIlGTsR4a35OZ4qWm6/IlH+4pdbp84j/ZI=', 'x-amz-request-id': 'XNTWM5QZQSG55V87', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,654 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_2/1000/urlfalseeopatches/30PTU_4_2/2022-05-12T11:07:00.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/bbox.pkl2022-05-12T11:07:19.000Z"d610dcd2de6596cec110cfd6ee26eafc"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/timestamp.pkl2022-05-12T11:07:19.000Z"bddd5da052edd05b16c1bacc1598871b"1858e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/data/eopatches/30PTU_4_2/mask/'
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,655 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,655 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,661 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,661 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,661 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,661 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_2/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,661 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,661 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,661 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,661 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,661 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,661 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,661 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,661 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,661 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_2%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,661 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
430ebf0c48fdceb17add16b234bd6fbfbefc4220dcf3f21026c47e0d700b2011
2022-05-12 22:21:54,661 botocore.auth DEBUG    Signature:
dcc6c0dd39d75f2f1a8e669daafe712e10bfe5ab9a7d7819c428ddd1faae359a
2022-05-12 22:21:54,662 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,662 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,662 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,755 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,757 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'h8HiUKzQ6w0guivuK05+RwQIJygN0iTJHq+9IXrcczfjmW3PzFCYePX26Yj/B1P/7/xG5Ec9UcU=', 'x-amz-request-id': 'XNTG53CJR7F256CM', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,757 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_2/data/1000/urlfalseeopatches/30PTU_4_2/data/2022-05-12T11:07:06.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/data/BANDS.npy2022-05-12T11:07:19.000Z"04937122e128d9427598ec0ac3900c99-26"212960128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/data/CLP.npy2022-05-12T11:07:18.000Z"899ae554c913652ca1d241336ce807d0-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,758 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,759 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,759 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_2/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,759 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,759 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,760 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,760 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_2%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,760 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
c2b3e1c33cbc2af1dd64bbb4097bbdabdc0d98d45f91dd4d915db43d659daa2d
2022-05-12 22:21:54,760 botocore.auth DEBUG    Signature:
dfcd0cca223b8591b86ca7ed61acd14b80007f36f29298b6422ddd99ed2f1978
2022-05-12 22:21:54,760 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,760 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,760 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,846 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,847 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'v9+R1p3hPmLbjDLb4SJ7/mdz4EnivtsJJkTp/+NC47w/FKYGYgFozknEgZHFiPN412BlfuPLTsA=', 'x-amz-request-id': 'XNTSRTKTQQE3JQNA', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,847 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_2/mask/1000/urlfalseeopatches/30PTU_4_2/mask/2022-05-12T11:07:11.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/mask/CLM.npy2022-05-12T11:07:19.000Z"3f8c44a405b5a9dda82c336798ac4767-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/mask/IS_DATA.npy2022-05-12T11:07:18.000Z"30cacf5f1ee7603a53f0d2a527451479-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,848 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,848 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,848 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,848 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,852 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,856 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,862 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,858 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,862 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,867 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,857 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,863 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,870 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,871 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,866 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,872 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,862 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,872 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,867 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,874 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,873 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,875 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,877 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,877 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:54,877 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:54,874 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,879 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,879 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,874 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,880 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,880 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,868 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,881 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,881 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,882 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,883 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,880 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,886 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,887 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,887 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:54,887 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:54,888 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,888 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask/CLM.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,888 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
7e52faad9768bbc23b7459d11ce20ae81cb23a8ed86928893fbabaec26e3067c
2022-05-12 22:21:54,888 botocore.auth DEBUG    Signature:
076cacd4a23deec0f60971e1e2e707eff98d4d4a0796b315ebd54ab813e8000f
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,888 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,888 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,888 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,875 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,890 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,881 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,892 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,877 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,894 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,894 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
eea38a1c10fa347ed79eeb52191130ee412b458843f02cea477c500ded3107bd
2022-05-12 22:21:54,894 botocore.auth DEBUG    Signature:
00e826499303849a89f54df4ef14c23254d3ec4c2a4a40e028c697ef1f8e8e45
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,894 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,895 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,895 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,894 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,863 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,895 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,898 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,901 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,902 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,896 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,904 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,904 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,905 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/bbox.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,905 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,906 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,897 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,906 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,906 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/bbox.pkl
2022-05-12 22:21:54,906 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,906 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/bbox.pkl
2022-05-12 22:21:54,906 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,907 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,907 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,907 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,907 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,907 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,907 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/bbox.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,907 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,908 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
84005bf31321f61c6f90a26d59c0a5534f0ae2ef5e422f104d1b8fd89b3b1127
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,909 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,908 botocore.auth DEBUG    Signature:
cb79b809805df65ace1219618915389807acda99cae9f3bb032b5ae3401499d8
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,910 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/timestamp.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,910 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,912 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,912 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,912 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/timestamp.pkl
2022-05-12 22:21:54,912 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/timestamp.pkl
2022-05-12 22:21:54,913 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,913 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/timestamp.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,913 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
a35bfdcfb55edf7fe00aa5e6dc6e7c1f8ce4a88574bded6346d40bbc6536f110
2022-05-12 22:21:54,913 botocore.auth DEBUG    Signature:
481b0c8239b5bc80b536dfb54968b935438a0e1044e3100e5be7d81e49651414
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,913 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,913 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,913 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,912 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:54,914 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:54,914 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,914 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask/IS_DATA.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,914 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
95b4b7293e337757957691c78da1294744d00285112c7fad1af33a220cae0bff
2022-05-12 22:21:54,914 botocore.auth DEBUG    Signature:
a3b6217b4fc34485f30bcbfc124f48503b2ab194824cb69178ea556b695820c1
2022-05-12 22:21:54,914 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,914 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,914 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,915 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,915 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,914 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,916 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,916 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,916 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:54,916 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:54,916 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,916 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data/CLP.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,916 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
b20ac3c3017e1b146a742f101fd0bd3ec6fcfd1c371ef1b91e815ecdeca36942
2022-05-12 22:21:54,916 botocore.auth DEBUG    Signature:
2e36b728ece278c86ffe156cd2ee48c10e6c6ecc4bce57f97f64fe5ec0bf3baf
2022-05-12 22:21:54,916 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,916 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,917 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,917 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,917 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:55,588 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/timestamp.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,589 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KDTJHESZMT40X7', 'x-amz-id-2': 'oWAEN9t/lIku66xKnPyXXpkHuweknJjPLNh4iEUVI0oH0ooXUFH0s3i5+JpExJa99ft6lmEv1NU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,589 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,591 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,591 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,591 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,591 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,591 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,592 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,592 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,592 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,592 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,592 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,592 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,592 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,592 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,592 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,592 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,592 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,592 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,593 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,593 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,593 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,593 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,593 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,593 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,593 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,593 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,593 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,593 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,594 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,594 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,596 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask/IS_DATA.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,596 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K3BMZ2N7J3Q9M1', 'x-amz-id-2': 'jY0ngP7wf0pd6EMuIuuGpUnpefRV7PRJEmhWyj46gmZqjPGv/ATxVttni2uVESQj2gNkUPkFGF8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,596 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,598 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,598 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,598 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,598 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,598 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,598 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,598 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,598 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,598 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,598 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,598 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,598 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,598 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,599 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,599 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,599 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,599 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,599 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,599 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,599 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,599 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,599 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,600 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask/CLM.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,600 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,600 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K2KZTY6QRGQZ4N', 'x-amz-id-2': 'BdY60wBQiw/oLD91UevcFbsRrxdbFWM0vB2ThOBgD0YNG7KKX1Wbv6WW+HG9/0PO1Hj7s4RW278=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,601 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KE0TRWBCBPK8EM', 'x-amz-id-2': 'x1wBmEgMSzkek2dFZtxYWBpT7jor4gRmPQfWo1Bp0IHhdsx4h/k6Tp/POkecP0hlemQLBeg2cLM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,601 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,601 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,602 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,604 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,604 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,604 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,604 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,604 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,604 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,604 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,604 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,604 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,605 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,605 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,605 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,605 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,605 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,605 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,605 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,605 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,604 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,605 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,605 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,605 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,606 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,607 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,607 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,607 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,607 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,608 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,608 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,608 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,608 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,608 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,608 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,608 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,608 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,608 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,608 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,608 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,609 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,609 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,609 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,609 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,609 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,609 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,609 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,609 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,610 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,607 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,610 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,636 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data/CLP.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,636 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K7NX26FN4JQFYB', 'x-amz-id-2': 'jkGMLR8MhP7LqlG9BbNveYlogDT2h6L1C/JSsKsZEb0/+E1jfJxb1XrxL48OZQp6eFpMlf5oQM0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,636 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,638 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,638 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,638 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,639 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/bbox.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,639 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,640 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,640 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,640 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,640 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,640 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,640 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,640 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,640 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,640 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K8XF3B6S7S245F', 'x-amz-id-2': 'qgBdJQO8gBnYvQBinfxSM+dYmD6e5MiXHxAXil6ooS2O/bXCmtDqAt7b1jb0wtBkzEm/7sOdjQ0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,640 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,640 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,643 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,643 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,643 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,643 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,643 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,643 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,643 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,644 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,646 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,646 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,646 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,647 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,647 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,647 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,643 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,648 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,649 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,649 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,650 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,650 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,650 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,650 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,650 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,650 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,650 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,650 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,650 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:56,635 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,636 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JRSRNDNSQ5HQN0', 'x-amz-id-2': 'JIB9hxFdzMciSlQztnI63pOa68RqtIBRo6nbbh2YpO779JbLhit+GLIiLmcoaGtXzLpTxeyYQao=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,636 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,636 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,637 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,637 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,637 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,637 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,638 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,638 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,638 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,638 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,638 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,638 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,638 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,639 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JGQRM5T8HB9G5G', 'x-amz-id-2': '8cd+vs015o00JTctdIv4W2ExxTVmwdjOgcPrvIUB6emRBTJrURY12/8wXCHxBXhF6ZQxz9QtzEY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,639 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,639 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,639 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,640 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,640 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,640 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,640 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,640 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,640 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,640 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,640 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,640 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,640 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,640 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,640 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,640 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,640 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,640 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,640 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,640 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,641 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,641 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,641 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,641 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,641 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,654 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,654 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JXRFP6X6KX2HF7', 'x-amz-id-2': 'oA19HTYyN/M4aSeGSrfklRmOmNgSlMDlgeVNaHSHX5l6KChNObvFpOlSv9nNIEDGUYKjWdtViqo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,654 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,655 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,655 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,655 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,655 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,655 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,655 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,656 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,656 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,656 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,656 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,656 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,656 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,656 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,656 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,656 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,657 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,657 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JZY1RTMPWYEPF9', 'x-amz-id-2': 'Pdns/m081KMErqC86a+axfv2Y63M1rSM3FGBleLZqTPXtGl3T+4mbtV/hdiG8WfX1uZOReCyEIg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,657 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,657 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,657 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,657 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,658 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,658 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,658 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,658 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,658 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,658 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,658 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,658 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,658 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,658 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,659 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,659 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,664 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,665 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JMAWJJA7R13EXT', 'x-amz-id-2': 'NTtG6oTUG+xhCxWDs5VWgZHc04ML4EWXh/8i13C2p5Sw0uB3atHT1e88v2DeJ/Jx2kSgidHo/aQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,665 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,665 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,665 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,665 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,665 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,665 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,666 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,666 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,666 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,666 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,666 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,666 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,666 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,666 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,666 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,666 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,666 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,666 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,666 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,667 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,667 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,667 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JPA9Z3RSBTZCNM', 'x-amz-id-2': '2QgtixJVm/MGVF6CpbqW76K2NiWVIfl226RmV7xsioq21L3kuTyv9PPCk4nzThlI2zzTL/EnLSA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,667 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,667 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,667 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,667 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,668 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,668 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,668 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,668 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,668 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,668 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,668 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,668 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,668 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,668 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,668 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,669 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,669 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,669 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,669 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,669 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,669 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,669 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,575 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,576 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'uvA0q2gONGJi/OKgaFfMW+f1igLQhKotrexZl9dzGWsPeAhyTZsDn6iG5rnw9E1jdq3axohSXgc=', 'x-amz-request-id': '4P7HKDT1T2ZVGS69', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,576 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,576 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,576 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,576 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,577 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,577 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,577 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/bbox.pkl
2022-05-12 22:21:57,577 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,577 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,578 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,578 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,578 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,578 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,578 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,578 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/bbox.pkl
2022-05-12 22:21:57,578 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/bbox.pkl
2022-05-12 22:21:57,578 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,578 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,578 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
20d2e8fefb1174c8634b25156487ceaed65333d0d7a83fd417b1e4ee149e885f
2022-05-12 22:21:57,579 botocore.auth DEBUG    Signature:
55c6cd4ef98d70f42359e594e0984f0fd7796719c9d5751161f9b2d533773592
2022-05-12 22:21:57,579 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,579 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,579 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,579 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,587 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,587 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UjscTsdRuJnlo5KNosUbIy3ZsWn8bl04Ad1p7yf9rL2TUb8tl20cTrwC+WcQrNLezO5P5ixl6F8=', 'x-amz-request-id': '4P7WB1DSHREDEP89', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,587 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,587 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,587 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,587 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,587 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,588 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,588 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,588 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,588 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,589 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,589 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,589 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,589 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
0e9f17d7a1c950ccad29c361904b3c11e9aaa098b2e4ac7674ccfe5787fed48c
2022-05-12 22:21:57,589 botocore.auth DEBUG    Signature:
45f3c064d89662f9274dfec0110375e9d84d8b428cf4a9b172d447186f6570d3
2022-05-12 22:21:57,589 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,589 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,589 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,589 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,591 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,591 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'R1utaRlZATPf3BzsYwSN38uaQtsweqmZ1Lk5oh3Yz1zHWw0GvIrOqiCAlVeMkCahZSzXQxERWiU=', 'x-amz-request-id': '4P7X9Y096W9DRBAD', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,591 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,592 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,592 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,592 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,592 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,592 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,592 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,592 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,592 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,593 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,593 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,593 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,593 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,593 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,593 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,593 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,593 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,593 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,593 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
fbdc0dd74de844a2c57805772e84a1528bc2ade5a35e3d499d038e7db88585bf
2022-05-12 22:21:57,593 botocore.auth DEBUG    Signature:
d9ba106f033023da861eaca910ba104fe0e1820f3388036335c5f6b8484161f7
2022-05-12 22:21:57,594 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,594 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,594 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,594 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,610 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,611 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'dmUvBxjx1oEN2KoVL8ZrjZ1sUMWoxeA0DSCTYiWOyhV09MrluC0z5qp2y/RAafnaBywKigKhRGo=', 'x-amz-request-id': '4P7X2TJ1NKWW7ZXE', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,611 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,611 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,611 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,611 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,611 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,611 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,612 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/timestamp.pkl
2022-05-12 22:21:57,612 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/timestamp.pkl
2022-05-12 22:21:57,612 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/timestamp.pkl
2022-05-12 22:21:57,613 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,613 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,613 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
424aec5ed68f0fc0f8c0a101524fbbd175e9decfa139588a26560b9c56cfd0c5
2022-05-12 22:21:57,613 botocore.auth DEBUG    Signature:
f3325d1374280bebdde3d2135a1033c8687f730ab6c14ec81aa2221d702275be
2022-05-12 22:21:57,613 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,613 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,613 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,614 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,621 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,621 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ASwbN7Ro5xsbqpbnwbRnaPB9M5/W9km37o+Fai/qvW3iGkSilra01pnFBg4e93/VxXHt+Cj8Rqk=', 'x-amz-request-id': '4P7WBAG3JQM2FC0T', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,622 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,622 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,622 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,622 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,622 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,622 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,623 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,623 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,623 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,623 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,623 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,623 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
861242c682fdafc27190f2cc70b4e1fabec32cb18c2a7926e226234c96a706ff
2022-05-12 22:21:57,623 botocore.auth DEBUG    Signature:
6e38deceee81594e0505e4db159bd3543ed84e975f018fd9c3f039aa49530084
2022-05-12 22:21:57,623 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,623 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,623 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,624 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,625 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,626 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UGrkkVXdmHj5VoZm4vlK+SYziEytAzAEEvQ1AwvwbRQTaTASJDJeZ5MHJ+eB3HTEI/aBN31lExA=', 'x-amz-request-id': '4P7RBX6F7MZ52ENR', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,626 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,626 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,626 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,626 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,626 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,626 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,627 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,627 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,627 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,627 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,627 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
e51111df7b3d8d7b0cf8059838bfd90ca466642cb30fdb89b78224c0490aeb3b
2022-05-12 22:21:57,627 botocore.auth DEBUG    Signature:
883cd82d27e80004a9a9662d8e463e3a02763363e8def3cfcd32b50e532cbbe2
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,627 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,627 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,665 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/bbox.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,666 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SijeuAwwzxUcLaa9qlr14BkXj19oNpzuPn1Oh8fMowDyFBN9FNwLu4eAZiFAscOmwweuBl+C/rY=', 'x-amz-request-id': '4P7V22EBRHFEZWSQ', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"d610dcd2de6596cec110cfd6ee26eafc"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,666 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,666 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,666 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,666 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,666 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,666 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/bbox.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,667 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/bbox.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,667 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/bbox.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,667 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/bbox.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/bbox.pkl', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,668 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/bbox.pkl
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,668 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/bbox.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,669 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/bbox.pkl
2022-05-12 22:21:57,669 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/bbox.pkl
2022-05-12 22:21:57,669 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,669 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,669 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
4c9d626cba6c1308ae46c1add71975d0ac6a2461499800ca542fd88ffdae8a92
2022-05-12 22:21:57,669 botocore.auth DEBUG    Signature:
ef3f2361cb2f3184f57d9cab2e1e5afb648ee0fb15d38f85486321f6ea74aefb
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,669 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,669 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,673 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask/IS_DATA.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,674 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'eKwbdoD02dutpnpcodDKrmJkR07/upL8oWp788gsMmJWDR2Qqgc005L2djI6lC/L5HCsSOmk1sA=', 'x-amz-request-id': '4P7JGYQBG6M9R9WA', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:18 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,674 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,674 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,675 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'RFsulWUmfk/HYiOwXKaDlJ/iDsYJ5qJusGHGbwclXQky8XZIjL7HZ8SRBngvs2UdR1SviA0zsxI=', 'x-amz-request-id': '4P7JSCB6D1D4G9CC', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '212960128'}
2022-05-12 22:21:57,675 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,675 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,675 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,675 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,676 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,676 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,676 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,676 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,677 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,677 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,677 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,677 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,677 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,677 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,677 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,678 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=31>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,678 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,678 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,678 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,678 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,678 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,678 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,678 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,678 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,679 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=31>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,679 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,679 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,680 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,680 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,680 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,680 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,680 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,680 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,681 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=31>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,681 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,683 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) about to wait for the following futures []
2022-05-12 22:21:57,683 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,683 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=31>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) done waiting for dependent futures
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,684 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) about to wait for the following futures []
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,684 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,684 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,685 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=25165824-33554431'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,685 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,685 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) done waiting for dependent futures
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,687 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) about to wait for the following futures []
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,687 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,687 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,686 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=33554432-41943039'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 33554432, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,687 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) done waiting for dependent futures
2022-05-12 22:21:57,687 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,687 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,688 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,688 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,690 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) about to wait for the following futures []
2022-05-12 22:21:57,693 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) done waiting for dependent futures
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,689 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=41943040-50331647'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 41943040, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,692 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=50331648-58720255'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 50331648, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,693 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,695 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,694 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,690 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,691 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,696 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,694 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,696 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=33554432-41943039', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,696 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,697 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-33554431', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,698 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,700 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,701 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,701 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,702 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,702 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=50331648-58720255', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,700 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,699 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/timestamp.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,703 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'njwLhlOXPjBeYUwh8p0Yas3cNmRo7NsVk9zfnwzuc61z24284VBrHPJ1RE2H+KslM7gGm9JuOK0=', 'x-amz-request-id': '4P7WTRQ9SYFD62NT', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"bddd5da052edd05b16c1bacc1598871b"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1858'}
2022-05-12 22:21:57,703 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,701 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,704 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,698 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,704 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
04a8cadcb0372c22ac9a1037e76ee1516fe975c89c8246df689bce290df0c4d3
2022-05-12 22:21:57,704 botocore.auth DEBUG    Signature:
faeffa73e22f6c89a512d226cc501674a1b59adda2685240db2fd6909f3520e3
2022-05-12 22:21:57,704 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,704 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,705 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,701 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,705 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,705 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,705 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,705 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,705 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,706 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,706 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d5e4695a35ab5a407439e090d7fa6c9b86784b6acd95e91e99e48ddb40fef9aa
2022-05-12 22:21:57,706 botocore.auth DEBUG    Signature:
4c5dc9eb8e2e3e4e8d01fa899754784dee2478fd5786c32ae572adaefeaa63a4
2022-05-12 22:21:57,706 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,706 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,701 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,706 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,703 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,706 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=33554432-41943039
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,703 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,708 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,708 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,705 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,709 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,709 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,701 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,699 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
25a1b998558a85cb17827ded3109f37883a4d687f60b9d08ca6e57a05c4eb900
2022-05-12 22:21:57,702 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,704 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,708 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) about to wait for the following futures []
2022-05-12 22:21:57,708 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
408d1c94ccfc6252bcad46b6a66551d30d8a5336d01b07194a224e02169434c0
2022-05-12 22:21:57,708 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,706 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,708 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,708 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data/CLP.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,711 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'TL2gGbD5BeVL2aTE+611OzrnqiNYejNY151gmggruarq3AAbwyOGMw1A8F5O+yJd5hLICV5eWiY=', 'x-amz-request-id': '4P7T92ZGD4K37MDM', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:18 GMT', 'ETag': '"899ae554c913652ca1d241336ce807d0-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,711 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,706 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,709 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,712 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,713 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,709 botocore.auth DEBUG    Signature:
79fb01b9e67a19e3c664d549bd49c9fc28c40b1f54607af649686e129918b40b
2022-05-12 22:21:57,710 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) done waiting for dependent futures
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,710 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,714 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,711 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
c3131c07083522f1bbb6188031b5134528fca68ea82b559a7db2c3e778d7d8e8
2022-05-12 22:21:57,697 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) about to wait for the following futures []
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,712 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=41943040-50331647', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,712 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask/CLM.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,709 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,719 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,709 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,710 botocore.auth DEBUG    Signature:
33b98e78157130449d3ad7f35e33df1a8090911bfd936033462f567aa240cbd6
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,713 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=75497472-83886079'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 75497472, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,714 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) done waiting for dependent futures
2022-05-12 22:21:57,714 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,715 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2VrONiFYt+mjCfMWYK6RDAq1pap4pi8PCkPJx7/x1IqbhIYxLiZ4RBUrFtBvRb4NANGujWdZGrQ=', 'x-amz-request-id': '4P7HYWMZFC17FVQF', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"3f8c44a405b5a9dda82c336798ac4767-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,709 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,701 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) about to wait for the following futures []
2022-05-12 22:21:57,721 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,721 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,713 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,713 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,714 botocore.auth DEBUG    Signature:
d0f781b579b3e1d6b99aa5d92d8fae082de8299885838d260fb352bbdd8ca495
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,724 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,722 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,724 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,724 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
ac07f0881a15a40619c907237a667c6fa9b6d9961c55af302db44625cff82936
2022-05-12 22:21:57,724 botocore.auth DEBUG    Signature:
204aeac3f46e324550282a7d6872f5918a87386896b98d375a2ea7ea894bccb1
2022-05-12 22:21:57,723 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-33554431
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,725 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
5f008f7cbcd2461288a906a152f647516d6823a9737afa507394c20c2d8c1e63
2022-05-12 22:21:57,725 botocore.auth DEBUG    Signature:
148060e66bbf4cd5f8a838d5d586c31054fb5e2ad848987a5ee91f8e8481ca52
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,725 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,723 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,709 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,722 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,723 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/timestamp.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,722 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) done waiting for dependent futures
2022-05-12 22:21:57,728 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=67108864-75497471'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 67108864, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,711 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,726 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,729 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,726 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,730 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,730 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
4c20877143cabc195512e2842f93cf8b35213cad2524361e2c40d66bc104e79d
2022-05-12 22:21:57,730 botocore.auth DEBUG    Signature:
d13a87901fb1363352d62839f993d25f4406b26e50a6f8c43ef7e4417ff6ea2e
2022-05-12 22:21:57,730 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,731 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,731 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,731 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,728 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,732 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,725 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,733 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,733 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,734 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,730 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,723 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask/IS_DATA.npy
2022-05-12 22:21:57,734 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,734 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,735 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,732 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/timestamp.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,735 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/timestamp.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,730 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,735 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,735 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,726 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,722 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=58720256-67108863'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 58720256, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,734 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
ac8e539af0761673dabeaa1fa4effc2b1fbaeb383164ad356def373591d5eb65
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,737 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,735 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/timestamp.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/timestamp.pkl', 'fileobj': <_io.BufferedRandom name=33>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,736 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,739 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,733 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,739 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,740 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,733 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,741 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,724 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,739 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.auth DEBUG    Signature:
8a8b323862404745f5ff436e1612f69f2d5865c672e1049f6f28f206a6f82b29
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,745 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,745 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,743 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,746 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,743 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,744 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,747 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,747 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 urllib3.connectionpool DEBUG    Starting new HTTPS connection (5): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,746 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=29>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,750 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=67108864-75497471', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,749 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=75497472-83886079', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,746 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,751 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,746 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,752 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,753 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,754 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,754 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,754 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,754 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,750 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/timestamp.pkl
2022-05-12 22:21:57,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,754 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,751 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,756 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,757 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,757 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=75497472-83886079
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,757 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
47d13f68574487645fe045f1855b80b9bc48c35828086e13868e08c157ecc2f6
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,739 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=41943040-50331647
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=58720256-67108863', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,755 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,753 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.auth DEBUG    Signature:
4a36dc40079c641634064921584fe5c73470a9a95c102eb51dc55fa668c9599a
2022-05-12 22:21:57,758 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
6b6ab131959a66513d98c04a2985580e51f292f28fa91a4df0b504534d92bc07
2022-05-12 22:21:57,759 botocore.auth DEBUG    Signature:
ef4799c276e1ab64bd1f1b40fcb6141bcc3b44c41833a5632777d82a7a21a818
2022-05-12 22:21:57,758 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,759 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,759 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,759 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,760 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=67108864-75497471
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,760 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b850371132266b9a38fa5ecce3b461e06d6c9594c70524f5e065d24b0fa27123
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=29>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,760 botocore.auth DEBUG    Signature:
ad4d5136ddae8c2d448d9c441bd300b58a64636db08452a54d0c9a4bd98a9d98
2022-05-12 22:21:57,759 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/timestamp.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,762 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,762 urllib3.connectionpool DEBUG    Starting new HTTPS connection (6): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,761 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=50331648-58720255
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,762 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
1015cf9230667f9427448295624e4e9218a78edaad0a35896e71c503db8b8562
2022-05-12 22:21:57,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,762 botocore.auth DEBUG    Signature:
6c5b7d92aacd7ed34ec9c7778c9ba446629beafe89a4cd8ac3e95bec03a78639
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,765 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,768 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,763 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/timestamp.pkl
2022-05-12 22:21:57,768 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/timestamp.pkl
2022-05-12 22:21:57,759 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,770 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,771 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,771 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,771 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
45b4ca58520cdc88236d31fe2e79720a06b43a752f6ed3ac69f8110a50a66391
2022-05-12 22:21:57,771 botocore.auth DEBUG    Signature:
0d73c3df65e51cef5b44d8ac76fa4724d128cc7a59e50bab5a8c3810a57810e4
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,771 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,772 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,772 urllib3.connectionpool DEBUG    Starting new HTTPS connection (7): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,772 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:21:57,773 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,773 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=58720256-67108863
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,773 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
abf5a821b9d90b016f02d188b7c8e77b27f9d4bc093e30a9deed96d346acf1eb
2022-05-12 22:21:57,773 botocore.auth DEBUG    Signature:
0fd71d21c070279233592e2118b5ceffc2813952dac4748c3420ada60214eb59
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,773 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,765 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,774 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,774 urllib3.connectionpool DEBUG    Starting new HTTPS connection (9): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,768 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,775 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,769 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,764 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/bbox.pkl HTTP/1.1" 200 184
2022-05-12 22:21:57,776 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7R46066tSuLNjXvg7nZHxkf3eRRU4yHRqTFwlxqxKrVUBp17pg3x9FBad4n2ZQ2DamV/VuDGjhw=', 'x-amz-request-id': '4P7V3V6W998ZTEVR', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"d610dcd2de6596cec110cfd6ee26eafc"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,774 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,774 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,776 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,767 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,774 urllib3.connectionpool DEBUG    Starting new HTTPS connection (8): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,779 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 urllib3.connectionpool DEBUG    Starting new HTTPS connection (10): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,781 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,780 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,774 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,781 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,774 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,782 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
f18ec97a9dab16129e261a7714761cec0718a18ddabf952f191bd2b262c8775f
2022-05-12 22:21:57,779 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,781 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,782 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,784 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,784 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,781 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,782 botocore.auth DEBUG    Signature:
895a5ad8013648bb39b3a082c2b9a676b980159abfa17a7f60d1ddc85966b50d
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,784 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,782 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,785 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,784 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,785 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,784 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,785 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,787 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
5b489e85e5f0fc95ae25604ba6382904bf1d6c65c486a840040adcc31dbae11c
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
85c1752ba0a62fbc4198e3d78492a35e9d46418c10f4ad50b855466daed6db45
2022-05-12 22:21:57,787 botocore.auth DEBUG    Signature:
f3220e61861c96a04ddc4abccde42aa9c38eb0420bd02cccf03235c98617673d
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,788 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,788 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 0}
2022-05-12 22:21:57,788 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,778 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.auth DEBUG    Signature:
6912cdbe4ed6f777710042c47a3199168c07adc14ccc20b0594c6e45fd2735a4
2022-05-12 22:21:57,788 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,789 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=29>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,791 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,788 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,791 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,791 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,790 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,790 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,793 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,793 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,793 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
7e84f1f7dcf7754bb53d267538152f1399b6771d8c9ba4ece48621bd756da93b
2022-05-12 22:21:57,793 botocore.auth DEBUG    Signature:
c684e86965d34f2f4f7df2039013f09ed3f826e06a8d5389f17359d50a16a510
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,794 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,795 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,795 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,795 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,795 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
24c5db231ae27b968b274ad9fb1b57645db4f9e34351c1d746e8e7885364fbe9
2022-05-12 22:21:57,795 botocore.auth DEBUG    Signature:
eecfe454eb5e385b060a3b57db86808a08578649184215693881647300951d86
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,795 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,795 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,796 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,796 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,792 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,796 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,792 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,788 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,798 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,798 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,798 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,799 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,800 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,800 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,800 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d1ca2d61bad06ff44f5479ab544c2ff7b1ae9ccba1ecab07ea83b5b8238200e0
2022-05-12 22:21:57,800 botocore.auth DEBUG    Signature:
9b169d4d3c566f993c44064251e677ca66c3160d93f90951f0c8b3b4f24722ae
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,800 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,800 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,801 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask/CLM.npy
2022-05-12 22:21:57,802 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,802 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,802 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
2efd45a361cd2dc7536548d451049a65d8f4c10d6678a26de0a9de8ffae17a21
2022-05-12 22:21:57,802 botocore.auth DEBUG    Signature:
076459f6198eab6affd6cd80183e34d9758c13f3820b16302c0b2fbb66f78d37
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,802 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,803 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,803 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,799 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=29>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,805 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/CLP.npy
2022-05-12 22:21:57,805 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,805 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,805 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
3ef70023782acf33a21a151bc39c2d272fb77968ec926ec879a9a646cfd2e3a7
2022-05-12 22:21:57,805 botocore.auth DEBUG    Signature:
d9cbcedbe2d11d2c624ea5d78a4f090cd7b697fc84fc789b68b5eb733ffaf256
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,805 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,806 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,871 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,872 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'fSBO26KtUKG8vhz5RLk6awIgrbMbgAM/fXBW6YttaDzkzL/aTK0xnqUEGsrdkAuyA3OlPt7l780=', 'x-amz-request-id': '4P7VHCJAKJ7RH6PT', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:18 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,872 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,874 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,874 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,874 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,888 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/timestamp.pkl HTTP/1.1" 200 1858
2022-05-12 22:21:57,889 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'PV6RASQ1DGrrVYDhlZrEOUAVfSkBaSGP1qQMLTFDI9YtdjfLHoEn4y0nDoMcSQpEbWL39jKyBh8=', 'x-amz-request-id': '4P7XP7QQCSWWPRV9', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"bddd5da052edd05b16c1bacc1598871b"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1858'}
2022-05-12 22:21:57,889 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,890 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,890 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,890 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,891 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 0}
2022-05-12 22:21:57,891 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,892 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,892 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,944 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,945 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7vA8Yb/Y1w0iYybSM6zoglKy2L2HAHAxWU5iFZOjM/c8m+bTaOhr+q5D+eXLto0eA72MJpexb8k=', 'x-amz-request-id': '4P7HE5P6SPJZ7834', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,945 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,945 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,945 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,945 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,957 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,957 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'n4Z4nkD44R59ewR5mXVPbsglUJFNeIX0EL4vFf4Sv+4fR3tA56oM2uKRczIirBpO3qI+6mpHsSk=', 'x-amz-request-id': '4P7WHTP55H74E03Y', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"3f8c44a405b5a9dda82c336798ac4767-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,957 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,958 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,958 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,958 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:58,010 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:58,010 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'cqCRYIjSN5wZGHASuchjJ+PW5/2JmXgPR9l/qsdetCmyppP5jmT6y0Nu5+2BhOXqQggkj0lwg4g=', 'x-amz-request-id': '4P7N3Z8QC3KCV2FS', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:18 GMT', 'ETag': '"899ae554c913652ca1d241336ce807d0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:58,010 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:58,011 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:58,011 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:58,011 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:00,586 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:00,586 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:00,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:00,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:00,587 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 0}
2022-05-12 22:22:00,587 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:01,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:01,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:01,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:01,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:01,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 0}
2022-05-12 22:22:01,916 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:03,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:03,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:03,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:03,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:03,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 8388608}
2022-05-12 22:22:03,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:04,720 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:04,720 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:04,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:04,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:04,720 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 0}
2022-05-12 22:22:04,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:05,177 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:05,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:05,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:05,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:05,178 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 8650752}
2022-05-12 22:22:05,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:05,480 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:05,480 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:05,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:05,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:05,480 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 262144}
2022-05-12 22:22:05,481 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:06,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:06,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:06,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:06,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:06,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 8912896}
2022-05-12 22:22:06,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,618 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:07,618 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:07,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:07,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 262144}
2022-05-12 22:22:07,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:07,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:07,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:07,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 262144}
2022-05-12 22:22:07,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,874 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,874 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HuKvfEkUFrsRXYocxxsOvN2+rPyOnR9YojRwc/VCpyvCECka77bjvkWZuHa3xQ/qESg753t2jCQ=', 'x-amz-request-id': '8ZJGHK3TXVFH28G4', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 33554432-41943039/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,874 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,875 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,875 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,875 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,026 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,026 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'yBrFqnefQHQh6IcuJtxblrWryL4lOV2s4SoS5616qd+vjVG64eH50sSPQ1VqP7hTdxvZ9nB0cec=', 'x-amz-request-id': '8ZJMWYQF215G5A9V', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:18 GMT', 'ETag': '"899ae554c913652ca1d241336ce807d0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,027 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,027 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,027 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,027 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,035 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/CLP.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:09,036 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'wrFEcpg6lZF9aG6lD242Qfoo29e1Z+C/+3WyBfm2TAq9lPsJOQPOYj/GO2DCf4IBLkSXD2v75TE=', 'x-amz-request-id': '8ZJHG8AQ3Q6NZG8H', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:18 GMT', 'ETag': '"899ae554c913652ca1d241336ce807d0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:09,036 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,037 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,038 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,038 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,082 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,082 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hTZGoi0yoEDVBvAD0DfqOP9Nos45bSuiyMU3DapdjkDsY55evUaxt66aG2/Nx+htg2np/eIrXnQ=', 'x-amz-request-id': '8ZJHNM3QHAT6672S', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:18 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,082 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,083 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,083 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,083 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,182 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,182 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'J1DYdbOFnwJxbljfl8Fn6JBH0k2b50WSs8MAM9MgKBT2m93auGQ+LXT/Tsm/BSWz1M09jG7wd6c=', 'x-amz-request-id': '8ZJJJRZ17FTHFEG5', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 50331648-58720255/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,183 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,183 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,183 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,183 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,186 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/mask/CLM.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:09,187 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'FTwOnrPBA9J8UL3oI44n/2rsPbM29Og71oDsK4tUJ9oDFzuKqlkK1AwkrxodBHlidgQ5hzRSefA=', 'x-amz-request-id': '8ZJN2BDPVWGKWRGY', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"3f8c44a405b5a9dda82c336798ac4767-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:09,187 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,187 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,187 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,187 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,208 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,208 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'i82fMGfV5WiPKYCF+SGuzGGZFXrUEwCtNMvZTBUyF+zrS96BCu3TFB84ZF/e3oH9JeAvDHFiPSo=', 'x-amz-request-id': 'MCASTWZVP4BMR3AT', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"3f8c44a405b5a9dda82c336798ac4767-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,208 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,209 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,209 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,209 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,341 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,342 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'vTyzbtNiP5htazXTAOcI9COksonPIs+z0qHYz91CgUpjaXn6afci14X2UZ0hDnxDY/rLOCIFamA=', 'x-amz-request-id': 'MCAHN7AFERHS25Z9', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 75497472-83886079/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,342 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,342 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,342 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,342 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,357 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/mask/IS_DATA.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:09,358 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'tmL1XkoxMdMNsqIM2/aJcKzcvszCGLrxXmh84K6H0iMTXW5/yPXhGa+cIivSnw/TOmLgsb9HJnk=', 'x-amz-request-id': '8ZJKC2AVAJNKHR8H', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:18 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:09,358 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,358 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,358 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,358 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,509 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,510 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'LO1UDK9fQP6uq+SS1CpRk//UVd6U1lfARLGoUQCclBQUvpelxoALd/ajZU16nOKCUVXPJ8adC5U=', 'x-amz-request-id': 'MCAGM7234BXWEWH7', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 67108864-75497471/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,510 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,510 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,510 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,510 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,516 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,516 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'EFagPQaeYM6f8fDh0o4485GjUfqEQFHLI3w7s+dRPeP8gzkVCCEZVf16e+24Y9OPKWLPxFkDFic=', 'x-amz-request-id': 'MCAZCN10Q0KV2RY7', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:18 GMT', 'ETag': '"899ae554c913652ca1d241336ce807d0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,516 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,516 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,516 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,516 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,675 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,676 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'H9I/o7K6QPrVjfciB9vkO3xUBtREsmfpzrXXFHbvFX9wtsb9Kk7IsNoZqSU8fyg0ChGdAtkVki8=', 'x-amz-request-id': 'MCAVGZ28WSM8VPF0', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-33554431/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,676 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,676 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,676 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,676 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,755 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,755 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UByKcms2PCM8S4M2j80S1g4e0tjv6h9PtC5geiZ8fKp94664LKPLhMqx0FDUknUo43Cs4yFVbP8=', 'x-amz-request-id': 'MCAT0ZNH5ZHWTPSM', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 58720256-67108863/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,756 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,757 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,757 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,757 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,864 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,865 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hpfcDq8PWHnacbvleEu1qWS4f1rNjOgiZPh80psSP5AsHbFSdYoslSV3PFaO7Es947/W0ZEJjys=', 'x-amz-request-id': 'MCAT60KP11ZWQ39K', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:18 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,865 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,866 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,866 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,866 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,954 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,955 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'IBC1JFJ7FynR9gD+KXFzMOWmrnJCshnG81noihhNi07BsGLAHiYIBuBlP3oN/7OXMxwcewmcBEU=', 'x-amz-request-id': 'MCAJ4X3J8MRHXPSN', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"3f8c44a405b5a9dda82c336798ac4767-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,955 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,956 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,956 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,956 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:10,746 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:10,747 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'I82nRoNIMdagfF1j2tfUxT54umzXK5IO3TIMnU8WVptCLPrQHJ7Vym8/RbX/u63C5KBvU0plUxs=', 'x-amz-request-id': 'YV0H1Q3EMM70G0G1', 'Date': 'Thu, 12 May 2022 22:22:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:10,747 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:10,748 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:10,748 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:10,748 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:10,840 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:10,840 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'MXKRUMBt2xIqmrBQtiQDvEPC/IAUUq1Jq4mo/4YxztWpncePwAlnYdAJCLv3UXDMpkg7h9VOn7k=', 'x-amz-request-id': 'YV0Y066ETNXV2X6N', 'Date': 'Thu, 12 May 2022 22:22:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 41943040-50331647/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:10,840 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:10,841 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:10,842 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:10,842 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:10,866 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:10,866 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'oM/1wJ4r2/z+5OvR0Mbko/kLRM3/MbxHO/mtKEOOC7GxrmTIils49Y/Kea3gcJl8b0NoXlYxoT8=', 'x-amz-request-id': 'YV0V7TA225AT3QW5', 'Date': 'Thu, 12 May 2022 22:22:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:10,866 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:10,867 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:10,867 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:10,867 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:15,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:22:15,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:15,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:22:15,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:22:15,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 9175040}
2022-05-12 22:22:15,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:16,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:16,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:16,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:16,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:16,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 524288}
2022-05-12 22:22:16,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:21,218 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41943040}) to executor  for transfer request: 0.
2022-05-12 22:22:21,218 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:21,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) about to wait for the following futures []
2022-05-12 22:22:21,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) done waiting for dependent futures
2022-05-12 22:22:21,219 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41943040}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 41943040}
2022-05-12 22:22:21,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:22,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:22,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:22,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:22,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:22,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 16777216}
2022-05-12 22:22:22,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:23,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:23,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:23,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 25165824}
2022-05-12 22:22:23,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:23,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:23,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:23,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 25165824}
2022-05-12 22:22:23,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,991 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:24,992 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:24,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:24,992 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 0}
2022-05-12 22:22:24,993 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:26,264 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:26,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:26,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:26,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:26,265 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 16777216}
2022-05-12 22:22:26,265 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:28,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75497472}) to executor  for transfer request: 0.
2022-05-12 22:22:28,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:28,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) about to wait for the following futures []
2022-05-12 22:22:28,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) done waiting for dependent futures
2022-05-12 22:22:28,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75497472}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 75497472}
2022-05-12 22:22:28,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:29,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:22:29,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:29,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:22:29,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:22:29,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 9437184}
2022-05-12 22:22:29,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:29,349 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58720256}) to executor  for transfer request: 0.
2022-05-12 22:22:29,350 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:29,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) about to wait for the following futures []
2022-05-12 22:22:29,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) done waiting for dependent futures
2022-05-12 22:22:29,350 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58720256}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 58720256}
2022-05-12 22:22:29,351 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:30,587 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33554432}) to executor  for transfer request: 0.
2022-05-12 22:22:30,587 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:30,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) about to wait for the following futures []
2022-05-12 22:22:30,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) done waiting for dependent futures
2022-05-12 22:22:30,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33554432}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 33554432}
2022-05-12 22:22:30,588 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:30,784 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:30,784 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:30,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:30,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:30,785 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 16777216}
2022-05-12 22:22:30,785 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:32,053 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:32,053 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:32,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:32,054 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:32,054 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 16777216}
2022-05-12 22:22:32,054 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:32,304 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:32,304 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:32,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:32,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:32,305 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 8388608}
2022-05-12 22:22:32,305 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,012 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:34,012 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,013 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:34,013 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:34,013 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 524288}
2022-05-12 22:22:34,014 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:34,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:34,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:34,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 262144}
2022-05-12 22:22:34,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:34,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:34,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:34,887 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 25427968}
2022-05-12 22:22:34,887 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:35,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:35,154 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:35,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:35,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:35,155 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 786432}
2022-05-12 22:22:35,155 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:35,543 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:35,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:35,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:35,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:35,544 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 25165824}
2022-05-12 22:22:35,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:35,747 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67108864}) to executor  for transfer request: 0.
2022-05-12 22:22:35,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:35,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) about to wait for the following futures []
2022-05-12 22:22:35,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) done waiting for dependent futures
2022-05-12 22:22:35,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67108864}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 67108864}
2022-05-12 22:22:35,748 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:36,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:36,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:36,179 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 8388608}
2022-05-12 22:22:36,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,783 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:36,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:36,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:36,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 8388608}
2022-05-12 22:22:36,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:37,695 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:37,695 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:37,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:37,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:37,696 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 17039360}
2022-05-12 22:22:37,696 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:40,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:40,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:40,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:40,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:40,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 25427968}
2022-05-12 22:22:40,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:43,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50331648}) to executor  for transfer request: 0.
2022-05-12 22:22:43,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:43,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) about to wait for the following futures []
2022-05-12 22:22:43,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) done waiting for dependent futures
2022-05-12 22:22:43,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50331648}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 50331648}
2022-05-12 22:22:43,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:43,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:43,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:43,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:43,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:43,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 25165824}
2022-05-12 22:22:43,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:44,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:44,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:44,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:44,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:44,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 524288}
2022-05-12 22:22:44,266 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:46,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:46,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:46,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:46,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:46,463 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 17039360}
2022-05-12 22:22:46,463 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:22:47,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:22:47,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:22:47,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 9699328}
2022-05-12 22:22:47,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,590 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:47,590 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,590 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:47,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:47,591 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 17301504}
2022-05-12 22:22:47,591 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:47,913 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:47,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:47,913 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 17039360}
2022-05-12 22:22:47,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:48,160 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75759616}) to executor  for transfer request: 0.
2022-05-12 22:22:48,160 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:48,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) about to wait for the following futures []
2022-05-12 22:22:48,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) done waiting for dependent futures
2022-05-12 22:22:48,160 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75759616}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 75759616}
2022-05-12 22:22:48,161 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:48,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:48,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:48,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:48,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:48,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 8650752}
2022-05-12 22:22:48,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58982400}) to executor  for transfer request: 0.
2022-05-12 22:22:49,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) about to wait for the following futures []
2022-05-12 22:22:49,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) done waiting for dependent futures
2022-05-12 22:22:49,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58982400}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 58982400}
2022-05-12 22:22:49,773 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:50,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:22:50,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:50,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:22:50,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:22:50,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 25690112}
2022-05-12 22:22:50,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:51,477 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:22:51,477 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:51,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:22:51,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:22:51,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 25690112}
2022-05-12 22:22:51,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:51,661 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42205184}) to executor  for transfer request: 0.
2022-05-12 22:22:51,661 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:51,661 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) about to wait for the following futures []
2022-05-12 22:22:51,661 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) done waiting for dependent futures
2022-05-12 22:22:51,661 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42205184}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 42205184}
2022-05-12 22:22:51,662 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,343 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:52,343 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:52,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:52,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 25427968}
2022-05-12 22:22:52,344 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,581 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50593792}) to executor  for transfer request: 0.
2022-05-12 22:22:52,581 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) about to wait for the following futures []
2022-05-12 22:22:52,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) done waiting for dependent futures
2022-05-12 22:22:52,582 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50593792}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 50593792}
2022-05-12 22:22:52,582 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,699 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67371008}) to executor  for transfer request: 0.
2022-05-12 22:22:53,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) about to wait for the following futures []
2022-05-12 22:22:53,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) done waiting for dependent futures
2022-05-12 22:22:53,699 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67371008}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 67371008}
2022-05-12 22:22:53,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:55,621 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:55,621 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:55,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:55,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:55,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 786432}
2022-05-12 22:22:55,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:56,472 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:56,472 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:56,472 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:56,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:56,473 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 8650752}
2022-05-12 22:22:56,473 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:56,501 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:56,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:56,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:56,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:56,502 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 17039360}
2022-05-12 22:22:56,503 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:56,913 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:22:56,913 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:56,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:22:56,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:22:56,913 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 1048576}
2022-05-12 22:22:56,914 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:58,486 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76021760}) to executor  for transfer request: 0.
2022-05-12 22:22:58,486 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:58,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) about to wait for the following futures []
2022-05-12 22:22:58,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) done waiting for dependent futures
2022-05-12 22:22:58,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76021760}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 76021760}
2022-05-12 22:22:58,487 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:58,541 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:22:58,541 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:58,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:22:58,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:22:58,541 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 17563648}
2022-05-12 22:22:58,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:59,508 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:59,508 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:59,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:59,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:59,509 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 524288}
2022-05-12 22:22:59,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:03,595 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:03,595 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:03,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:03,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:03,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 25952256}
2022-05-12 22:23:03,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:04,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:23:04,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:04,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:23:04,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:23:04,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 8650752}
2022-05-12 22:23:04,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:04,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33816576}) to executor  for transfer request: 0.
2022-05-12 22:23:04,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:04,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) about to wait for the following futures []
2022-05-12 22:23:04,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) done waiting for dependent futures
2022-05-12 22:23:04,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33816576}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 33816576}
2022-05-12 22:23:04,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,513 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:05,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:05,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:05,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 9961472}
2022-05-12 22:23:05,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:06,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50855936}) to executor  for transfer request: 0.
2022-05-12 22:23:06,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:06,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) about to wait for the following futures []
2022-05-12 22:23:06,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) done waiting for dependent futures
2022-05-12 22:23:06,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50855936}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 50855936}
2022-05-12 22:23:06,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:06,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:23:06,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:06,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:23:06,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:23:06,168 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 8912896}
2022-05-12 22:23:06,168 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:23:07,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:23:07,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:23:07,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 25427968}
2022-05-12 22:23:07,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:07,397 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:07,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:07,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 1048576}
2022-05-12 22:23:07,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:07,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:07,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:07,767 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 25690112}
2022-05-12 22:23:07,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:09,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:09,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:09,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:09,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:09,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 25952256}
2022-05-12 22:23:09,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:10,032 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:10,033 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:10,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:10,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:10,033 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 17301504}
2022-05-12 22:23:10,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:11,343 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59244544}) to executor  for transfer request: 0.
2022-05-12 22:23:11,343 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:11,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) about to wait for the following futures []
2022-05-12 22:23:11,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) done waiting for dependent futures
2022-05-12 22:23:11,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59244544}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 59244544}
2022-05-12 22:23:11,344 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,400 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:12,400 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:12,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:12,400 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 1310720}
2022-05-12 22:23:12,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76283904}) to executor  for transfer request: 0.
2022-05-12 22:23:12,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) about to wait for the following futures []
2022-05-12 22:23:12,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) done waiting for dependent futures
2022-05-12 22:23:12,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76283904}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 76283904}
2022-05-12 22:23:12,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:14,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:14,105 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:14,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:14,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:14,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 786432}
2022-05-12 22:23:14,106 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:14,897 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:14,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:14,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:14,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:14,898 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 1310720}
2022-05-12 22:23:14,899 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:15,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:23:15,009 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:15,009 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:23:15,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:23:15,010 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 8912896}
2022-05-12 22:23:15,010 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:15,151 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:15,152 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:15,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:15,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:15,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 17301504}
2022-05-12 22:23:15,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:16,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:16,148 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:16,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:16,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:16,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 26214400}
2022-05-12 22:23:16,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:17,810 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42467328}) to executor  for transfer request: 0.
2022-05-12 22:23:17,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:17,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) about to wait for the following futures []
2022-05-12 22:23:17,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) done waiting for dependent futures
2022-05-12 22:23:17,811 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42467328}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 42467328}
2022-05-12 22:23:17,811 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:20,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51118080}) to executor  for transfer request: 0.
2022-05-12 22:23:20,249 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) about to wait for the following futures []
2022-05-12 22:23:20,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) done waiting for dependent futures
2022-05-12 22:23:20,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51118080}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 51118080}
2022-05-12 22:23:20,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:20,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:20,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:20,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:20,399 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 17825792}
2022-05-12 22:23:20,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:20,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:20,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:20,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:20,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 10223616}
2022-05-12 22:23:20,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:21,911 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:21,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:21,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:21,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:21,912 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 1572864}
2022-05-12 22:23:21,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:21,934 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:21,934 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:21,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:21,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:21,935 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 26214400}
2022-05-12 22:23:21,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:22,868 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:22,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:22,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:22,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:22,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9175040}
2022-05-12 22:23:22,869 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:24,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:24,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:24,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:24,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:24,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 1572864}
2022-05-12 22:23:24,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:25,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:25,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:25,252 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 26476544}
2022-05-12 22:23:25,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76546048}) to executor  for transfer request: 0.
2022-05-12 22:23:25,577 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) about to wait for the following futures []
2022-05-12 22:23:25,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) done waiting for dependent futures
2022-05-12 22:23:25,578 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76546048}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 76546048}
2022-05-12 22:23:25,578 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:23:27,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:23:27,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:23:27,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 8912896}
2022-05-12 22:23:27,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,945 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59506688}) to executor  for transfer request: 0.
2022-05-12 22:23:27,945 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) about to wait for the following futures []
2022-05-12 22:23:27,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) done waiting for dependent futures
2022-05-12 22:23:27,946 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59506688}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 59506688}
2022-05-12 22:23:27,946 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:28,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:28,954 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:28,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:28,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:28,954 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 17301504}
2022-05-12 22:23:28,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:29,006 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:29,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:29,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:29,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:29,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 25690112}
2022-05-12 22:23:29,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,432 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:30,432 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:30,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:30,433 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 1835008}
2022-05-12 22:23:30,433 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,492 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:30,492 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,493 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:30,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:30,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 26476544}
2022-05-12 22:23:30,493 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,844 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:30,844 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:30,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:30,845 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 17563648}
2022-05-12 22:23:30,845 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:31,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:31,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:31,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:31,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:31,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 9175040}
2022-05-12 22:23:31,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:32,234 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:32,234 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:32,234 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:32,234 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:32,234 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 17563648}
2022-05-12 22:23:32,235 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:34,174 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:34,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:34,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:34,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:34,175 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 18087936}
2022-05-12 22:23:34,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:34,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:23:34,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:34,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:23:34,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:23:34,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 10485760}
2022-05-12 22:23:34,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:34,429 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34078720}) to executor  for transfer request: 0.
2022-05-12 22:23:34,429 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:34,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) about to wait for the following futures []
2022-05-12 22:23:34,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) done waiting for dependent futures
2022-05-12 22:23:34,430 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34078720}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 34078720}
2022-05-12 22:23:34,430 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:23:38,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:23:38,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:23:38,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 26738688}
2022-05-12 22:23:38,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:40,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:23:40,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:40,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:23:40,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:23:40,887 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 2097152}
2022-05-12 22:23:40,888 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:40,957 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:40,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:40,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:40,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:40,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9437184}
2022-05-12 22:23:40,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:41,190 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76808192}) to executor  for transfer request: 0.
2022-05-12 22:23:41,191 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:41,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) about to wait for the following futures []
2022-05-12 22:23:41,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) done waiting for dependent futures
2022-05-12 22:23:41,191 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76808192}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 76808192}
2022-05-12 22:23:41,192 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51380224}) to executor  for transfer request: 0.
2022-05-12 22:23:42,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) about to wait for the following futures []
2022-05-12 22:23:42,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) done waiting for dependent futures
2022-05-12 22:23:42,647 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51380224}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 51380224}
2022-05-12 22:23:42,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:43,123 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:43,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:43,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:43,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:43,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 1835008}
2022-05-12 22:23:43,124 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,129 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:44,129 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:44,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:44,130 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 1048576}
2022-05-12 22:23:44,130 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:45,811 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:45,811 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:45,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:45,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:45,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 9175040}
2022-05-12 22:23:45,812 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:46,348 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:46,349 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:46,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:46,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:46,349 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 18350080}
2022-05-12 22:23:46,350 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:47,150 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42729472}) to executor  for transfer request: 0.
2022-05-12 22:23:47,150 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:47,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) about to wait for the following futures []
2022-05-12 22:23:47,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) done waiting for dependent futures
2022-05-12 22:23:47,151 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42729472}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 42729472}
2022-05-12 22:23:47,151 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:47,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:47,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:47,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:47,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:47,709 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 25952256}
2022-05-12 22:23:47,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:48,333 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:48,333 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:48,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:48,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:48,334 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 9437184}
2022-05-12 22:23:48,334 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:48,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:23:48,458 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:48,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:23:48,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:23:48,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 27000832}
2022-05-12 22:23:48,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:49,959 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:23:49,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:49,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:23:49,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:23:49,960 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 10747904}
2022-05-12 22:23:49,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,812 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67633152}) to executor  for transfer request: 0.
2022-05-12 22:23:50,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) about to wait for the following futures []
2022-05-12 22:23:50,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) done waiting for dependent futures
2022-05-12 22:23:50,813 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67633152}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 67633152}
2022-05-12 22:23:50,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:51,066 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:23:51,066 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:51,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:23:51,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:23:51,067 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 2359296}
2022-05-12 22:23:51,067 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:51,789 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59768832}) to executor  for transfer request: 0.
2022-05-12 22:23:51,789 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:51,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) about to wait for the following futures []
2022-05-12 22:23:51,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) done waiting for dependent futures
2022-05-12 22:23:51,790 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59768832}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 59768832}
2022-05-12 22:23:51,790 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:53,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:53,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:53,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:53,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:53,046 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 17825792}
2022-05-12 22:23:53,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:54,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:54,294 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:54,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:54,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:54,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 17825792}
2022-05-12 22:23:54,295 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:55,132 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:55,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:55,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9699328}
2022-05-12 22:23:55,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:23:55,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:23:55,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:23:55,787 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 2097152}
2022-05-12 22:23:55,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:56,957 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:56,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:56,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:56,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:56,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 25952256}
2022-05-12 22:23:56,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:57,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77070336}) to executor  for transfer request: 0.
2022-05-12 22:23:57,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:57,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) about to wait for the following futures []
2022-05-12 22:23:57,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) done waiting for dependent futures
2022-05-12 22:23:57,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77070336}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 77070336}
2022-05-12 22:23:57,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:23:58,817 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:23:58,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:23:58,818 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 27262976}
2022-05-12 22:23:58,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:00,240 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:24:00,240 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:00,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:24:00,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:24:00,241 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 9437184}
2022-05-12 22:24:00,241 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:00,658 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:24:00,658 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:00,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:24:00,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:24:00,658 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 18612224}
2022-05-12 22:24:00,659 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:01,379 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34340864}) to executor  for transfer request: 0.
2022-05-12 22:24:01,380 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:01,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) about to wait for the following futures []
2022-05-12 22:24:01,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) done waiting for dependent futures
2022-05-12 22:24:01,380 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34340864}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 34340864}
2022-05-12 22:24:01,381 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:02,034 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:02,034 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:02,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:02,035 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:02,035 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 2621440}
2022-05-12 22:24:02,035 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:02,217 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:24:02,217 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:02,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:24:02,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:24:02,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 9699328}
2022-05-12 22:24:02,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:02,341 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:24:02,341 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:02,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:24:02,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:24:02,342 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 26214400}
2022-05-12 22:24:02,342 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:05,239 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:24:05,239 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:05,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:24:05,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:24:05,240 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 17563648}
2022-05-12 22:24:05,240 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:05,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:24:05,289 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:05,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:24:05,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:24:05,289 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 27525120}
2022-05-12 22:24:05,290 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:08,587 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:24:08,587 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:08,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:24:08,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:24:08,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 18087936}
2022-05-12 22:24:08,588 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:08,898 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77332480}) to executor  for transfer request: 0.
2022-05-12 22:24:08,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:08,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) about to wait for the following futures []
2022-05-12 22:24:08,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) done waiting for dependent futures
2022-05-12 22:24:08,899 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77332480}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 77332480}
2022-05-12 22:24:08,900 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:08,938 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:24:08,938 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:08,938 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:08,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:24:08,939 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:24:08,939 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 26476544}
2022-05-12 22:24:08,939 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:08,995 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:08,995 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:08,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:08,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:08,996 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 11010048}
2022-05-12 22:24:08,996 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51642368}) to executor  for transfer request: 0.
2022-05-12 22:24:09,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) about to wait for the following futures []
2022-05-12 22:24:09,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) done waiting for dependent futures
2022-05-12 22:24:09,867 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51642368}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 51642368}
2022-05-12 22:24:09,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:10,540 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:24:10,540 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:10,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:24:10,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:24:10,541 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9961472}
2022-05-12 22:24:10,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,339 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:12,340 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:12,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:12,340 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 2359296}
2022-05-12 22:24:12,341 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:24:13,942 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:24:13,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:24:13,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 18087936}
2022-05-12 22:24:13,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:14,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:24:14,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:14,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:24:14,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:24:14,496 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 9961472}
2022-05-12 22:24:14,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:15,672 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:24:15,672 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:15,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:24:15,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:24:15,673 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 2883584}
2022-05-12 22:24:15,673 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:16,719 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:24:16,719 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:16,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:24:16,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:24:16,720 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 1310720}
2022-05-12 22:24:16,720 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:17,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:24:17,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:17,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:24:17,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:24:17,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 27787264}
2022-05-12 22:24:17,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:17,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60030976}) to executor  for transfer request: 0.
2022-05-12 22:24:17,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:17,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) about to wait for the following futures []
2022-05-12 22:24:17,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) done waiting for dependent futures
2022-05-12 22:24:17,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60030976}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 60030976}
2022-05-12 22:24:17,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:19,017 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42991616}) to executor  for transfer request: 0.
2022-05-12 22:24:19,017 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:19,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) about to wait for the following futures []
2022-05-12 22:24:19,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) done waiting for dependent futures
2022-05-12 22:24:19,018 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42991616}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 42991616}
2022-05-12 22:24:19,018 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77594624}) to executor  for transfer request: 0.
2022-05-12 22:24:20,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) about to wait for the following futures []
2022-05-12 22:24:20,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) done waiting for dependent futures
2022-05-12 22:24:20,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77594624}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 77594624}
2022-05-12 22:24:20,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:23,012 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:23,012 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:23,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:23,013 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:23,013 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 18874368}
2022-05-12 22:24:23,013 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,271 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:24:24,272 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:24:24,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:24:24,272 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 11272192}
2022-05-12 22:24:24,272 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,846 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:24:24,846 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:24:24,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:24:24,847 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 9699328}
2022-05-12 22:24:24,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:25,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:24:25,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:25,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:24:25,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:24:25,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 18350080}
2022-05-12 22:24:25,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:25,702 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34603008}) to executor  for transfer request: 0.
2022-05-12 22:24:25,702 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:25,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) about to wait for the following futures []
2022-05-12 22:24:25,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) done waiting for dependent futures
2022-05-12 22:24:25,703 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34603008}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 34603008}
2022-05-12 22:24:25,703 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:25,804 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:24:25,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:25,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:24:25,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:24:25,805 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 3145728}
2022-05-12 22:24:25,805 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:27,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:27,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:27,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:27,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:27,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 2621440}
2022-05-12 22:24:27,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,848 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:24:28,848 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:24:28,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:24:28,848 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 10223616}
2022-05-12 22:24:28,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,931 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:24:28,931 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:24:28,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:24:28,931 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 28049408}
2022-05-12 22:24:28,932 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77856768}) to executor  for transfer request: 0.
2022-05-12 22:24:30,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) about to wait for the following futures []
2022-05-12 22:24:30,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) done waiting for dependent futures
2022-05-12 22:24:30,743 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77856768}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 77856768}
2022-05-12 22:24:30,744 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:31,508 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:24:31,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:31,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:24:31,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:24:31,509 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 10223616}
2022-05-12 22:24:31,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:35,232 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:24:35,232 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:35,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:24:35,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:24:35,233 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 26214400}
2022-05-12 22:24:35,233 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,069 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:24:36,070 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:24:36,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:24:36,071 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 11534336}
2022-05-12 22:24:36,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:24:36,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:24:36,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:24:36,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 786432}
2022-05-12 22:24:36,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,524 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:24:36,524 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:24:36,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:24:36,526 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 3407872}
2022-05-12 22:24:36,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51904512}) to executor  for transfer request: 0.
2022-05-12 22:24:36,683 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) about to wait for the following futures []
2022-05-12 22:24:36,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) done waiting for dependent futures
2022-05-12 22:24:36,684 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51904512}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 51904512}
2022-05-12 22:24:36,684 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:37,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67895296}) to executor  for transfer request: 0.
2022-05-12 22:24:37,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:37,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) about to wait for the following futures []
2022-05-12 22:24:37,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) done waiting for dependent futures
2022-05-12 22:24:37,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67895296}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 67895296}
2022-05-12 22:24:37,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:39,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:24:39,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:39,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:24:39,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:24:39,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 2883584}
2022-05-12 22:24:39,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:39,382 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60293120}) to executor  for transfer request: 0.
2022-05-12 22:24:39,383 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:39,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) about to wait for the following futures []
2022-05-12 22:24:39,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) done waiting for dependent futures
2022-05-12 22:24:39,383 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60293120}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 60293120}
2022-05-12 22:24:39,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:41,107 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:24:41,107 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:41,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:24:41,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:24:41,108 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 28311552}
2022-05-12 22:24:41,108 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:41,581 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:24:41,582 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:41,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:24:41,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:24:41,582 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 18612224}
2022-05-12 22:24:41,583 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,540 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43253760}) to executor  for transfer request: 0.
2022-05-12 22:24:42,540 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) about to wait for the following futures []
2022-05-12 22:24:42,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) done waiting for dependent futures
2022-05-12 22:24:42,541 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43253760}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 43253760}
2022-05-12 22:24:42,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:43,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:24:43,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:43,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:24:43,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:24:43,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 18350080}
2022-05-12 22:24:43,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:43,597 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:24:43,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:43,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:24:43,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:24:43,598 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 1572864}
2022-05-12 22:24:43,599 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:44,339 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:24:44,340 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:44,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:24:44,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:24:44,340 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 3670016}
2022-05-12 22:24:44,341 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:44,490 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78118912}) to executor  for transfer request: 0.
2022-05-12 22:24:44,490 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:44,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) about to wait for the following futures []
2022-05-12 22:24:44,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) done waiting for dependent futures
2022-05-12 22:24:44,490 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78118912}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 78118912}
2022-05-12 22:24:44,491 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:44,784 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:44,785 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:44,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:44,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:44,785 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 10485760}
2022-05-12 22:24:44,785 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:45,550 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:45,551 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:45,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:45,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:45,551 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 19136512}
2022-05-12 22:24:45,551 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:45,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:45,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:45,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:45,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:45,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 10485760}
2022-05-12 22:24:45,679 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:45,863 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34865152}) to executor  for transfer request: 0.
2022-05-12 22:24:45,863 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:45,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) about to wait for the following futures []
2022-05-12 22:24:45,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) done waiting for dependent futures
2022-05-12 22:24:45,864 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34865152}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 34865152}
2022-05-12 22:24:45,864 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:48,784 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:24:48,784 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:48,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:24:48,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:24:48,785 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 11796480}
2022-05-12 22:24:48,785 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:51,609 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:24:51,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:51,609 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:51,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:24:51,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:24:51,610 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 26476544}
2022-05-12 22:24:51,610 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:51,899 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:24:51,899 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:51,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:24:51,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:24:51,900 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 28573696}
2022-05-12 22:24:51,900 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,246 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68157440}) to executor  for transfer request: 0.
2022-05-12 22:24:52,246 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) about to wait for the following futures []
2022-05-12 22:24:52,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) done waiting for dependent futures
2022-05-12 22:24:52,247 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68157440}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 68157440}
2022-05-12 22:24:52,247 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:24:52,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:24:52,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:24:52,549 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 3145728}
2022-05-12 22:24:52,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:24:53,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:24:53,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:24:53,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 3932160}
2022-05-12 22:24:53,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,143 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:58,143 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:58,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:58,144 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 18874368}
2022-05-12 22:24:58,144 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78381056}) to executor  for transfer request: 0.
2022-05-12 22:24:58,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) about to wait for the following futures []
2022-05-12 22:24:58,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) done waiting for dependent futures
2022-05-12 22:24:58,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78381056}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 78381056}
2022-05-12 22:24:58,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:24:58,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:24:58,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:24:58,742 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 9961472}
2022-05-12 22:24:58,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:59,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:59,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:59,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:59,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:59,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 10747904}
2022-05-12 22:24:59,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:00,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:00,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:00,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:00,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:00,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 12058624}
2022-05-12 22:25:00,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:01,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:25:01,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:01,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:25:01,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:25:01,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 10747904}
2022-05-12 22:25:01,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,232 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:25:02,232 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,232 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:25:02,232 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:25:02,233 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 28835840}
2022-05-12 22:25:02,233 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:05,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:25:05,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:05,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:25:05,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:25:05,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 19398656}
2022-05-12 22:25:05,929 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:06,675 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:25:06,675 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:06,676 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:25:06,676 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:25:06,676 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 17825792}
2022-05-12 22:25:06,676 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:06,996 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43515904}) to executor  for transfer request: 0.
2022-05-12 22:25:06,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:06,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) about to wait for the following futures []
2022-05-12 22:25:06,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) done waiting for dependent futures
2022-05-12 22:25:06,997 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43515904}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 43515904}
2022-05-12 22:25:06,997 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:07,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:25:07,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:07,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:25:07,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:25:07,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 18612224}
2022-05-12 22:25:07,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:08,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:08,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:08,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:08,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:08,887 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 3407872}
2022-05-12 22:25:08,887 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,080 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78643200}) to executor  for transfer request: 0.
2022-05-12 22:25:09,080 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) about to wait for the following futures []
2022-05-12 22:25:09,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) done waiting for dependent futures
2022-05-12 22:25:09,081 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78643200}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 78643200}
2022-05-12 22:25:09,082 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,354 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:25:09,355 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,355 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:25:09,355 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:25:09,355 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 1835008}
2022-05-12 22:25:09,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,670 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:25:09,670 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:25:09,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:25:09,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 4194304}
2022-05-12 22:25:09,671 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35127296}) to executor  for transfer request: 0.
2022-05-12 22:25:12,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) about to wait for the following futures []
2022-05-12 22:25:12,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) done waiting for dependent futures
2022-05-12 22:25:12,998 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35127296}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 35127296}
2022-05-12 22:25:12,998 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:14,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:25:14,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:14,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:25:14,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:25:14,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 29097984}
2022-05-12 22:25:14,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:15,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:25:15,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:15,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:25:15,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:25:15,424 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 11010048}
2022-05-12 22:25:15,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:15,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68419584}) to executor  for transfer request: 0.
2022-05-12 22:25:15,549 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:15,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) about to wait for the following futures []
2022-05-12 22:25:15,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) done waiting for dependent futures
2022-05-12 22:25:15,549 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68419584}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 68419584}
2022-05-12 22:25:15,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:16,861 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:25:16,861 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:16,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:25:16,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:25:16,862 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 19136512}
2022-05-12 22:25:16,862 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:16,889 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:16,889 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:16,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:16,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:16,890 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 12320768}
2022-05-12 22:25:16,890 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,124 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60555264}) to executor  for transfer request: 0.
2022-05-12 22:25:17,125 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) about to wait for the following futures []
2022-05-12 22:25:17,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) done waiting for dependent futures
2022-05-12 22:25:17,125 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60555264}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 60555264}
2022-05-12 22:25:17,126 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:22,432 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:25:22,432 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:22,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:25:22,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:25:22,433 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 29360128}
2022-05-12 22:25:22,433 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,798 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:25:24,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:25:24,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:25:24,799 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 19660800}
2022-05-12 22:25:24,799 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:25,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:25:25,674 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:25,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:25:25,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:25:25,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 11010048}
2022-05-12 22:25:25,675 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:26,759 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:25:26,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:26,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:25:26,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:25:26,760 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 19398656}
2022-05-12 22:25:26,760 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:27,084 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78905344}) to executor  for transfer request: 0.
2022-05-12 22:25:27,085 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:27,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) about to wait for the following futures []
2022-05-12 22:25:27,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) done waiting for dependent futures
2022-05-12 22:25:27,085 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78905344}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 78905344}
2022-05-12 22:25:27,086 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:27,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:25:27,792 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:27,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:25:27,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:25:27,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 3670016}
2022-05-12 22:25:27,793 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:29,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:25:29,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:29,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:25:29,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:25:29,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 29622272}
2022-05-12 22:25:29,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:29,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:25:29,987 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:29,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:25:29,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:25:29,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 18874368}
2022-05-12 22:25:29,988 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:30,130 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:30,130 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:30,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:30,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:30,131 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 12582912}
2022-05-12 22:25:30,131 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:34,783 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:25:34,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:34,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:25:34,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:25:34,784 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 2097152}
2022-05-12 22:25:34,784 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:35,815 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:25:35,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:35,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:25:35,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:25:35,816 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 29884416}
2022-05-12 22:25:35,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:35,906 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79167488}) to executor  for transfer request: 0.
2022-05-12 22:25:35,906 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:35,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) about to wait for the following futures []
2022-05-12 22:25:35,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) done waiting for dependent futures
2022-05-12 22:25:35,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79167488}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 79167488}
2022-05-12 22:25:35,907 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:38,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:25:38,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:38,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:25:38,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:25:38,360 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 11272192}
2022-05-12 22:25:38,360 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:39,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:25:39,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:39,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:25:39,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:25:39,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 4456448}
2022-05-12 22:25:39,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:40,181 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:25:40,181 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:40,181 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:25:40,181 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:25:40,182 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 19660800}
2022-05-12 22:25:40,182 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:40,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:25:40,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:40,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:25:40,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:25:40,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 11272192}
2022-05-12 22:25:40,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:40,683 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35389440}) to executor  for transfer request: 0.
2022-05-12 22:25:40,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:40,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) about to wait for the following futures []
2022-05-12 22:25:40,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) done waiting for dependent futures
2022-05-12 22:25:40,684 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35389440}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 35389440}
2022-05-12 22:25:40,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:41,286 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68681728}) to executor  for transfer request: 0.
2022-05-12 22:25:41,286 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:41,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) about to wait for the following futures []
2022-05-12 22:25:41,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) done waiting for dependent futures
2022-05-12 22:25:41,287 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68681728}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 68681728}
2022-05-12 22:25:41,287 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:41,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:25:41,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:41,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:25:41,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:25:41,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 3932160}
2022-05-12 22:25:41,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:25:44,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:25:44,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:25:44,069 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 30146560}
2022-05-12 22:25:44,070 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:45,152 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:25:45,152 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:45,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:25:45,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:25:45,153 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 10223616}
2022-05-12 22:25:45,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:45,712 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:25:45,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:45,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:25:45,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:25:45,713 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 12845056}
2022-05-12 22:25:45,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:46,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60817408}) to executor  for transfer request: 0.
2022-05-12 22:25:46,834 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:46,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) about to wait for the following futures []
2022-05-12 22:25:46,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) done waiting for dependent futures
2022-05-12 22:25:46,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60817408}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 60817408}
2022-05-12 22:25:46,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:47,988 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30408704}) to executor  for transfer request: 0.
2022-05-12 22:25:47,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:47,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) about to wait for the following futures []
2022-05-12 22:25:47,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) done waiting for dependent futures
2022-05-12 22:25:47,989 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30408704}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 30408704}
2022-05-12 22:25:47,989 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:48,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:25:48,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:48,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:25:48,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:25:48,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 19922944}
2022-05-12 22:25:48,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:25:50,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:25:50,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:25:50,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 11534336}
2022-05-12 22:25:50,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:51,656 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52166656}) to executor  for transfer request: 0.
2022-05-12 22:25:51,657 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:51,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) about to wait for the following futures []
2022-05-12 22:25:51,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) done waiting for dependent futures
2022-05-12 22:25:51,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52166656}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 52166656}
2022-05-12 22:25:51,658 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:51,940 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79429632}) to executor  for transfer request: 0.
2022-05-12 22:25:51,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:51,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) about to wait for the following futures []
2022-05-12 22:25:51,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) done waiting for dependent futures
2022-05-12 22:25:51,941 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79429632}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 79429632}
2022-05-12 22:25:51,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:53,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:25:53,470 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:53,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:25:53,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:25:53,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 4194304}
2022-05-12 22:25:53,472 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:56,143 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30670848}) to executor  for transfer request: 0.
2022-05-12 22:25:56,143 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:56,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) about to wait for the following futures []
2022-05-12 22:25:56,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) done waiting for dependent futures
2022-05-12 22:25:56,144 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30670848}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 30670848}
2022-05-12 22:25:56,144 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:56,439 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:25:56,440 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:56,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:25:56,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:25:56,440 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 2359296}
2022-05-12 22:25:56,441 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:56,842 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:25:56,842 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:56,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:25:56,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:25:56,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 11534336}
2022-05-12 22:25:56,843 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:58,240 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:25:58,240 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:58,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:25:58,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:25:58,240 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 13107200}
2022-05-12 22:25:58,241 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:59,672 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:25:59,672 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:59,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:25:59,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:25:59,673 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 19136512}
2022-05-12 22:25:59,673 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:00,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:00,323 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:00,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:00,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:00,324 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 4718592}
2022-05-12 22:26:00,324 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:03,373 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79691776}) to executor  for transfer request: 0.
2022-05-12 22:26:03,373 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:03,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) about to wait for the following futures []
2022-05-12 22:26:03,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) done waiting for dependent futures
2022-05-12 22:26:03,374 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79691776}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 79691776}
2022-05-12 22:26:03,374 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,625 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:26:04,626 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:26:04,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:26:04,626 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 11796480}
2022-05-12 22:26:04,627 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:05,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30932992}) to executor  for transfer request: 0.
2022-05-12 22:26:05,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:05,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) about to wait for the following futures []
2022-05-12 22:26:05,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) done waiting for dependent futures
2022-05-12 22:26:05,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30932992}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 30932992}
2022-05-12 22:26:05,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:05,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:26:05,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:05,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:26:05,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:26:05,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 20185088}
2022-05-12 22:26:05,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:06,498 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68943872}) to executor  for transfer request: 0.
2022-05-12 22:26:06,498 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:06,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) about to wait for the following futures []
2022-05-12 22:26:06,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) done waiting for dependent futures
2022-05-12 22:26:06,499 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68943872}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 68943872}
2022-05-12 22:26:06,499 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35651584}) to executor  for transfer request: 0.
2022-05-12 22:26:08,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) about to wait for the following futures []
2022-05-12 22:26:08,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) done waiting for dependent futures
2022-05-12 22:26:08,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35651584}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 35651584}
2022-05-12 22:26:08,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,205 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:26:09,205 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:26:09,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:26:09,206 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 4456448}
2022-05-12 22:26:09,207 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:11,822 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:26:11,822 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:11,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:26:11,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:26:11,823 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 11796480}
2022-05-12 22:26:11,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:13,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:13,105 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:13,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:13,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:13,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 13369344}
2022-05-12 22:26:13,106 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:14,713 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61079552}) to executor  for transfer request: 0.
2022-05-12 22:26:14,713 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:14,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) about to wait for the following futures []
2022-05-12 22:26:14,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) done waiting for dependent futures
2022-05-12 22:26:14,714 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61079552}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 61079552}
2022-05-12 22:26:14,714 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:14,745 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31195136}) to executor  for transfer request: 0.
2022-05-12 22:26:14,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:14,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) about to wait for the following futures []
2022-05-12 22:26:14,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) done waiting for dependent futures
2022-05-12 22:26:14,746 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31195136}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 31195136}
2022-05-12 22:26:14,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:15,053 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:26:15,053 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:15,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:26:15,054 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:26:15,054 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 10485760}
2022-05-12 22:26:15,054 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:15,110 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:26:15,110 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:15,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:26:15,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:26:15,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 19922944}
2022-05-12 22:26:15,111 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:16,338 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:26:16,338 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:16,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:26:16,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:26:16,338 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 12058624}
2022-05-12 22:26:16,339 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:16,817 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79953920}) to executor  for transfer request: 0.
2022-05-12 22:26:16,817 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:16,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) about to wait for the following futures []
2022-05-12 22:26:16,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) done waiting for dependent futures
2022-05-12 22:26:16,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79953920}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 79953920}
2022-05-12 22:26:16,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,523 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:20,523 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:20,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:20,524 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 4718592}
2022-05-12 22:26:20,524 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:22,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:26:22,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:22,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:26:22,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:26:22,163 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 2621440}
2022-05-12 22:26:22,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:22,606 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:26:22,606 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:22,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:26:22,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:26:22,607 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 20447232}
2022-05-12 22:26:22,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:23,633 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35913728}) to executor  for transfer request: 0.
2022-05-12 22:26:23,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:23,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) about to wait for the following futures []
2022-05-12 22:26:23,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) done waiting for dependent futures
2022-05-12 22:26:23,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35913728}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 35913728}
2022-05-12 22:26:23,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:24,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31457280}) to executor  for transfer request: 0.
2022-05-12 22:26:24,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:24,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) about to wait for the following futures []
2022-05-12 22:26:24,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) done waiting for dependent futures
2022-05-12 22:26:24,005 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31457280}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 31457280}
2022-05-12 22:26:24,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:24,350 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69206016}) to executor  for transfer request: 0.
2022-05-12 22:26:24,350 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:24,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) about to wait for the following futures []
2022-05-12 22:26:24,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) done waiting for dependent futures
2022-05-12 22:26:24,351 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69206016}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 69206016}
2022-05-12 22:26:24,351 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:24,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:26:24,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:24,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:26:24,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:26:24,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 4980736}
2022-05-12 22:26:24,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:25,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:26:25,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:25,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:26:25,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:26:25,554 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 18087936}
2022-05-12 22:26:25,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:26:27,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:26:27,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:26:27,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 12058624}
2022-05-12 22:26:27,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,851 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80216064}) to executor  for transfer request: 0.
2022-05-12 22:26:27,851 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) about to wait for the following futures []
2022-05-12 22:26:27,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) done waiting for dependent futures
2022-05-12 22:26:27,852 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80216064}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 80216064}
2022-05-12 22:26:27,852 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:28,304 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:28,304 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:28,304 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:28,304 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:28,305 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 13631488}
2022-05-12 22:26:28,305 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,130 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:26:30,130 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:26:30,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:26:30,131 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 20185088}
2022-05-12 22:26:30,131 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,198 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31719424}) to executor  for transfer request: 0.
2022-05-12 22:26:31,199 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,199 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) about to wait for the following futures []
2022-05-12 22:26:31,199 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) done waiting for dependent futures
2022-05-12 22:26:31,199 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31719424}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 31719424}
2022-05-12 22:26:31,199 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,918 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:26:31,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:26:31,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:26:31,919 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 4980736}
2022-05-12 22:26:31,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,603 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:26:32,603 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:26:32,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:26:32,604 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 12320768}
2022-05-12 22:26:32,604 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80478208}) to executor  for transfer request: 0.
2022-05-12 22:26:39,138 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) about to wait for the following futures []
2022-05-12 22:26:39,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) done waiting for dependent futures
2022-05-12 22:26:39,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80478208}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 80478208}
2022-05-12 22:26:39,139 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,035 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69468160}) to executor  for transfer request: 0.
2022-05-12 22:26:40,035 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,035 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) about to wait for the following futures []
2022-05-12 22:26:40,035 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) done waiting for dependent futures
2022-05-12 22:26:40,036 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69468160}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 69468160}
2022-05-12 22:26:40,036 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,141 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31981568}) to executor  for transfer request: 0.
2022-05-12 22:26:40,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) about to wait for the following futures []
2022-05-12 22:26:40,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) done waiting for dependent futures
2022-05-12 22:26:40,142 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31981568}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 31981568}
2022-05-12 22:26:40,143 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,905 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:26:40,906 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:26:40,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:26:40,906 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 19398656}
2022-05-12 22:26:40,907 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:26:41,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:26:41,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:26:41,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 12320768}
2022-05-12 22:26:41,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:26:41,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:26:41,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:26:41,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 12582912}
2022-05-12 22:26:41,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:42,745 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:26:42,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:42,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:26:42,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:26:42,746 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 20447232}
2022-05-12 22:26:42,746 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:43,286 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:26:43,287 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:43,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:26:43,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:26:43,287 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 20709376}
2022-05-12 22:26:43,288 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:43,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:26:43,297 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:43,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:26:43,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:26:43,298 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 5242880}
2022-05-12 22:26:43,298 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:43,788 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:26:43,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:43,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:26:43,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:26:43,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 5242880}
2022-05-12 22:26:43,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:44,987 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:44,987 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:44,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:44,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:44,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 13893632}
2022-05-12 22:26:44,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:45,873 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:26:45,873 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:45,873 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:26:45,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:26:45,874 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 10747904}
2022-05-12 22:26:45,874 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:47,129 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36175872}) to executor  for transfer request: 0.
2022-05-12 22:26:47,129 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:47,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) about to wait for the following futures []
2022-05-12 22:26:47,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) done waiting for dependent futures
2022-05-12 22:26:47,130 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36175872}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 36175872}
2022-05-12 22:26:47,130 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:48,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80740352}) to executor  for transfer request: 0.
2022-05-12 22:26:48,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:48,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) about to wait for the following futures []
2022-05-12 22:26:48,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) done waiting for dependent futures
2022-05-12 22:26:48,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80740352}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 80740352}
2022-05-12 22:26:48,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:48,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32243712}) to executor  for transfer request: 0.
2022-05-12 22:26:48,990 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:48,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) about to wait for the following futures []
2022-05-12 22:26:48,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) done waiting for dependent futures
2022-05-12 22:26:48,991 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32243712}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 32243712}
2022-05-12 22:26:48,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:49,619 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:26:49,619 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:49,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:26:49,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:26:49,620 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 2883584}
2022-05-12 22:26:49,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:51,559 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:26:51,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:51,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:26:51,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:26:51,560 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 12845056}
2022-05-12 22:26:51,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:54,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69730304}) to executor  for transfer request: 0.
2022-05-12 22:26:54,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:54,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) about to wait for the following futures []
2022-05-12 22:26:54,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) done waiting for dependent futures
2022-05-12 22:26:54,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69730304}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 69730304}
2022-05-12 22:26:54,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:55,525 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:26:55,525 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:55,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:26:55,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:26:55,525 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 20709376}
2022-05-12 22:26:55,525 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:55,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:26:55,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:55,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:26:55,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:26:55,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 14155776}
2022-05-12 22:26:55,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:56,510 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:26:56,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:56,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:26:56,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:26:56,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 5505024}
2022-05-12 22:26:56,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:56,696 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:26:56,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:56,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:26:56,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:26:56,697 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 12582912}
2022-05-12 22:26:56,698 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:57,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32505856}) to executor  for transfer request: 0.
2022-05-12 22:26:57,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:57,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) about to wait for the following futures []
2022-05-12 22:26:57,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) done waiting for dependent futures
2022-05-12 22:26:57,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32505856}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 32505856}
2022-05-12 22:26:57,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:57,534 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:26:57,534 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:57,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:26:57,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:26:57,534 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 5505024}
2022-05-12 22:26:57,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:58,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81002496}) to executor  for transfer request: 0.
2022-05-12 22:26:58,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:58,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) about to wait for the following futures []
2022-05-12 22:26:58,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) done waiting for dependent futures
2022-05-12 22:26:58,927 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81002496}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 81002496}
2022-05-12 22:26:58,927 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:59,540 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:26:59,540 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:59,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:26:59,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:26:59,541 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 20971520}
2022-05-12 22:26:59,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:06,748 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43778048}) to executor  for transfer request: 0.
2022-05-12 22:27:06,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:06,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) about to wait for the following futures []
2022-05-12 22:27:06,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) done waiting for dependent futures
2022-05-12 22:27:06,749 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43778048}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 43778048}
2022-05-12 22:27:06,749 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:07,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32768000}) to executor  for transfer request: 0.
2022-05-12 22:27:07,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:07,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) about to wait for the following futures []
2022-05-12 22:27:07,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) done waiting for dependent futures
2022-05-12 22:27:07,005 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32768000}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 32768000}
2022-05-12 22:27:07,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:07,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:27:07,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:07,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:27:07,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:27:07,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 13107200}
2022-05-12 22:27:07,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:08,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36438016}) to executor  for transfer request: 0.
2022-05-12 22:27:08,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:08,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) about to wait for the following futures []
2022-05-12 22:27:08,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) done waiting for dependent futures
2022-05-12 22:27:08,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36438016}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 36438016}
2022-05-12 22:27:08,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:08,373 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69992448}) to executor  for transfer request: 0.
2022-05-12 22:27:08,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:08,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) about to wait for the following futures []
2022-05-12 22:27:08,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) done waiting for dependent futures
2022-05-12 22:27:08,374 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69992448}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 69992448}
2022-05-12 22:27:08,374 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:10,552 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:27:10,552 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:10,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:27:10,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:27:10,553 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 5767168}
2022-05-12 22:27:10,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:10,870 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:27:10,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:10,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:27:10,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:27:10,871 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 5767168}
2022-05-12 22:27:10,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:11,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81264640}) to executor  for transfer request: 0.
2022-05-12 22:27:11,643 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:11,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) about to wait for the following futures []
2022-05-12 22:27:11,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) done waiting for dependent futures
2022-05-12 22:27:11,643 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81264640}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 81264640}
2022-05-12 22:27:11,643 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:11,899 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:27:11,899 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:11,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:27:11,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:27:11,899 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 20971520}
2022-05-12 22:27:11,899 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,891 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:27:13,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:27:13,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:27:13,891 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 12845056}
2022-05-12 22:27:13,893 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:15,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33030144}) to executor  for transfer request: 0.
2022-05-12 22:27:15,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:15,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) about to wait for the following futures []
2022-05-12 22:27:15,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) done waiting for dependent futures
2022-05-12 22:27:15,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33030144}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 33030144}
2022-05-12 22:27:15,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:15,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:27:15,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:15,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:27:15,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:27:15,476 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 3145728}
2022-05-12 22:27:15,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,459 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:27:17,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:27:17,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:27:17,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 21233664}
2022-05-12 22:27:17,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:19,435 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:27:19,435 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:19,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:27:19,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:27:19,436 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 13369344}
2022-05-12 22:27:19,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:19,866 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61341696}) to executor  for transfer request: 0.
2022-05-12 22:27:19,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:19,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) about to wait for the following futures []
2022-05-12 22:27:19,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) done waiting for dependent futures
2022-05-12 22:27:19,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61341696}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 61341696}
2022-05-12 22:27:19,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:20,206 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81526784}) to executor  for transfer request: 0.
2022-05-12 22:27:20,206 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:20,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) about to wait for the following futures []
2022-05-12 22:27:20,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) done waiting for dependent futures
2022-05-12 22:27:20,207 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81526784}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 81526784}
2022-05-12 22:27:20,208 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:22,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33292288}) to executor  for transfer request: 0.
2022-05-12 22:27:22,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:22,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:22,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) about to wait for the following futures []
2022-05-12 22:27:22,021 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) about to wait for the following futures []
2022-05-12 22:27:22,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) done waiting for dependent futures
2022-05-12 22:27:22,021 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) done waiting for dependent futures
2022-05-12 22:27:22,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33292288}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 33292288}
2022-05-12 22:27:22,022 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=83886080-92274687'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 83886080, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:27:22,022 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:22,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:22,022 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:22,022 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:22,022 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:22,022 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:22,023 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:22,023 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:27:22,023 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:27:22,023 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:22,023 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:22,023 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=83886080-92274687', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:27:22,024 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:22,024 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:27:22,024 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:22,024 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:22,024 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:27:22,024 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:27:22,024 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:27:22,024 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:27:22,025 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:27:22,025 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=83886080-92274687
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222722Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:27:22,025 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222722Z
20220512/eu-central-1/s3/aws4_request
4eacdee669a82d76bbe64d3012665b5cebc407d3ba39fc27b0ead4517838651d
2022-05-12 22:27:22,025 botocore.auth DEBUG    Signature:
26d35d956a92e83de24b8e95933cdb1e698958cb1b979b11e1253978df4debb9
2022-05-12 22:27:22,025 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:22,025 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:22,026 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:27:22,026 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:27:22,218 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:27:22,219 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'zsoNJsRsO2gmEAUtJMvd5mnRoq4/+TtFu5MnlRawvpXpoYdXqEeN8Vq9PHd1ktg3SzGsT0UNqYY=', 'x-amz-request-id': 'M13TX8BAZ8B1HS38', 'Date': 'Thu, 12 May 2022 22:27:23 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 83886080-92274687/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:27:22,219 botocore.parsers DEBUG    Response body:

2022-05-12 22:27:22,220 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:27:22,220 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:27:22,220 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:27:22,736 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:27:22,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:22,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:27:22,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:27:22,737 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 18350080}
2022-05-12 22:27:22,737 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,169 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:27:24,170 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:24,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:27:24,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:27:24,170 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 6029312}
2022-05-12 22:27:24,171 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,494 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:27:24,494 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:24,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:27:24,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:27:24,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 14417920}
2022-05-12 22:27:24,495 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52428800}) to executor  for transfer request: 0.
2022-05-12 22:27:25,318 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) about to wait for the following futures []
2022-05-12 22:27:25,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) done waiting for dependent futures
2022-05-12 22:27:25,319 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52428800}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 52428800}
2022-05-12 22:27:25,319 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:27:25,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:27:25,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:27:25,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 6029312}
2022-05-12 22:27:25,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:26,558 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:27:26,558 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:26,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:27:26,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:27:26,559 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 21233664}
2022-05-12 22:27:26,559 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,112 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:27:28,112 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:27:28,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:27:28,113 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 11010048}
2022-05-12 22:27:28,113 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,430 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70254592}) to executor  for transfer request: 0.
2022-05-12 22:27:28,430 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) about to wait for the following futures []
2022-05-12 22:27:28,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) done waiting for dependent futures
2022-05-12 22:27:28,431 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70254592}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 70254592}
2022-05-12 22:27:28,431 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,976 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:27:28,976 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:27:28,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:27:28,977 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 13631488}
2022-05-12 22:27:28,977 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:30,074 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:27:30,074 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:30,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:27:30,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:27:30,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 13107200}
2022-05-12 22:27:30,075 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:30,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36700160}) to executor  for transfer request: 0.
2022-05-12 22:27:30,370 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:30,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) about to wait for the following futures []
2022-05-12 22:27:30,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) done waiting for dependent futures
2022-05-12 22:27:30,371 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36700160}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 36700160}
2022-05-12 22:27:30,371 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:30,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81788928}) to executor  for transfer request: 0.
2022-05-12 22:27:30,537 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:30,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) about to wait for the following futures []
2022-05-12 22:27:30,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) done waiting for dependent futures
2022-05-12 22:27:30,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81788928}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 81788928}
2022-05-12 22:27:30,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,354 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:27:34,354 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:27:34,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:27:34,354 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 21495808}
2022-05-12 22:27:34,355 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:35,015 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:27:35,015 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:35,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:27:35,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:27:35,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 6291456}
2022-05-12 22:27:35,016 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:35,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83886080}) to executor  for transfer request: 0.
2022-05-12 22:27:35,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:35,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) about to wait for the following futures []
2022-05-12 22:27:35,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) done waiting for dependent futures
2022-05-12 22:27:35,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83886080}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 83886080}
2022-05-12 22:27:35,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:27:37,053 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:27:37,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:27:37,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 21495808}
2022-05-12 22:27:37,054 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,929 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:27:37,929 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:27:37,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:27:37,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 6291456}
2022-05-12 22:27:37,930 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:39,698 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82051072}) to executor  for transfer request: 0.
2022-05-12 22:27:39,698 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:39,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) about to wait for the following futures []
2022-05-12 22:27:39,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) done waiting for dependent futures
2022-05-12 22:27:39,699 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82051072}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 82051072}
2022-05-12 22:27:39,699 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,311 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:27:40,312 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:27:40,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:27:40,312 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 13369344}
2022-05-12 22:27:40,313 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,368 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:27:40,368 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:27:40,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:27:40,369 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 19660800}
2022-05-12 22:27:40,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:42,382 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:27:42,382 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:42,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:27:42,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:27:42,383 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 13893632}
2022-05-12 22:27:42,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:43,331 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70516736}) to executor  for transfer request: 0.
2022-05-12 22:27:43,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:43,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) about to wait for the following futures []
2022-05-12 22:27:43,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) done waiting for dependent futures
2022-05-12 22:27:43,331 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70516736}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 70516736}
2022-05-12 22:27:43,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:43,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84148224}) to executor  for transfer request: 0.
2022-05-12 22:27:43,971 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:43,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) about to wait for the following futures []
2022-05-12 22:27:43,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) done waiting for dependent futures
2022-05-12 22:27:43,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84148224}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 84148224}
2022-05-12 22:27:43,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:44,451 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:27:44,451 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:44,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:27:44,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:27:44,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 3407872}
2022-05-12 22:27:44,452 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:47,061 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:27:47,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:47,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:27:47,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:27:47,062 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 14680064}
2022-05-12 22:27:47,062 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:47,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:27:47,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:47,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:27:47,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:27:47,619 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 21757952}
2022-05-12 22:27:47,619 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:48,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:27:48,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:48,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:27:48,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:27:48,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 6553600}
2022-05-12 22:27:48,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:48,691 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82313216}) to executor  for transfer request: 0.
2022-05-12 22:27:48,691 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:48,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) about to wait for the following futures []
2022-05-12 22:27:48,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) done waiting for dependent futures
2022-05-12 22:27:48,692 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82313216}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 82313216}
2022-05-12 22:27:48,692 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:49,360 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36962304}) to executor  for transfer request: 0.
2022-05-12 22:27:49,360 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:49,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) about to wait for the following futures []
2022-05-12 22:27:49,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) done waiting for dependent futures
2022-05-12 22:27:49,361 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36962304}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 36962304}
2022-05-12 22:27:49,361 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:51,349 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:27:51,349 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:51,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:27:51,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:27:51,350 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 6553600}
2022-05-12 22:27:51,350 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:52,660 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:27:52,660 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:52,661 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:27:52,661 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:27:52,661 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 14155776}
2022-05-12 22:27:52,661 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:53,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84410368}) to executor  for transfer request: 0.
2022-05-12 22:27:53,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:53,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) about to wait for the following futures []
2022-05-12 22:27:53,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) done waiting for dependent futures
2022-05-12 22:27:53,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84410368}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 84410368}
2022-05-12 22:27:53,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:54,763 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:27:54,763 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:54,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:27:54,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:27:54,764 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 13631488}
2022-05-12 22:27:54,764 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,433 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:27:55,433 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:27:55,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:27:55,433 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 21757952}
2022-05-12 22:27:55,433 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:27:55,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:27:55,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:27:55,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 1048576}
2022-05-12 22:27:55,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:58,837 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82575360}) to executor  for transfer request: 0.
2022-05-12 22:27:58,838 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:58,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) about to wait for the following futures []
2022-05-12 22:27:58,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) done waiting for dependent futures
2022-05-12 22:27:58,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82575360}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 82575360}
2022-05-12 22:27:58,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:59,006 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:27:59,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:59,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:27:59,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:27:59,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 6815744}
2022-05-12 22:27:59,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:59,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70778880}) to executor  for transfer request: 0.
2022-05-12 22:27:59,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:59,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) about to wait for the following futures []
2022-05-12 22:27:59,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) done waiting for dependent futures
2022-05-12 22:27:59,743 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70778880}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 70778880}
2022-05-12 22:27:59,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:00,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:28:00,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:00,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:28:00,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:28:00,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 3670016}
2022-05-12 22:28:00,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:02,091 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84672512}) to executor  for transfer request: 0.
2022-05-12 22:28:02,092 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:02,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) about to wait for the following futures []
2022-05-12 22:28:02,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) done waiting for dependent futures
2022-05-12 22:28:02,092 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84672512}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 84672512}
2022-05-12 22:28:02,092 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:02,736 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:28:02,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:02,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:28:02,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:28:02,737 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 14417920}
2022-05-12 22:28:02,738 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:03,110 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52690944}) to executor  for transfer request: 0.
2022-05-12 22:28:03,110 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:03,111 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) about to wait for the following futures []
2022-05-12 22:28:03,111 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) done waiting for dependent futures
2022-05-12 22:28:03,111 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52690944}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 52690944}
2022-05-12 22:28:03,111 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:03,941 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:28:03,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:03,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:28:03,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:28:03,941 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 6815744}
2022-05-12 22:28:03,942 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:04,850 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37224448}) to executor  for transfer request: 0.
2022-05-12 22:28:04,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:04,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) about to wait for the following futures []
2022-05-12 22:28:04,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) done waiting for dependent futures
2022-05-12 22:28:04,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37224448}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 37224448}
2022-05-12 22:28:04,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:06,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:28:06,195 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:06,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:28:06,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:28:06,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 22020096}
2022-05-12 22:28:06,196 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:07,227 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82837504}) to executor  for transfer request: 0.
2022-05-12 22:28:07,228 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:07,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) about to wait for the following futures []
2022-05-12 22:28:07,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) done waiting for dependent futures
2022-05-12 22:28:07,228 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82837504}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 82837504}
2022-05-12 22:28:07,229 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:28:08,356 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:08,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:28:08,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:28:08,356 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 14942208}
2022-05-12 22:28:08,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,777 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:28:08,777 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:08,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:28:08,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:28:08,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 11272192}
2022-05-12 22:28:08,778 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:10,962 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84934656}) to executor  for transfer request: 0.
2022-05-12 22:28:10,962 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:10,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) about to wait for the following futures []
2022-05-12 22:28:10,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) done waiting for dependent futures
2022-05-12 22:28:10,962 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84934656}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 84934656}
2022-05-12 22:28:10,963 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:11,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:28:11,533 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:11,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:28:11,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:28:11,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 14680064}
2022-05-12 22:28:11,534 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,202 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:28:12,203 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:12,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:28:12,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:28:12,203 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 13893632}
2022-05-12 22:28:12,203 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:28:12,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:12,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:28:12,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:28:12,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 22020096}
2022-05-12 22:28:12,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:13,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:28:13,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:13,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:28:13,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:28:13,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 7077888}
2022-05-12 22:28:13,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:14,061 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:28:14,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:14,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:28:14,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:28:14,062 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 18612224}
2022-05-12 22:28:14,062 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:28:16,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:28:16,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:28:16,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 19922944}
2022-05-12 22:28:16,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83099648}) to executor  for transfer request: 0.
2022-05-12 22:28:16,148 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) about to wait for the following futures []
2022-05-12 22:28:16,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) done waiting for dependent futures
2022-05-12 22:28:16,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83099648}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 83099648}
2022-05-12 22:28:16,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:17,000 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:28:17,001 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:17,001 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:28:17,001 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:28:17,001 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 7077888}
2022-05-12 22:28:17,002 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:17,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71041024}) to executor  for transfer request: 0.
2022-05-12 22:28:17,595 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:17,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) about to wait for the following futures []
2022-05-12 22:28:17,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) done waiting for dependent futures
2022-05-12 22:28:17,595 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71041024}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 71041024}
2022-05-12 22:28:17,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61603840}) to executor  for transfer request: 0.
2022-05-12 22:28:19,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) about to wait for the following futures []
2022-05-12 22:28:19,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) done waiting for dependent futures
2022-05-12 22:28:19,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61603840}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 61603840}
2022-05-12 22:28:19,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:28:19,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:28:19,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:28:19,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 14155776}
2022-05-12 22:28:19,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52953088}) to executor  for transfer request: 0.
2022-05-12 22:28:19,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) about to wait for the following futures []
2022-05-12 22:28:19,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) done waiting for dependent futures
2022-05-12 22:28:19,859 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52953088}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 52953088}
2022-05-12 22:28:19,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:20,321 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:28:20,322 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:20,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:28:20,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:28:20,322 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 14942208}
2022-05-12 22:28:20,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:20,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:28:20,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:20,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:28:20,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:28:20,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 22282240}
2022-05-12 22:28:20,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:20,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:28:20,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:20,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:28:20,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:28:20,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 3932160}
2022-05-12 22:28:20,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,242 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:22,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:22,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:22,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:22,243 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 7340032}
2022-05-12 22:28:22,243 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,277 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85196800}) to executor  for transfer request: 0.
2022-05-12 22:28:22,277 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:22,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) about to wait for the following futures []
2022-05-12 22:28:22,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) done waiting for dependent futures
2022-05-12 22:28:22,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85196800}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 85196800}
2022-05-12 22:28:22,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,280 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83361792}) to executor  for transfer request: 0.
2022-05-12 22:28:22,280 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:22,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) about to wait for the following futures []
2022-05-12 22:28:22,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) done waiting for dependent futures
2022-05-12 22:28:22,281 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83361792}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 83361792}
2022-05-12 22:28:22,281 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:23,084 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37486592}) to executor  for transfer request: 0.
2022-05-12 22:28:23,084 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:23,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) about to wait for the following futures []
2022-05-12 22:28:23,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) done waiting for dependent futures
2022-05-12 22:28:23,085 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37486592}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 37486592}
2022-05-12 22:28:23,085 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:28,669 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:28:28,670 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:28,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:28:28,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:28:28,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 15204352}
2022-05-12 22:28:28,671 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:28,904 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83623936}) to executor  for transfer request: 0.
2022-05-12 22:28:28,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:28,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:28,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) about to wait for the following futures []
2022-05-12 22:28:28,905 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) about to wait for the following futures []
2022-05-12 22:28:28,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) done waiting for dependent futures
2022-05-12 22:28:28,905 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) done waiting for dependent futures
2022-05-12 22:28:28,905 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83623936}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 83623936}
2022-05-12 22:28:28,905 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=92274688-100663295'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 92274688, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:28:28,905 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:28,905 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:28,905 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:28,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:28:28,906 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:28,906 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=92274688-100663295', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:28:28,906 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:28:28,906 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:28:28,906 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:28:28,907 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:28:28,907 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=92274688-100663295
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222828Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:28:28,907 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222828Z
20220512/eu-central-1/s3/aws4_request
77951f003fac82f41373a51eafd0e78767f728fad56ddc78d72f6450c6c89522
2022-05-12 22:28:28,907 botocore.auth DEBUG    Signature:
b75ead9b05e95309d4749d32e19db3a599da74676cb78be65ce556b9e7bb1cf4
2022-05-12 22:28:28,907 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:28,907 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:28,907 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:28:28,907 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:28:29,125 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:28:29,125 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'AzOfNecWWgTLttC2ki1eZ10A1prHruUuTmxSXjSOaSSWEadQfqvdHsH8vmgJ5CSUEReER7gLE7o=', 'x-amz-request-id': '9EGSCGYP5726A63K', 'Date': 'Thu, 12 May 2022 22:28:29 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 92274688-100663295/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:28:29,125 botocore.parsers DEBUG    Response body:

2022-05-12 22:28:29,126 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:28:29,126 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:28:29,126 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:28:29,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:29,221 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:29,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:29,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 7340032}
2022-05-12 22:28:29,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:29,670 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85458944}) to executor  for transfer request: 0.
2022-05-12 22:28:29,670 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) about to wait for the following futures []
2022-05-12 22:28:29,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) done waiting for dependent futures
2022-05-12 22:28:29,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85458944}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 85458944}
2022-05-12 22:28:29,670 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:29,820 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71303168}) to executor  for transfer request: 0.
2022-05-12 22:28:29,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) about to wait for the following futures []
2022-05-12 22:28:29,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) done waiting for dependent futures
2022-05-12 22:28:29,820 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71303168}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 71303168}
2022-05-12 22:28:29,820 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:30,333 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:28:30,334 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:30,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:28:30,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:28:30,335 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 22282240}
2022-05-12 22:28:30,335 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:31,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53215232}) to executor  for transfer request: 0.
2022-05-12 22:28:31,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:31,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) about to wait for the following futures []
2022-05-12 22:28:31,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) done waiting for dependent futures
2022-05-12 22:28:31,150 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53215232}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 53215232}
2022-05-12 22:28:31,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:33,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:28:33,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:33,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:28:33,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:28:33,399 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 7602176}
2022-05-12 22:28:33,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:28:34,208 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:28:34,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:28:34,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 22544384}
2022-05-12 22:28:34,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,418 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:28:34,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:28:34,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:28:34,419 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 4194304}
2022-05-12 22:28:34,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,865 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:28:34,865 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:28:34,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:28:34,866 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 14417920}
2022-05-12 22:28:34,866 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,119 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:28:35,120 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,120 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:28:35,120 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:28:35,120 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 18874368}
2022-05-12 22:28:35,121 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:28:35,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:28:35,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:28:35,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 15204352}
2022-05-12 22:28:35,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:36,093 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:28:36,093 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:36,094 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:28:36,094 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:28:36,095 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 11534336}
2022-05-12 22:28:36,095 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:37,070 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85721088}) to executor  for transfer request: 0.
2022-05-12 22:28:37,070 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:37,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) about to wait for the following futures []
2022-05-12 22:28:37,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) done waiting for dependent futures
2022-05-12 22:28:37,071 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85721088}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 85721088}
2022-05-12 22:28:37,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:39,741 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92274688}) to executor  for transfer request: 0.
2022-05-12 22:28:39,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:39,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) about to wait for the following futures []
2022-05-12 22:28:39,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) done waiting for dependent futures
2022-05-12 22:28:39,742 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92274688}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 92274688}
2022-05-12 22:28:39,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:39,819 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:28:39,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:39,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:28:39,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:28:39,820 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 20185088}
2022-05-12 22:28:39,820 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,327 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:28:40,327 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:28:40,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:28:40,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 15466496}
2022-05-12 22:28:40,328 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:28:40,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:28:40,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:28:40,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 19136512}
2022-05-12 22:28:40,375 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:41,224 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37748736}) to executor  for transfer request: 0.
2022-05-12 22:28:41,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:41,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) about to wait for the following futures []
2022-05-12 22:28:41,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) done waiting for dependent futures
2022-05-12 22:28:41,225 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37748736}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 37748736}
2022-05-12 22:28:41,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:42,399 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:28:42,399 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:42,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:28:42,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:28:42,399 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 7864320}
2022-05-12 22:28:42,400 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:42,731 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:28:42,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:42,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:28:42,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:28:42,732 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 7602176}
2022-05-12 22:28:42,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:45,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85983232}) to executor  for transfer request: 0.
2022-05-12 22:28:45,792 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:45,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) about to wait for the following futures []
2022-05-12 22:28:45,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) done waiting for dependent futures
2022-05-12 22:28:45,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85983232}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 85983232}
2022-05-12 22:28:45,793 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:46,755 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53477376}) to executor  for transfer request: 0.
2022-05-12 22:28:46,755 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:46,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) about to wait for the following futures []
2022-05-12 22:28:46,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) done waiting for dependent futures
2022-05-12 22:28:46,756 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53477376}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 53477376}
2022-05-12 22:28:46,756 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,639 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:28:48,640 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:48,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:28:48,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:28:48,640 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 22544384}
2022-05-12 22:28:48,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92536832}) to executor  for transfer request: 0.
2022-05-12 22:28:48,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:48,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) about to wait for the following futures []
2022-05-12 22:28:48,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) done waiting for dependent futures
2022-05-12 22:28:48,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92536832}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 92536832}
2022-05-12 22:28:48,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,919 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:28:48,919 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:48,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:28:48,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:28:48,920 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 22806528}
2022-05-12 22:28:48,920 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:49,408 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:28:49,409 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:49,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:28:49,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:28:49,409 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 7864320}
2022-05-12 22:28:49,410 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,898 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71565312}) to executor  for transfer request: 0.
2022-05-12 22:28:50,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:50,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) about to wait for the following futures []
2022-05-12 22:28:50,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) done waiting for dependent futures
2022-05-12 22:28:50,899 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71565312}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 71565312}
2022-05-12 22:28:50,899 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,910 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:28:50,910 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:50,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:28:50,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:28:50,911 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 15728640}
2022-05-12 22:28:50,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,819 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86245376}) to executor  for transfer request: 0.
2022-05-12 22:28:53,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:53,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) about to wait for the following futures []
2022-05-12 22:28:53,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) done waiting for dependent futures
2022-05-12 22:28:53,820 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86245376}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 86245376}
2022-05-12 22:28:53,821 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:54,987 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:28:54,987 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:54,988 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:54,988 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) about to wait for the following futures []
2022-05-12 22:28:54,988 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) done waiting for dependent futures
2022-05-12 22:28:54,988 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=100663296-109051903'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 100663296, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:28:54,988 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:54,988 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:54,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:28:54,988 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:54,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:28:54,989 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:54,989 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 8126464}
2022-05-12 22:28:54,989 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:54,990 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:54,990 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:54,990 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:28:54,990 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:28:54,991 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:54,991 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:54,991 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=100663296-109051903', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:28:54,991 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:54,991 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:28:54,991 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:54,991 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:54,991 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:28:54,991 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:28:54,991 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:28:54,991 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:28:54,992 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:28:54,992 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=100663296-109051903
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222854Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:28:54,992 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222854Z
20220512/eu-central-1/s3/aws4_request
801b74ba8a891c25e2030975e802fa1cf08afc7a5f4434f55c1fa5ff6a6798d8
2022-05-12 22:28:54,992 botocore.auth DEBUG    Signature:
d3db64baea720cc67fcf00327ddc6e065a8ede8d0752f5ae17c6e5c49376eb88
2022-05-12 22:28:54,992 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:54,992 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:54,992 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:28:54,992 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:28:55,173 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:28:55,173 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'D6RnGQDuW5nWS8faOj28kriS50ltlGSbhYKE3pBwUTQjfIm1R3/96uRLFF0WVPgZhzVHSYqvjEQ=', 'x-amz-request-id': 'JM3A47466VGJF758', 'Date': 'Thu, 12 May 2022 22:28:56 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 100663296-109051903/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:28:55,174 botocore.parsers DEBUG    Response body:

2022-05-12 22:28:55,174 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:28:55,174 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:28:55,175 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:28:55,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:28:55,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:55,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:28:55,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:28:55,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 15466496}
2022-05-12 22:28:55,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:55,910 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:28:55,910 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:55,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:55,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:28:55,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:28:55,911 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 8126464}
2022-05-12 22:28:55,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,668 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38010880}) to executor  for transfer request: 0.
2022-05-12 22:28:56,669 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,669 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) about to wait for the following futures []
2022-05-12 22:28:56,669 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) done waiting for dependent futures
2022-05-12 22:28:56,669 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38010880}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 38010880}
2022-05-12 22:28:56,669 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,697 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:28:56,698 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:28:56,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:28:56,699 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 19398656}
2022-05-12 22:28:56,699 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44040192}) to executor  for transfer request: 0.
2022-05-12 22:28:57,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) about to wait for the following futures []
2022-05-12 22:28:57,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) done waiting for dependent futures
2022-05-12 22:28:57,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44040192}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 44040192}
2022-05-12 22:28:57,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,964 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53739520}) to executor  for transfer request: 0.
2022-05-12 22:28:57,964 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) about to wait for the following futures []
2022-05-12 22:28:57,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) done waiting for dependent futures
2022-05-12 22:28:57,965 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53739520}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 53739520}
2022-05-12 22:28:57,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:58,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92798976}) to executor  for transfer request: 0.
2022-05-12 22:28:58,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:58,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) about to wait for the following futures []
2022-05-12 22:28:58,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) done waiting for dependent futures
2022-05-12 22:28:58,910 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92798976}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 92798976}
2022-05-12 22:28:58,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:59,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:28:59,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:59,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:28:59,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:28:59,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 1310720}
2022-05-12 22:28:59,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:59,243 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:28:59,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:59,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:28:59,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:28:59,244 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 15990784}
2022-05-12 22:28:59,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:59,488 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:28:59,488 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:59,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:28:59,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:28:59,489 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 14680064}
2022-05-12 22:28:59,489 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:00,691 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86507520}) to executor  for transfer request: 0.
2022-05-12 22:29:00,691 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:00,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) about to wait for the following futures []
2022-05-12 22:29:00,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) done waiting for dependent futures
2022-05-12 22:29:00,692 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86507520}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 86507520}
2022-05-12 22:29:00,692 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:01,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:29:01,221 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:01,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:29:01,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:29:01,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 4456448}
2022-05-12 22:29:01,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:03,675 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:29:03,676 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:03,676 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:29:03,676 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:29:03,676 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 23068672}
2022-05-12 22:29:03,677 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:04,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71827456}) to executor  for transfer request: 0.
2022-05-12 22:29:04,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:04,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) about to wait for the following futures []
2022-05-12 22:29:04,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) done waiting for dependent futures
2022-05-12 22:29:04,509 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71827456}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 71827456}
2022-05-12 22:29:04,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:04,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:29:04,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:04,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:29:04,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:29:04,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 20447232}
2022-05-12 22:29:04,810 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:05,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:29:05,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:05,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:29:05,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:29:05,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 22806528}
2022-05-12 22:29:05,467 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:05,588 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100663296}) to executor  for transfer request: 0.
2022-05-12 22:29:05,588 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:05,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) about to wait for the following futures []
2022-05-12 22:29:05,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) done waiting for dependent futures
2022-05-12 22:29:05,589 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100663296}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 100663296}
2022-05-12 22:29:05,589 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,075 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93061120}) to executor  for transfer request: 0.
2022-05-12 22:29:07,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) about to wait for the following futures []
2022-05-12 22:29:07,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) done waiting for dependent futures
2022-05-12 22:29:07,075 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93061120}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 93061120}
2022-05-12 22:29:07,076 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,084 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61865984}) to executor  for transfer request: 0.
2022-05-12 22:29:07,084 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) about to wait for the following futures []
2022-05-12 22:29:07,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) done waiting for dependent futures
2022-05-12 22:29:07,085 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61865984}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 61865984}
2022-05-12 22:29:07,085 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,106 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54001664}) to executor  for transfer request: 0.
2022-05-12 22:29:07,106 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) about to wait for the following futures []
2022-05-12 22:29:07,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) done waiting for dependent futures
2022-05-12 22:29:07,107 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54001664}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 54001664}
2022-05-12 22:29:07,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:08,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86769664}) to executor  for transfer request: 0.
2022-05-12 22:29:08,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:08,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) about to wait for the following futures []
2022-05-12 22:29:08,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) done waiting for dependent futures
2022-05-12 22:29:08,569 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86769664}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 86769664}
2022-05-12 22:29:08,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,360 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:29:09,360 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:29:09,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:29:09,361 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 16252928}
2022-05-12 22:29:09,361 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,392 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:29:09,392 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:29:09,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:29:09,392 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 11796480}
2022-05-12 22:29:09,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,426 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44302336}) to executor  for transfer request: 0.
2022-05-12 22:29:09,426 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) about to wait for the following futures []
2022-05-12 22:29:09,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) done waiting for dependent futures
2022-05-12 22:29:09,426 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44302336}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 44302336}
2022-05-12 22:29:09,427 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:10,006 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:29:10,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:10,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:29:10,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:29:10,007 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 19660800}
2022-05-12 22:29:10,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:12,174 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:29:12,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:12,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:29:12,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:29:12,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 15728640}
2022-05-12 22:29:12,175 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,298 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93323264}) to executor  for transfer request: 0.
2022-05-12 22:29:15,299 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,299 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) about to wait for the following futures []
2022-05-12 22:29:15,299 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) done waiting for dependent futures
2022-05-12 22:29:15,299 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93323264}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 93323264}
2022-05-12 22:29:15,300 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,335 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100925440}) to executor  for transfer request: 0.
2022-05-12 22:29:15,335 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) about to wait for the following futures []
2022-05-12 22:29:15,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) done waiting for dependent futures
2022-05-12 22:29:15,336 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100925440}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 100925440}
2022-05-12 22:29:15,336 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:29:15,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:29:15,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:29:15,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 23330816}
2022-05-12 22:29:15,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,776 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87031808}) to executor  for transfer request: 0.
2022-05-12 22:29:15,777 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) about to wait for the following futures []
2022-05-12 22:29:15,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) done waiting for dependent futures
2022-05-12 22:29:15,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87031808}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 87031808}
2022-05-12 22:29:15,778 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:16,621 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38273024}) to executor  for transfer request: 0.
2022-05-12 22:29:16,621 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:16,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) about to wait for the following futures []
2022-05-12 22:29:16,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) done waiting for dependent futures
2022-05-12 22:29:16,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38273024}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 38273024}
2022-05-12 22:29:16,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:18,873 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:29:18,873 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:18,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:29:18,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:29:18,874 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 14942208}
2022-05-12 22:29:18,874 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:19,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54263808}) to executor  for transfer request: 0.
2022-05-12 22:29:19,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:19,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) about to wait for the following futures []
2022-05-12 22:29:19,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) done waiting for dependent futures
2022-05-12 22:29:19,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54263808}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 54263808}
2022-05-12 22:29:19,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:20,124 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:29:20,124 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:20,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:29:20,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:29:20,125 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 19922944}
2022-05-12 22:29:20,126 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:20,887 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:29:20,887 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:20,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:29:20,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:29:20,888 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 23068672}
2022-05-12 22:29:20,888 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:22,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72089600}) to executor  for transfer request: 0.
2022-05-12 22:29:22,466 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:22,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) about to wait for the following futures []
2022-05-12 22:29:22,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) done waiting for dependent futures
2022-05-12 22:29:22,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72089600}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 72089600}
2022-05-12 22:29:22,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:23,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:29:23,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:23,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:23,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:29:23,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:29:23,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 16515072}
2022-05-12 22:29:23,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:24,060 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93585408}) to executor  for transfer request: 0.
2022-05-12 22:29:24,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:24,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) about to wait for the following futures []
2022-05-12 22:29:24,061 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) done waiting for dependent futures
2022-05-12 22:29:24,061 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93585408}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 93585408}
2022-05-12 22:29:24,061 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:26,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101187584}) to executor  for transfer request: 0.
2022-05-12 22:29:26,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:26,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) about to wait for the following futures []
2022-05-12 22:29:26,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) done waiting for dependent futures
2022-05-12 22:29:26,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101187584}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 101187584}
2022-05-12 22:29:26,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:26,286 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87293952}) to executor  for transfer request: 0.
2022-05-12 22:29:26,287 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:26,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) about to wait for the following futures []
2022-05-12 22:29:26,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) done waiting for dependent futures
2022-05-12 22:29:26,287 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87293952}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 87293952}
2022-05-12 22:29:26,287 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:26,747 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:29:26,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:26,748 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:29:26,748 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:29:26,748 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 23592960}
2022-05-12 22:29:26,748 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:26,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44564480}) to executor  for transfer request: 0.
2022-05-12 22:29:26,771 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:26,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) about to wait for the following futures []
2022-05-12 22:29:26,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) done waiting for dependent futures
2022-05-12 22:29:26,771 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44564480}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 44564480}
2022-05-12 22:29:26,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,861 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:29:27,861 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:27,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:29:27,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:29:27,862 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 1572864}
2022-05-12 22:29:27,862 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:32,420 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38535168}) to executor  for transfer request: 0.
2022-05-12 22:29:32,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:32,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) about to wait for the following futures []
2022-05-12 22:29:32,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) done waiting for dependent futures
2022-05-12 22:29:32,421 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38535168}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 38535168}
2022-05-12 22:29:32,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:32,645 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87556096}) to executor  for transfer request: 0.
2022-05-12 22:29:32,645 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:32,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) about to wait for the following futures []
2022-05-12 22:29:32,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) done waiting for dependent futures
2022-05-12 22:29:32,646 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87556096}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 87556096}
2022-05-12 22:29:32,646 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:32,966 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:29:32,966 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:32,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:29:32,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:29:32,967 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 20709376}
2022-05-12 22:29:32,967 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:33,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:29:33,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:33,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:29:33,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:29:33,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 15990784}
2022-05-12 22:29:33,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:34,016 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:29:34,016 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:34,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:29:34,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:29:34,017 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 12058624}
2022-05-12 22:29:34,017 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:34,354 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:29:34,354 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:34,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:29:34,355 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:29:34,355 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 20185088}
2022-05-12 22:29:34,355 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:34,731 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101449728}) to executor  for transfer request: 0.
2022-05-12 22:29:34,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:34,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) about to wait for the following futures []
2022-05-12 22:29:34,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) done waiting for dependent futures
2022-05-12 22:29:34,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101449728}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 101449728}
2022-05-12 22:29:34,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:36,163 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93847552}) to executor  for transfer request: 0.
2022-05-12 22:29:36,163 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:36,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) about to wait for the following futures []
2022-05-12 22:29:36,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) done waiting for dependent futures
2022-05-12 22:29:36,164 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93847552}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 93847552}
2022-05-12 22:29:36,164 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:29:37,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:29:37,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:29:37,767 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 23855104}
2022-05-12 22:29:37,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:38,929 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54525952}) to executor  for transfer request: 0.
2022-05-12 22:29:38,930 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:38,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) about to wait for the following futures []
2022-05-12 22:29:38,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) done waiting for dependent futures
2022-05-12 22:29:38,930 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54525952}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 54525952}
2022-05-12 22:29:38,931 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:39,106 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72351744}) to executor  for transfer request: 0.
2022-05-12 22:29:39,107 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:39,108 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) about to wait for the following futures []
2022-05-12 22:29:39,108 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) done waiting for dependent futures
2022-05-12 22:29:39,108 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72351744}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 72351744}
2022-05-12 22:29:39,108 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:39,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:29:39,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:39,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:29:39,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:29:39,364 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 23330816}
2022-05-12 22:29:39,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:39,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44826624}) to executor  for transfer request: 0.
2022-05-12 22:29:39,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:39,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) about to wait for the following futures []
2022-05-12 22:29:39,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) done waiting for dependent futures
2022-05-12 22:29:39,418 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44826624}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 44826624}
2022-05-12 22:29:39,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:40,313 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:29:40,313 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:40,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:29:40,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:29:40,314 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 15204352}
2022-05-12 22:29:40,314 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:29:41,854 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:29:41,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:29:41,854 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 4718592}
2022-05-12 22:29:41,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,931 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87818240}) to executor  for transfer request: 0.
2022-05-12 22:29:41,932 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) about to wait for the following futures []
2022-05-12 22:29:41,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) done waiting for dependent futures
2022-05-12 22:29:41,932 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87818240}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 87818240}
2022-05-12 22:29:41,932 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:42,299 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101711872}) to executor  for transfer request: 0.
2022-05-12 22:29:42,299 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:42,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) about to wait for the following futures []
2022-05-12 22:29:42,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) done waiting for dependent futures
2022-05-12 22:29:42,300 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101711872}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 101711872}
2022-05-12 22:29:42,300 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:45,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94109696}) to executor  for transfer request: 0.
2022-05-12 22:29:45,253 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:45,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) about to wait for the following futures []
2022-05-12 22:29:45,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) done waiting for dependent futures
2022-05-12 22:29:45,253 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94109696}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 94109696}
2022-05-12 22:29:45,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:45,342 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:29:45,342 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:45,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:29:45,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:29:45,343 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 20447232}
2022-05-12 22:29:45,343 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:46,562 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:29:46,562 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:46,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:29:46,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:29:46,562 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 1835008}
2022-05-12 22:29:46,563 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:48,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38797312}) to executor  for transfer request: 0.
2022-05-12 22:29:48,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:48,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) about to wait for the following futures []
2022-05-12 22:29:48,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) done waiting for dependent futures
2022-05-12 22:29:48,767 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38797312}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 38797312}
2022-05-12 22:29:48,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:49,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:29:49,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:49,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:29:49,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:29:49,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 24117248}
2022-05-12 22:29:49,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:49,607 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72613888}) to executor  for transfer request: 0.
2022-05-12 22:29:49,607 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:49,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) about to wait for the following futures []
2022-05-12 22:29:49,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) done waiting for dependent futures
2022-05-12 22:29:49,608 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72613888}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 72613888}
2022-05-12 22:29:49,608 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:49,843 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88080384}) to executor  for transfer request: 0.
2022-05-12 22:29:49,843 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:49,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) about to wait for the following futures []
2022-05-12 22:29:49,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) done waiting for dependent futures
2022-05-12 22:29:49,844 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88080384}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 88080384}
2022-05-12 22:29:49,844 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101974016}) to executor  for transfer request: 0.
2022-05-12 22:29:51,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) about to wait for the following futures []
2022-05-12 22:29:51,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) done waiting for dependent futures
2022-05-12 22:29:51,583 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101974016}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 101974016}
2022-05-12 22:29:51,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:53,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:29:53,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:53,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:29:53,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:29:53,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 20971520}
2022-05-12 22:29:53,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:53,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:29:53,637 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:53,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:29:53,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:29:53,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 23592960}
2022-05-12 22:29:53,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:54,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:29:54,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:54,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:29:54,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:29:54,418 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 20709376}
2022-05-12 22:29:54,418 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:54,597 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:29:54,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:54,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:29:54,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:29:54,598 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 16252928}
2022-05-12 22:29:54,598 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,082 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94371840}) to executor  for transfer request: 0.
2022-05-12 22:29:55,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:55,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) about to wait for the following futures []
2022-05-12 22:29:55,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) done waiting for dependent futures
2022-05-12 22:29:55,083 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94371840}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 94371840}
2022-05-12 22:29:55,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:56,508 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88342528}) to executor  for transfer request: 0.
2022-05-12 22:29:56,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:56,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) about to wait for the following futures []
2022-05-12 22:29:56,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) done waiting for dependent futures
2022-05-12 22:29:56,509 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88342528}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 88342528}
2022-05-12 22:29:56,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:58,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45088768}) to executor  for transfer request: 0.
2022-05-12 22:29:58,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:58,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) about to wait for the following futures []
2022-05-12 22:29:58,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) done waiting for dependent futures
2022-05-12 22:29:58,283 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45088768}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 45088768}
2022-05-12 22:29:58,284 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:59,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102236160}) to executor  for transfer request: 0.
2022-05-12 22:29:59,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:59,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) about to wait for the following futures []
2022-05-12 22:29:59,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) done waiting for dependent futures
2022-05-12 22:29:59,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102236160}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 102236160}
2022-05-12 22:29:59,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,348 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:30:00,348 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:30:00,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:30:00,349 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 24379392}
2022-05-12 22:30:00,349 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:01,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72876032}) to executor  for transfer request: 0.
2022-05-12 22:30:01,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:01,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) about to wait for the following futures []
2022-05-12 22:30:01,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) done waiting for dependent futures
2022-05-12 22:30:01,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72876032}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 72876032}
2022-05-12 22:30:01,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:01,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:30:01,253 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:01,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:30:01,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:30:01,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 15466496}
2022-05-12 22:30:01,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:01,780 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94633984}) to executor  for transfer request: 0.
2022-05-12 22:30:01,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:01,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) about to wait for the following futures []
2022-05-12 22:30:01,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) done waiting for dependent futures
2022-05-12 22:30:01,781 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94633984}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 94633984}
2022-05-12 22:30:01,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:01,905 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54788096}) to executor  for transfer request: 0.
2022-05-12 22:30:01,906 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:01,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) about to wait for the following futures []
2022-05-12 22:30:01,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) done waiting for dependent futures
2022-05-12 22:30:01,906 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54788096}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 54788096}
2022-05-12 22:30:01,907 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:04,104 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:30:04,105 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:04,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:30:04,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:30:04,105 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 2097152}
2022-05-12 22:30:04,105 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:05,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:30:05,154 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:05,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:30:05,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:30:05,155 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 20971520}
2022-05-12 22:30:05,155 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:05,586 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:30:05,587 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:05,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:30:05,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:30:05,587 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 23855104}
2022-05-12 22:30:05,588 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:05,696 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:30:05,696 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:05,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:30:05,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:30:05,697 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 12320768}
2022-05-12 22:30:05,697 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:05,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88604672}) to executor  for transfer request: 0.
2022-05-12 22:30:05,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:05,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) about to wait for the following futures []
2022-05-12 22:30:05,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) done waiting for dependent futures
2022-05-12 22:30:05,791 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88604672}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 88604672}
2022-05-12 22:30:05,791 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:07,384 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45350912}) to executor  for transfer request: 0.
2022-05-12 22:30:07,384 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:07,385 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) about to wait for the following futures []
2022-05-12 22:30:07,385 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) done waiting for dependent futures
2022-05-12 22:30:07,385 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45350912}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 45350912}
2022-05-12 22:30:07,385 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:07,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94896128}) to executor  for transfer request: 0.
2022-05-12 22:30:07,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:07,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) about to wait for the following futures []
2022-05-12 22:30:07,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) done waiting for dependent futures
2022-05-12 22:30:07,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94896128}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 94896128}
2022-05-12 22:30:07,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:08,204 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39059456}) to executor  for transfer request: 0.
2022-05-12 22:30:08,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:08,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) about to wait for the following futures []
2022-05-12 22:30:08,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) done waiting for dependent futures
2022-05-12 22:30:08,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39059456}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 39059456}
2022-05-12 22:30:08,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:09,279 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102498304}) to executor  for transfer request: 0.
2022-05-12 22:30:09,279 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:09,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) about to wait for the following futures []
2022-05-12 22:30:09,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) done waiting for dependent futures
2022-05-12 22:30:09,280 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102498304}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 102498304}
2022-05-12 22:30:09,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:12,229 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62128128}) to executor  for transfer request: 0.
2022-05-12 22:30:12,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:12,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) about to wait for the following futures []
2022-05-12 22:30:12,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) done waiting for dependent futures
2022-05-12 22:30:12,230 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62128128}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 62128128}
2022-05-12 22:30:12,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:12,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88866816}) to executor  for transfer request: 0.
2022-05-12 22:30:12,762 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:12,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) about to wait for the following futures []
2022-05-12 22:30:12,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) done waiting for dependent futures
2022-05-12 22:30:12,763 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88866816}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 88866816}
2022-05-12 22:30:12,763 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:30:13,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:30:13,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:30:13,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 21233664}
2022-05-12 22:30:13,295 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,700 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73138176}) to executor  for transfer request: 0.
2022-05-12 22:30:13,700 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) about to wait for the following futures []
2022-05-12 22:30:13,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) done waiting for dependent futures
2022-05-12 22:30:13,701 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73138176}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 73138176}
2022-05-12 22:30:13,701 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:14,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:30:14,642 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:14,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:30:14,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:30:14,643 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 24641536}
2022-05-12 22:30:14,643 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:14,890 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95158272}) to executor  for transfer request: 0.
2022-05-12 22:30:14,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:14,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) about to wait for the following futures []
2022-05-12 22:30:14,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) done waiting for dependent futures
2022-05-12 22:30:14,891 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95158272}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 95158272}
2022-05-12 22:30:14,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:15,527 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:30:15,527 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:15,528 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:15,528 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) about to wait for the following futures []
2022-05-12 22:30:15,528 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) done waiting for dependent futures
2022-05-12 22:30:15,528 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=109051904-117440511'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 109051904, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:30:15,528 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:15,528 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:15,528 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:15,528 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:15,528 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:15,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:30:15,529 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:15,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:30:15,529 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:30:15,530 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 16515072}
2022-05-12 22:30:15,530 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:30:15,530 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:15,530 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:15,530 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:15,531 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=109051904-117440511', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:30:15,531 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:15,531 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:30:15,531 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:15,531 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:15,531 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:30:15,531 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:30:15,531 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:30:15,531 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:30:15,532 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:30:15,532 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=109051904-117440511
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223015Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:30:15,532 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223015Z
20220512/eu-central-1/s3/aws4_request
6b85d2429d3c0dc1305189c05b47ae7b2e3d61be5a5936286b243aa003ad8418
2022-05-12 22:30:15,532 botocore.auth DEBUG    Signature:
a3d236ecb6fffd2a3931bee6ef1d892be2312f4b0895d7f7d04c0db9944a531d
2022-05-12 22:30:15,532 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:15,532 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:15,532 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:30:15,533 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:30:15,533 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:30:16,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55050240}) to executor  for transfer request: 0.
2022-05-12 22:30:16,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:16,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) about to wait for the following futures []
2022-05-12 22:30:16,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) done waiting for dependent futures
2022-05-12 22:30:16,269 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55050240}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 55050240}
2022-05-12 22:30:16,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:16,921 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:30:16,921 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'O9Fd1SNieejZXEU5NuV8Mje42PeSXECcRx2OPc04gesITnMp/euc7LGzt45akNCNs0WQf+bfMAA=', 'x-amz-request-id': '3W35SVYTHHFSKQ2C', 'Date': 'Thu, 12 May 2022 22:30:17 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 109051904-117440511/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:30:16,921 botocore.parsers DEBUG    Response body:

2022-05-12 22:30:16,922 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:30:16,922 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:30:16,922 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:30:18,074 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:30:18,074 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:18,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:30:18,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:30:18,075 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 21233664}
2022-05-12 22:30:18,075 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:18,630 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89128960}) to executor  for transfer request: 0.
2022-05-12 22:30:18,631 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:18,631 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) about to wait for the following futures []
2022-05-12 22:30:18,631 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) done waiting for dependent futures
2022-05-12 22:30:18,631 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89128960}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 89128960}
2022-05-12 22:30:18,631 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:18,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45613056}) to executor  for transfer request: 0.
2022-05-12 22:30:18,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:18,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) about to wait for the following futures []
2022-05-12 22:30:18,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) done waiting for dependent futures
2022-05-12 22:30:18,662 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45613056}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 45613056}
2022-05-12 22:30:18,663 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:19,672 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:30:19,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:19,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:30:19,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:30:19,673 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 4980736}
2022-05-12 22:30:19,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,411 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:30:20,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:30:20,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:30:20,412 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 15728640}
2022-05-12 22:30:20,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,793 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:30:20,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:30:20,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:30:20,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 24117248}
2022-05-12 22:30:20,794 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:21,627 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:30:21,627 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:21,627 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:30:21,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:30:21,628 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 2359296}
2022-05-12 22:30:21,628 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:22,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95420416}) to executor  for transfer request: 0.
2022-05-12 22:30:22,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:22,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) about to wait for the following futures []
2022-05-12 22:30:22,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) done waiting for dependent futures
2022-05-12 22:30:22,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95420416}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 95420416}
2022-05-12 22:30:22,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:22,984 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102760448}) to executor  for transfer request: 0.
2022-05-12 22:30:22,984 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:22,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) about to wait for the following futures []
2022-05-12 22:30:22,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) done waiting for dependent futures
2022-05-12 22:30:22,985 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102760448}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 102760448}
2022-05-12 22:30:22,985 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,798 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109051904}) to executor  for transfer request: 0.
2022-05-12 22:30:24,798 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,798 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) about to wait for the following futures []
2022-05-12 22:30:24,798 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) done waiting for dependent futures
2022-05-12 22:30:24,799 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109051904}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 109051904}
2022-05-12 22:30:24,799 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:25,103 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39321600}) to executor  for transfer request: 0.
2022-05-12 22:30:25,103 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:25,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) about to wait for the following futures []
2022-05-12 22:30:25,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) done waiting for dependent futures
2022-05-12 22:30:25,103 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39321600}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 39321600}
2022-05-12 22:30:25,104 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:25,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89391104}) to executor  for transfer request: 0.
2022-05-12 22:30:25,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:25,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) about to wait for the following futures []
2022-05-12 22:30:25,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) done waiting for dependent futures
2022-05-12 22:30:25,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89391104}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 89391104}
2022-05-12 22:30:25,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,021 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:30:26,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:30:26,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:30:26,022 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 12582912}
2022-05-12 22:30:26,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:30:26,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:30:26,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:30:26,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 24903680}
2022-05-12 22:30:26,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:30,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103022592}) to executor  for transfer request: 0.
2022-05-12 22:30:30,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:30,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) about to wait for the following futures []
2022-05-12 22:30:30,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) done waiting for dependent futures
2022-05-12 22:30:30,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103022592}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 103022592}
2022-05-12 22:30:30,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:30,936 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:30:30,936 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:30,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:30:30,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:30:30,936 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 21495808}
2022-05-12 22:30:30,937 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:31,449 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:30:31,449 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:31,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:30:31,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:30:31,450 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 21495808}
2022-05-12 22:30:31,450 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:31,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89653248}) to executor  for transfer request: 0.
2022-05-12 22:30:31,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:31,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) about to wait for the following futures []
2022-05-12 22:30:31,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) done waiting for dependent futures
2022-05-12 22:30:31,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89653248}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 89653248}
2022-05-12 22:30:31,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:34,045 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45875200}) to executor  for transfer request: 0.
2022-05-12 22:30:34,045 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:34,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) about to wait for the following futures []
2022-05-12 22:30:34,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) done waiting for dependent futures
2022-05-12 22:30:34,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45875200}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 45875200}
2022-05-12 22:30:34,046 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:37,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:30:37,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:37,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:30:37,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:30:37,743 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 24379392}
2022-05-12 22:30:37,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:38,774 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103284736}) to executor  for transfer request: 0.
2022-05-12 22:30:38,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:38,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) about to wait for the following futures []
2022-05-12 22:30:38,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) done waiting for dependent futures
2022-05-12 22:30:38,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103284736}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 103284736}
2022-05-12 22:30:38,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:38,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89915392}) to executor  for transfer request: 0.
2022-05-12 22:30:38,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:38,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) about to wait for the following futures []
2022-05-12 22:30:38,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) done waiting for dependent futures
2022-05-12 22:30:38,994 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89915392}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 89915392}
2022-05-12 22:30:38,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,319 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95682560}) to executor  for transfer request: 0.
2022-05-12 22:30:39,319 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,320 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) about to wait for the following futures []
2022-05-12 22:30:39,320 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) done waiting for dependent futures
2022-05-12 22:30:39,320 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95682560}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 95682560}
2022-05-12 22:30:39,320 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,945 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:30:39,945 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:30:39,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:30:39,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 15990784}
2022-05-12 22:30:39,946 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:41,631 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55312384}) to executor  for transfer request: 0.
2022-05-12 22:30:41,631 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:41,632 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) about to wait for the following futures []
2022-05-12 22:30:41,632 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) done waiting for dependent futures
2022-05-12 22:30:41,632 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55312384}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 55312384}
2022-05-12 22:30:41,632 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103546880}) to executor  for transfer request: 0.
2022-05-12 22:30:43,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) about to wait for the following futures []
2022-05-12 22:30:43,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) done waiting for dependent futures
2022-05-12 22:30:43,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103546880}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 103546880}
2022-05-12 22:30:43,045 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,366 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109314048}) to executor  for transfer request: 0.
2022-05-12 22:30:43,366 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) about to wait for the following futures []
2022-05-12 22:30:43,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) done waiting for dependent futures
2022-05-12 22:30:43,367 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109314048}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 109314048}
2022-05-12 22:30:43,367 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:30:43,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:30:43,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:30:43,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 2621440}
2022-05-12 22:30:43,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:45,592 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46137344}) to executor  for transfer request: 0.
2022-05-12 22:30:45,592 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:45,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) about to wait for the following futures []
2022-05-12 22:30:45,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) done waiting for dependent futures
2022-05-12 22:30:45,593 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46137344}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 46137344}
2022-05-12 22:30:45,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:45,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73400320}) to executor  for transfer request: 0.
2022-05-12 22:30:45,792 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:45,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) about to wait for the following futures []
2022-05-12 22:30:45,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) done waiting for dependent futures
2022-05-12 22:30:45,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73400320}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 73400320}
2022-05-12 22:30:45,793 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:46,905 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:30:46,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:46,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:30:46,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:30:46,906 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 12845056}
2022-05-12 22:30:46,906 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:47,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:30:47,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:47,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:30:47,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:30:47,465 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 24641536}
2022-05-12 22:30:47,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:47,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90177536}) to executor  for transfer request: 0.
2022-05-12 22:30:47,537 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:47,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) about to wait for the following futures []
2022-05-12 22:30:47,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) done waiting for dependent futures
2022-05-12 22:30:47,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90177536}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 90177536}
2022-05-12 22:30:47,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:48,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:30:48,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:48,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:30:48,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:30:48,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 5242880}
2022-05-12 22:30:48,051 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:48,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39583744}) to executor  for transfer request: 0.
2022-05-12 22:30:48,373 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:48,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) about to wait for the following futures []
2022-05-12 22:30:48,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) done waiting for dependent futures
2022-05-12 22:30:48,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39583744}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 39583744}
2022-05-12 22:30:48,374 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,279 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103809024}) to executor  for transfer request: 0.
2022-05-12 22:30:49,279 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) about to wait for the following futures []
2022-05-12 22:30:49,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) done waiting for dependent futures
2022-05-12 22:30:49,280 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103809024}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 103809024}
2022-05-12 22:30:49,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:53,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55574528}) to executor  for transfer request: 0.
2022-05-12 22:30:53,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:53,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) about to wait for the following futures []
2022-05-12 22:30:53,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) done waiting for dependent futures
2022-05-12 22:30:53,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55574528}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 55574528}
2022-05-12 22:30:53,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:53,192 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:30:53,192 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:53,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:30:53,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:30:53,193 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 16252928}
2022-05-12 22:30:53,193 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,262 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95944704}) to executor  for transfer request: 0.
2022-05-12 22:30:55,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) about to wait for the following futures []
2022-05-12 22:30:55,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) done waiting for dependent futures
2022-05-12 22:30:55,262 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95944704}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 95944704}
2022-05-12 22:30:55,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:30:55,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:30:55,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:30:55,807 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 21757952}
2022-05-12 22:30:55,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,817 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109576192}) to executor  for transfer request: 0.
2022-05-12 22:30:55,817 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) about to wait for the following futures []
2022-05-12 22:30:55,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) done waiting for dependent futures
2022-05-12 22:30:55,818 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109576192}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 109576192}
2022-05-12 22:30:55,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,335 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:30:56,335 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:30:56,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:30:56,336 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 21757952}
2022-05-12 22:30:56,336 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,353 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73662464}) to executor  for transfer request: 0.
2022-05-12 22:30:56,353 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) about to wait for the following futures []
2022-05-12 22:30:56,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) done waiting for dependent futures
2022-05-12 22:30:56,354 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73662464}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 73662464}
2022-05-12 22:30:56,354 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,536 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46399488}) to executor  for transfer request: 0.
2022-05-12 22:30:56,537 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) about to wait for the following futures []
2022-05-12 22:30:56,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) done waiting for dependent futures
2022-05-12 22:30:56,537 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46399488}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 46399488}
2022-05-12 22:30:56,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90439680}) to executor  for transfer request: 0.
2022-05-12 22:30:56,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) about to wait for the following futures []
2022-05-12 22:30:56,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) done waiting for dependent futures
2022-05-12 22:30:56,802 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90439680}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 90439680}
2022-05-12 22:30:56,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:57,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104071168}) to executor  for transfer request: 0.
2022-05-12 22:30:57,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:57,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) about to wait for the following futures []
2022-05-12 22:30:57,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) done waiting for dependent futures
2022-05-12 22:30:57,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104071168}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 104071168}
2022-05-12 22:30:57,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:58,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:30:58,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:58,465 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:58,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:30:58,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:30:58,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 24903680}
2022-05-12 22:30:58,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:01,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:31:01,875 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:01,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:31:01,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:31:01,875 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 5505024}
2022-05-12 22:31:01,876 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:02,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96206848}) to executor  for transfer request: 0.
2022-05-12 22:31:02,471 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:02,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) about to wait for the following futures []
2022-05-12 22:31:02,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) done waiting for dependent futures
2022-05-12 22:31:02,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96206848}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 96206848}
2022-05-12 22:31:02,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:02,655 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:31:02,655 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:02,655 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:31:02,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:31:02,656 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 2883584}
2022-05-12 22:31:02,656 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:02,976 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55836672}) to executor  for transfer request: 0.
2022-05-12 22:31:02,976 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:02,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) about to wait for the following futures []
2022-05-12 22:31:02,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) done waiting for dependent futures
2022-05-12 22:31:02,976 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55836672}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 55836672}
2022-05-12 22:31:02,977 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,496 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:31:03,497 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:31:03,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:31:03,497 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 13107200}
2022-05-12 22:31:03,498 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,563 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:31:03,563 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,563 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:31:03,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:31:03,563 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:31:03,564 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,564 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=29>, 'offset': 16515072}
2022-05-12 22:31:03,564 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,564 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:31:03,564 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:31:03,564 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:31:03,564 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:04,421 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109838336}) to executor  for transfer request: 0.
2022-05-12 22:31:04,421 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:04,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) about to wait for the following futures []
2022-05-12 22:31:04,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) done waiting for dependent futures
2022-05-12 22:31:04,422 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109838336}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 109838336}
2022-05-12 22:31:04,422 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:04,972 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90701824}) to executor  for transfer request: 0.
2022-05-12 22:31:04,972 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:04,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) about to wait for the following futures []
2022-05-12 22:31:04,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) done waiting for dependent futures
2022-05-12 22:31:04,973 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90701824}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 90701824}
2022-05-12 22:31:04,973 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,623 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39845888}) to executor  for transfer request: 0.
2022-05-12 22:31:06,624 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) about to wait for the following futures []
2022-05-12 22:31:06,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) done waiting for dependent futures
2022-05-12 22:31:06,624 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39845888}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 39845888}
2022-05-12 22:31:06,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:07,481 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46661632}) to executor  for transfer request: 0.
2022-05-12 22:31:07,482 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:07,482 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) about to wait for the following futures []
2022-05-12 22:31:07,482 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) done waiting for dependent futures
2022-05-12 22:31:07,482 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46661632}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 46661632}
2022-05-12 22:31:07,482 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,234 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104333312}) to executor  for transfer request: 0.
2022-05-12 22:31:10,234 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,234 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) about to wait for the following futures []
2022-05-12 22:31:10,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) done waiting for dependent futures
2022-05-12 22:31:10,235 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104333312}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 104333312}
2022-05-12 22:31:10,235 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:11,343 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73924608}) to executor  for transfer request: 0.
2022-05-12 22:31:11,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:11,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) about to wait for the following futures []
2022-05-12 22:31:11,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) done waiting for dependent futures
2022-05-12 22:31:11,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73924608}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 73924608}
2022-05-12 22:31:11,345 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:12,413 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90963968}) to executor  for transfer request: 0.
2022-05-12 22:31:12,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:12,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) about to wait for the following futures []
2022-05-12 22:31:12,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) done waiting for dependent futures
2022-05-12 22:31:12,414 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90963968}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 90963968}
2022-05-12 22:31:12,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:12,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96468992}) to executor  for transfer request: 0.
2022-05-12 22:31:12,981 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:12,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) about to wait for the following futures []
2022-05-12 22:31:12,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) done waiting for dependent futures
2022-05-12 22:31:12,982 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96468992}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 96468992}
2022-05-12 22:31:12,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:13,023 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:31:13,023 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:13,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:31:13,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:31:13,024 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 22020096}
2022-05-12 22:31:13,025 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:13,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56098816}) to executor  for transfer request: 0.
2022-05-12 22:31:13,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:13,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) about to wait for the following futures []
2022-05-12 22:31:13,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) done waiting for dependent futures
2022-05-12 22:31:13,993 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56098816}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 56098816}
2022-05-12 22:31:13,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:31:16,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:31:16,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:31:16,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 5767168}
2022-05-12 22:31:16,929 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46923776}) to executor  for transfer request: 0.
2022-05-12 22:31:17,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) about to wait for the following futures []
2022-05-12 22:31:17,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) done waiting for dependent futures
2022-05-12 22:31:17,509 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46923776}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 46923776}
2022-05-12 22:31:17,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104595456}) to executor  for transfer request: 0.
2022-05-12 22:31:17,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) about to wait for the following futures []
2022-05-12 22:31:17,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) done waiting for dependent futures
2022-05-12 22:31:17,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104595456}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 104595456}
2022-05-12 22:31:17,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:18,212 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110100480}) to executor  for transfer request: 0.
2022-05-12 22:31:18,212 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:18,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) about to wait for the following futures []
2022-05-12 22:31:18,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) done waiting for dependent futures
2022-05-12 22:31:18,213 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110100480}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 110100480}
2022-05-12 22:31:18,213 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:18,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40108032}) to executor  for transfer request: 0.
2022-05-12 22:31:18,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:18,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) about to wait for the following futures []
2022-05-12 22:31:18,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) done waiting for dependent futures
2022-05-12 22:31:18,283 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40108032}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 40108032}
2022-05-12 22:31:18,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:18,644 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:31:18,644 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:18,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:31:18,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:31:18,645 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 22020096}
2022-05-12 22:31:18,645 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:18,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91226112}) to executor  for transfer request: 0.
2022-05-12 22:31:18,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:18,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) about to wait for the following futures []
2022-05-12 22:31:18,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) done waiting for dependent futures
2022-05-12 22:31:18,684 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91226112}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 91226112}
2022-05-12 22:31:18,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96731136}) to executor  for transfer request: 0.
2022-05-12 22:31:19,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) about to wait for the following futures []
2022-05-12 22:31:19,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) done waiting for dependent futures
2022-05-12 22:31:19,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96731136}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 96731136}
2022-05-12 22:31:19,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:31:19,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:31:19,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:31:19,597 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 13369344}
2022-05-12 22:31:19,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:23,234 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:31:23,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:23,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:31:23,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:31:23,235 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 3145728}
2022-05-12 22:31:23,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:24,329 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56360960}) to executor  for transfer request: 0.
2022-05-12 22:31:24,329 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:24,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) about to wait for the following futures []
2022-05-12 22:31:24,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) done waiting for dependent futures
2022-05-12 22:31:24,329 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56360960}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 56360960}
2022-05-12 22:31:24,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:24,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74186752}) to executor  for transfer request: 0.
2022-05-12 22:31:24,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:24,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) about to wait for the following futures []
2022-05-12 22:31:24,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) done waiting for dependent futures
2022-05-12 22:31:24,736 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74186752}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 74186752}
2022-05-12 22:31:24,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:24,996 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96993280}) to executor  for transfer request: 0.
2022-05-12 22:31:24,996 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:24,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) about to wait for the following futures []
2022-05-12 22:31:24,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) done waiting for dependent futures
2022-05-12 22:31:24,996 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96993280}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 96993280}
2022-05-12 22:31:24,997 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:26,228 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:31:26,228 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:26,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:31:26,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:31:26,229 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 22282240}
2022-05-12 22:31:26,229 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:26,246 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104857600}) to executor  for transfer request: 0.
2022-05-12 22:31:26,247 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:26,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) about to wait for the following futures []
2022-05-12 22:31:26,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) done waiting for dependent futures
2022-05-12 22:31:26,248 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104857600}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 104857600}
2022-05-12 22:31:26,248 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:27,805 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40370176}) to executor  for transfer request: 0.
2022-05-12 22:31:27,805 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:27,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) about to wait for the following futures []
2022-05-12 22:31:27,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) done waiting for dependent futures
2022-05-12 22:31:27,806 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40370176}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 40370176}
2022-05-12 22:31:27,806 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:27,970 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91488256}) to executor  for transfer request: 0.
2022-05-12 22:31:27,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:27,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) about to wait for the following futures []
2022-05-12 22:31:27,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) done waiting for dependent futures
2022-05-12 22:31:27,971 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91488256}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 91488256}
2022-05-12 22:31:27,971 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:28,808 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47185920}) to executor  for transfer request: 0.
2022-05-12 22:31:28,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:28,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) about to wait for the following futures []
2022-05-12 22:31:28,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) done waiting for dependent futures
2022-05-12 22:31:28,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47185920}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 47185920}
2022-05-12 22:31:28,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110362624}) to executor  for transfer request: 0.
2022-05-12 22:31:29,217 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) about to wait for the following futures []
2022-05-12 22:31:29,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) done waiting for dependent futures
2022-05-12 22:31:29,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110362624}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 110362624}
2022-05-12 22:31:29,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,900 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:31:30,900 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:31:30,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:31:30,900 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 13631488}
2022-05-12 22:31:30,901 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:32,045 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105119744}) to executor  for transfer request: 0.
2022-05-12 22:31:32,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:32,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) about to wait for the following futures []
2022-05-12 22:31:32,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) done waiting for dependent futures
2022-05-12 22:31:32,046 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105119744}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 105119744}
2022-05-12 22:31:32,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:32,471 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97255424}) to executor  for transfer request: 0.
2022-05-12 22:31:32,471 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:32,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) about to wait for the following futures []
2022-05-12 22:31:32,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) done waiting for dependent futures
2022-05-12 22:31:32,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97255424}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 97255424}
2022-05-12 22:31:32,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:35,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62390272}) to executor  for transfer request: 0.
2022-05-12 22:31:35,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:35,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) about to wait for the following futures []
2022-05-12 22:31:35,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) done waiting for dependent futures
2022-05-12 22:31:35,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62390272}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 62390272}
2022-05-12 22:31:35,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:36,022 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:31:36,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:36,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:31:36,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:31:36,023 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 6029312}
2022-05-12 22:31:36,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:36,063 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47448064}) to executor  for transfer request: 0.
2022-05-12 22:31:36,064 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:36,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) about to wait for the following futures []
2022-05-12 22:31:36,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) done waiting for dependent futures
2022-05-12 22:31:36,064 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47448064}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 47448064}
2022-05-12 22:31:36,065 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56623104}) to executor  for transfer request: 0.
2022-05-12 22:31:37,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) about to wait for the following futures []
2022-05-12 22:31:37,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) done waiting for dependent futures
2022-05-12 22:31:37,235 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56623104}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 56623104}
2022-05-12 22:31:37,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,547 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40632320}) to executor  for transfer request: 0.
2022-05-12 22:31:37,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) about to wait for the following futures []
2022-05-12 22:31:37,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) done waiting for dependent futures
2022-05-12 22:31:37,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40632320}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 40632320}
2022-05-12 22:31:37,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,856 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91750400}) to executor  for transfer request: 0.
2022-05-12 22:31:37,856 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) about to wait for the following futures []
2022-05-12 22:31:37,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) done waiting for dependent futures
2022-05-12 22:31:37,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91750400}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 91750400}
2022-05-12 22:31:37,857 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:40,435 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105381888}) to executor  for transfer request: 0.
2022-05-12 22:31:40,435 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:40,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) about to wait for the following futures []
2022-05-12 22:31:40,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) done waiting for dependent futures
2022-05-12 22:31:40,436 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105381888}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 105381888}
2022-05-12 22:31:40,436 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:40,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:31:40,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:40,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:31:40,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:31:40,752 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 22544384}
2022-05-12 22:31:40,752 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,088 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97517568}) to executor  for transfer request: 0.
2022-05-12 22:31:41,088 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) about to wait for the following futures []
2022-05-12 22:31:41,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) done waiting for dependent futures
2022-05-12 22:31:41,088 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97517568}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 97517568}
2022-05-12 22:31:41,089 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,113 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:31:41,113 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:31:41,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:31:41,114 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 22282240}
2022-05-12 22:31:41,114 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:31:41,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:31:41,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:31:41,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 3407872}
2022-05-12 22:31:41,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,943 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74448896}) to executor  for transfer request: 0.
2022-05-12 22:31:41,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) about to wait for the following futures []
2022-05-12 22:31:41,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) done waiting for dependent futures
2022-05-12 22:31:41,944 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74448896}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 74448896}
2022-05-12 22:31:41,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110624768}) to executor  for transfer request: 0.
2022-05-12 22:31:42,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) about to wait for the following futures []
2022-05-12 22:31:42,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) done waiting for dependent futures
2022-05-12 22:31:42,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110624768}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 110624768}
2022-05-12 22:31:42,268 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:45,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92012544}) to executor  for transfer request: 0.
2022-05-12 22:31:45,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:45,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:45,982 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) about to wait for the following futures []
2022-05-12 22:31:45,982 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) done waiting for dependent futures
2022-05-12 22:31:45,982 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=117440512-125829119'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 117440512, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:45,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) about to wait for the following futures []
2022-05-12 22:31:45,983 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:45,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) done waiting for dependent futures
2022-05-12 22:31:45,983 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:45,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92012544}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 92012544}
2022-05-12 22:31:45,984 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:45,984 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:45,984 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:45,984 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:45,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:45,984 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:45,985 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:31:45,985 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:45,985 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:45,985 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=117440512-125829119', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:45,985 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:45,985 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:45,985 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:45,985 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:45,985 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:45,985 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:45,985 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:31:45,986 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:31:45,986 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:45,986 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=117440512-125829119
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223145Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:45,986 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223145Z
20220512/eu-central-1/s3/aws4_request
d6230363b76021913e8ca06dce88123acfa7295603f617f9d4e23f65293e5636
2022-05-12 22:31:45,986 botocore.auth DEBUG    Signature:
9945c5bed4c39893e300b64459746f27cc8a8fa1f38087a4ac8da99dc8c9a938
2022-05-12 22:31:45,986 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:45,987 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:45,987 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:45,987 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:45,987 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:31:46,529 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47710208}) to executor  for transfer request: 0.
2022-05-12 22:31:46,529 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:46,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) about to wait for the following futures []
2022-05-12 22:31:46,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) done waiting for dependent futures
2022-05-12 22:31:46,529 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47710208}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 47710208}
2022-05-12 22:31:46,530 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:46,838 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:31:46,839 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:46,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:31:46,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:31:46,839 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 13893632}
2022-05-12 22:31:46,840 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:48,511 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97779712}) to executor  for transfer request: 0.
2022-05-12 22:31:48,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:48,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) about to wait for the following futures []
2022-05-12 22:31:48,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) done waiting for dependent futures
2022-05-12 22:31:48,512 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97779712}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 97779712}
2022-05-12 22:31:48,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:48,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56885248}) to executor  for transfer request: 0.
2022-05-12 22:31:48,561 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:48,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) about to wait for the following futures []
2022-05-12 22:31:48,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) done waiting for dependent futures
2022-05-12 22:31:48,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56885248}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 56885248}
2022-05-12 22:31:48,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:31:49,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:31:49,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:31:49,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 6291456}
2022-05-12 22:31:49,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,963 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105644032}) to executor  for transfer request: 0.
2022-05-12 22:31:49,964 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) about to wait for the following futures []
2022-05-12 22:31:49,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) done waiting for dependent futures
2022-05-12 22:31:49,964 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105644032}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 105644032}
2022-05-12 22:31:49,965 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110886912}) to executor  for transfer request: 0.
2022-05-12 22:31:51,297 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) about to wait for the following futures []
2022-05-12 22:31:51,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) done waiting for dependent futures
2022-05-12 22:31:51,298 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110886912}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 110886912}
2022-05-12 22:31:51,298 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,496 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:31:51,496 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:31:51,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:31:51,497 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 22806528}
2022-05-12 22:31:51,497 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,500 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40894464}) to executor  for transfer request: 0.
2022-05-12 22:31:51,500 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) about to wait for the following futures []
2022-05-12 22:31:51,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) done waiting for dependent futures
2022-05-12 22:31:51,501 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40894464}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 40894464}
2022-05-12 22:31:51,501 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,689 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:51,690 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'AP6kvRJFDgqqWrCwW0rFw1pmXqo+t2sfYFcMhl+rxEkzu3H3vy4y0gdN8x+8Fph7JU505V9pJLY=', 'x-amz-request-id': '0DDB75MSW241WGFX', 'Date': 'Thu, 12 May 2022 22:31:52 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 117440512-125829119/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:31:51,690 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:51,690 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:51,691 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:51,691 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:53,159 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62652416}) to executor  for transfer request: 0.
2022-05-12 22:31:53,160 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:53,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) about to wait for the following futures []
2022-05-12 22:31:53,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) done waiting for dependent futures
2022-05-12 22:31:53,160 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62652416}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 62652416}
2022-05-12 22:31:53,161 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:53,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74711040}) to executor  for transfer request: 0.
2022-05-12 22:31:53,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:53,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) about to wait for the following futures []
2022-05-12 22:31:53,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) done waiting for dependent futures
2022-05-12 22:31:53,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74711040}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 74711040}
2022-05-12 22:31:53,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:56,122 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47972352}) to executor  for transfer request: 0.
2022-05-12 22:31:56,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:56,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) about to wait for the following futures []
2022-05-12 22:31:56,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) done waiting for dependent futures
2022-05-12 22:31:56,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47972352}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 47972352}
2022-05-12 22:31:56,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:57,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57147392}) to executor  for transfer request: 0.
2022-05-12 22:31:57,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:57,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) about to wait for the following futures []
2022-05-12 22:31:57,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) done waiting for dependent futures
2022-05-12 22:31:57,371 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57147392}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 57147392}
2022-05-12 22:31:57,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:57,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:31:57,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:57,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:31:57,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:31:57,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 3670016}
2022-05-12 22:31:57,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:58,554 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105906176}) to executor  for transfer request: 0.
2022-05-12 22:31:58,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:58,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) about to wait for the following futures []
2022-05-12 22:31:58,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) done waiting for dependent futures
2022-05-12 22:31:58,555 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105906176}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 105906176}
2022-05-12 22:31:58,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:58,833 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111149056}) to executor  for transfer request: 0.
2022-05-12 22:31:58,833 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:58,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) about to wait for the following futures []
2022-05-12 22:31:58,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) done waiting for dependent futures
2022-05-12 22:31:58,834 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111149056}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 111149056}
2022-05-12 22:31:58,834 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:59,694 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:31:59,694 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:59,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:31:59,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:31:59,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 22544384}
2022-05-12 22:31:59,695 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:32:00,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:32:00,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:32:00,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 23068672}
2022-05-12 22:32:00,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117440512}) to executor  for transfer request: 0.
2022-05-12 22:32:00,809 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) about to wait for the following futures []
2022-05-12 22:32:00,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) done waiting for dependent futures
2022-05-12 22:32:00,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117440512}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 117440512}
2022-05-12 22:32:00,810 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:02,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:32:02,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:02,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:32:02,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:32:02,381 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 14155776}
2022-05-12 22:32:02,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:03,518 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41156608}) to executor  for transfer request: 0.
2022-05-12 22:32:03,518 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:03,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) about to wait for the following futures []
2022-05-12 22:32:03,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) done waiting for dependent futures
2022-05-12 22:32:03,519 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41156608}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 41156608}
2022-05-12 22:32:03,519 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:03,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:32:03,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:03,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:32:03,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:32:03,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 6553600}
2022-05-12 22:32:03,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98041856}) to executor  for transfer request: 0.
2022-05-12 22:32:04,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) about to wait for the following futures []
2022-05-12 22:32:04,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) done waiting for dependent futures
2022-05-12 22:32:04,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98041856}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 98041856}
2022-05-12 22:32:04,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:05,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106168320}) to executor  for transfer request: 0.
2022-05-12 22:32:05,039 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:05,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) about to wait for the following futures []
2022-05-12 22:32:05,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) done waiting for dependent futures
2022-05-12 22:32:05,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106168320}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 106168320}
2022-05-12 22:32:05,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:09,434 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74973184}) to executor  for transfer request: 0.
2022-05-12 22:32:09,434 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:09,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) about to wait for the following futures []
2022-05-12 22:32:09,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) done waiting for dependent futures
2022-05-12 22:32:09,435 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74973184}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 74973184}
2022-05-12 22:32:09,435 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:09,894 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62914560}) to executor  for transfer request: 0.
2022-05-12 22:32:09,895 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:09,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) about to wait for the following futures []
2022-05-12 22:32:09,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) done waiting for dependent futures
2022-05-12 22:32:09,895 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62914560}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 62914560}
2022-05-12 22:32:09,896 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:10,335 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111411200}) to executor  for transfer request: 0.
2022-05-12 22:32:10,335 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:10,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) about to wait for the following futures []
2022-05-12 22:32:10,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) done waiting for dependent futures
2022-05-12 22:32:10,335 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111411200}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 111411200}
2022-05-12 22:32:10,336 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:10,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117702656}) to executor  for transfer request: 0.
2022-05-12 22:32:10,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:10,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) about to wait for the following futures []
2022-05-12 22:32:10,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) done waiting for dependent futures
2022-05-12 22:32:10,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117702656}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 117702656}
2022-05-12 22:32:10,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98304000}) to executor  for transfer request: 0.
2022-05-12 22:32:11,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) about to wait for the following futures []
2022-05-12 22:32:11,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) done waiting for dependent futures
2022-05-12 22:32:11,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98304000}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 98304000}
2022-05-12 22:32:11,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:12,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48234496}) to executor  for transfer request: 0.
2022-05-12 22:32:12,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:12,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) about to wait for the following futures []
2022-05-12 22:32:12,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) done waiting for dependent futures
2022-05-12 22:32:12,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48234496}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 48234496}
2022-05-12 22:32:12,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:12,233 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106430464}) to executor  for transfer request: 0.
2022-05-12 22:32:12,233 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:12,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) about to wait for the following futures []
2022-05-12 22:32:12,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) done waiting for dependent futures
2022-05-12 22:32:12,233 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106430464}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 106430464}
2022-05-12 22:32:12,234 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:13,237 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57409536}) to executor  for transfer request: 0.
2022-05-12 22:32:13,237 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:13,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) about to wait for the following futures []
2022-05-12 22:32:13,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) done waiting for dependent futures
2022-05-12 22:32:13,238 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57409536}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 57409536}
2022-05-12 22:32:13,238 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:13,239 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41418752}) to executor  for transfer request: 0.
2022-05-12 22:32:13,239 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:13,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) about to wait for the following futures []
2022-05-12 22:32:13,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) done waiting for dependent futures
2022-05-12 22:32:13,240 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41418752}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 41418752}
2022-05-12 22:32:13,240 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:14,011 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:32:14,011 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:14,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:32:14,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:32:14,012 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 3932160}
2022-05-12 22:32:14,012 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,007 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:32:15,008 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:15,008 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:32:15,008 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:32:15,008 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 14417920}
2022-05-12 22:32:15,009 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,377 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:32:15,377 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:15,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:32:15,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:32:15,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 6815744}
2022-05-12 22:32:15,378 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:16,501 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:32:16,501 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:16,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:32:16,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:32:16,501 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 23330816}
2022-05-12 22:32:16,502 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:16,861 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98566144}) to executor  for transfer request: 0.
2022-05-12 22:32:16,861 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:16,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) about to wait for the following futures []
2022-05-12 22:32:16,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) done waiting for dependent futures
2022-05-12 22:32:16,861 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98566144}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 98566144}
2022-05-12 22:32:16,862 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,876 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111673344}) to executor  for transfer request: 0.
2022-05-12 22:32:18,876 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) about to wait for the following futures []
2022-05-12 22:32:18,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) done waiting for dependent futures
2022-05-12 22:32:18,877 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111673344}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 111673344}
2022-05-12 22:32:18,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,898 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106692608}) to executor  for transfer request: 0.
2022-05-12 22:32:18,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) about to wait for the following futures []
2022-05-12 22:32:18,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) done waiting for dependent futures
2022-05-12 22:32:18,898 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106692608}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 106692608}
2022-05-12 22:32:18,899 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:19,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48496640}) to executor  for transfer request: 0.
2022-05-12 22:32:19,208 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:19,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) about to wait for the following futures []
2022-05-12 22:32:19,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) done waiting for dependent futures
2022-05-12 22:32:19,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48496640}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 48496640}
2022-05-12 22:32:19,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:19,456 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:32:19,456 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:19,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:32:19,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:32:19,457 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 22806528}
2022-05-12 22:32:19,457 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,141 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75235328}) to executor  for transfer request: 0.
2022-05-12 22:32:20,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:20,142 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,142 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) about to wait for the following futures []
2022-05-12 22:32:20,142 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) done waiting for dependent futures
2022-05-12 22:32:20,142 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=125829120-134217727'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 125829120, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:20,142 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:20,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) about to wait for the following futures []
2022-05-12 22:32:20,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) done waiting for dependent futures
2022-05-12 22:32:20,143 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:20,143 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75235328}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 75235328}
2022-05-12 22:32:20,143 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:20,143 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:20,144 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:20,144 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:20,144 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,144 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:20,144 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:32:20,144 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:20,145 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:20,145 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=125829120-134217727', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:20,145 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:20,145 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:20,145 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:20,145 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:20,145 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:20,145 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:20,145 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:32:20,145 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:32:20,146 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:20,146 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=125829120-134217727
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223220Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:20,146 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223220Z
20220512/eu-central-1/s3/aws4_request
3fdfdfaffa9609dfe43a7c420d51ea9bc6ce83eaca8a4fa2ce7f1f9c26e84744
2022-05-12 22:32:20,146 botocore.auth DEBUG    Signature:
04f10360169781a7b1ac3349bf8eb696833ce20e6c14398f562b07990951b068
2022-05-12 22:32:20,146 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:20,146 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:20,146 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:20,147 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:20,354 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:20,355 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Z0haLsEDK6UljeFFKEp6qwjLbfUQqv2LflUEQ4+FURV6geYeauCJ4t8QZm7uIMNjXX4V3WvS4Eo=', 'x-amz-request-id': 'V5TGZF6QDZCA3Y6A', 'Date': 'Thu, 12 May 2022 22:32:21 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 125829120-134217727/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:20,355 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:20,355 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:20,356 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:20,356 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:20,917 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117964800}) to executor  for transfer request: 0.
2022-05-12 22:32:20,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:20,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) about to wait for the following futures []
2022-05-12 22:32:20,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) done waiting for dependent futures
2022-05-12 22:32:20,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117964800}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 117964800}
2022-05-12 22:32:20,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57671680}) to executor  for transfer request: 0.
2022-05-12 22:32:23,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) about to wait for the following futures []
2022-05-12 22:32:23,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) done waiting for dependent futures
2022-05-12 22:32:23,252 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57671680}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 57671680}
2022-05-12 22:32:23,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:24,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63176704}) to executor  for transfer request: 0.
2022-05-12 22:32:24,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:24,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) about to wait for the following futures []
2022-05-12 22:32:24,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) done waiting for dependent futures
2022-05-12 22:32:24,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63176704}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 63176704}
2022-05-12 22:32:24,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:25,731 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106954752}) to executor  for transfer request: 0.
2022-05-12 22:32:25,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:25,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) about to wait for the following futures []
2022-05-12 22:32:25,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) done waiting for dependent futures
2022-05-12 22:32:25,732 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106954752}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 106954752}
2022-05-12 22:32:25,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:25,963 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41680896}) to executor  for transfer request: 0.
2022-05-12 22:32:25,963 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:25,964 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:25,964 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) about to wait for the following futures []
2022-05-12 22:32:25,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) about to wait for the following futures []
2022-05-12 22:32:25,964 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) done waiting for dependent futures
2022-05-12 22:32:25,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) done waiting for dependent futures
2022-05-12 22:32:25,965 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=134217728-142606335'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 134217728, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:25,965 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41680896}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 41680896}
2022-05-12 22:32:25,965 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:25,966 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:25,966 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:25,966 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:25,966 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:25,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:25,967 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:25,967 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:25,968 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:32:25,968 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:25,968 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:25,968 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=134217728-142606335', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:25,968 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:25,968 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:25,968 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:25,968 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:25,968 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:25,968 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:25,969 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:32:25,969 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:32:25,969 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:25,969 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=134217728-142606335
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223225Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:25,969 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223225Z
20220512/eu-central-1/s3/aws4_request
7dce7669b9ef37b51ab699dac5f0d873e4b9e2027cf15dcfae99ee18da34095e
2022-05-12 22:32:25,969 botocore.auth DEBUG    Signature:
ba466c56c34d56b0c4e1cddc2657ef9750f2dda2c4ece9001943dc568e6ab384
2022-05-12 22:32:25,970 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:25,970 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:25,970 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:25,970 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:26,166 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:26,166 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2PEgoNertgBq3obYwhmJRwjz/Smqefr+yIDai6SQeg098jOpbeUrv7611myLwVxBkKnDArap2Z8=', 'x-amz-request-id': 'BSWGWNWEDN8EHEN8', 'Date': 'Thu, 12 May 2022 22:32:27 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 134217728-142606335/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:26,166 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:26,167 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:26,167 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:26,168 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:26,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:32:26,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:26,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:32:26,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:32:26,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 7077888}
2022-05-12 22:32:26,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:26,438 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:32:26,438 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:26,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:32:26,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:32:26,439 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 23592960}
2022-05-12 22:32:26,440 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:28,824 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48758784}) to executor  for transfer request: 0.
2022-05-12 22:32:28,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:28,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) about to wait for the following futures []
2022-05-12 22:32:28,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) done waiting for dependent futures
2022-05-12 22:32:28,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48758784}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 48758784}
2022-05-12 22:32:28,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,084 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98828288}) to executor  for transfer request: 0.
2022-05-12 22:32:29,085 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) about to wait for the following futures []
2022-05-12 22:32:29,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) done waiting for dependent futures
2022-05-12 22:32:29,086 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98828288}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 98828288}
2022-05-12 22:32:29,086 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111935488}) to executor  for transfer request: 0.
2022-05-12 22:32:29,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) about to wait for the following futures []
2022-05-12 22:32:29,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) done waiting for dependent futures
2022-05-12 22:32:29,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111935488}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 111935488}
2022-05-12 22:32:29,175 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:30,305 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107216896}) to executor  for transfer request: 0.
2022-05-12 22:32:30,305 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:30,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) about to wait for the following futures []
2022-05-12 22:32:30,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) done waiting for dependent futures
2022-05-12 22:32:30,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107216896}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 107216896}
2022-05-12 22:32:30,306 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:30,936 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125829120}) to executor  for transfer request: 0.
2022-05-12 22:32:30,936 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:30,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) about to wait for the following futures []
2022-05-12 22:32:30,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) done waiting for dependent futures
2022-05-12 22:32:30,936 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125829120}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 125829120}
2022-05-12 22:32:30,937 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,838 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118226944}) to executor  for transfer request: 0.
2022-05-12 22:32:31,838 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:31,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) about to wait for the following futures []
2022-05-12 22:32:31,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) done waiting for dependent futures
2022-05-12 22:32:31,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118226944}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 118226944}
2022-05-12 22:32:31,839 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:33,316 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134217728}) to executor  for transfer request: 0.
2022-05-12 22:32:33,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:33,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) about to wait for the following futures []
2022-05-12 22:32:33,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) done waiting for dependent futures
2022-05-12 22:32:33,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:32:33,317 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134217728}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 134217728}
2022-05-12 22:32:33,317 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:33,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:32:33,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:32:33,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 14680064}
2022-05-12 22:32:33,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:33,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:33,897 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:32:33,897 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:33,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:32:33,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:32:33,898 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 23068672}
2022-05-12 22:32:33,898 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:36,627 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49020928}) to executor  for transfer request: 0.
2022-05-12 22:32:36,627 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:36,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) about to wait for the following futures []
2022-05-12 22:32:36,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) done waiting for dependent futures
2022-05-12 22:32:36,628 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49020928}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 49020928}
2022-05-12 22:32:36,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:36,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57933824}) to executor  for transfer request: 0.
2022-05-12 22:32:36,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:36,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) about to wait for the following futures []
2022-05-12 22:32:36,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) done waiting for dependent futures
2022-05-12 22:32:36,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57933824}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 57933824}
2022-05-12 22:32:36,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:37,371 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126091264}) to executor  for transfer request: 0.
2022-05-12 22:32:37,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:37,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) about to wait for the following futures []
2022-05-12 22:32:37,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) done waiting for dependent futures
2022-05-12 22:32:37,372 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126091264}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 126091264}
2022-05-12 22:32:37,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:32:38,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:32:38,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:32:38,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 7340032}
2022-05-12 22:32:38,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,142 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107479040}) to executor  for transfer request: 0.
2022-05-12 22:32:38,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) about to wait for the following futures []
2022-05-12 22:32:38,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) done waiting for dependent futures
2022-05-12 22:32:38,143 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107479040}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 107479040}
2022-05-12 22:32:38,143 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,224 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:32:38,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:32:38,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:32:38,225 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 4194304}
2022-05-12 22:32:38,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,480 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:32:38,480 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:32:38,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:32:38,481 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 23855104}
2022-05-12 22:32:38,481 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:39,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99090432}) to executor  for transfer request: 0.
2022-05-12 22:32:39,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:39,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) about to wait for the following futures []
2022-05-12 22:32:39,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) done waiting for dependent futures
2022-05-12 22:32:39,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99090432}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 99090432}
2022-05-12 22:32:39,516 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:41,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112197632}) to executor  for transfer request: 0.
2022-05-12 22:32:41,458 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:41,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) about to wait for the following futures []
2022-05-12 22:32:41,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) done waiting for dependent futures
2022-05-12 22:32:41,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112197632}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 112197632}
2022-05-12 22:32:41,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:41,765 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118489088}) to executor  for transfer request: 0.
2022-05-12 22:32:41,765 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:41,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) about to wait for the following futures []
2022-05-12 22:32:41,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) done waiting for dependent futures
2022-05-12 22:32:41,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118489088}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 118489088}
2022-05-12 22:32:41,766 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:42,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107741184}) to executor  for transfer request: 0.
2022-05-12 22:32:42,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:42,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) about to wait for the following futures []
2022-05-12 22:32:42,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) done waiting for dependent futures
2022-05-12 22:32:42,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107741184}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 107741184}
2022-05-12 22:32:42,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:44,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49283072}) to executor  for transfer request: 0.
2022-05-12 22:32:44,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:44,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) about to wait for the following futures []
2022-05-12 22:32:44,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) done waiting for dependent futures
2022-05-12 22:32:44,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49283072}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 49283072}
2022-05-12 22:32:44,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:45,249 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108003328}) to executor  for transfer request: 0.
2022-05-12 22:32:45,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:45,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) about to wait for the following futures []
2022-05-12 22:32:45,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) done waiting for dependent futures
2022-05-12 22:32:45,250 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108003328}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 108003328}
2022-05-12 22:32:45,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:46,737 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134479872}) to executor  for transfer request: 0.
2022-05-12 22:32:46,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:46,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) about to wait for the following futures []
2022-05-12 22:32:46,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) done waiting for dependent futures
2022-05-12 22:32:46,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134479872}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 134479872}
2022-05-12 22:32:46,738 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:46,863 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99352576}) to executor  for transfer request: 0.
2022-05-12 22:32:46,864 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:46,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) about to wait for the following futures []
2022-05-12 22:32:46,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) done waiting for dependent futures
2022-05-12 22:32:46,864 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99352576}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 99352576}
2022-05-12 22:32:46,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,304 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:32:48,304 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:32:48,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:32:48,305 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 24117248}
2022-05-12 22:32:48,305 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,839 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112459776}) to executor  for transfer request: 0.
2022-05-12 22:32:48,840 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) about to wait for the following futures []
2022-05-12 22:32:48,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) done waiting for dependent futures
2022-05-12 22:32:48,840 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112459776}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 112459776}
2022-05-12 22:32:48,841 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:49,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108265472}) to executor  for transfer request: 0.
2022-05-12 22:32:49,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:49,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) about to wait for the following futures []
2022-05-12 22:32:49,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) done waiting for dependent futures
2022-05-12 22:32:49,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108265472}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 108265472}
2022-05-12 22:32:49,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:50,084 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118751232}) to executor  for transfer request: 0.
2022-05-12 22:32:50,085 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:50,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) about to wait for the following futures []
2022-05-12 22:32:50,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) done waiting for dependent futures
2022-05-12 22:32:50,085 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118751232}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 118751232}
2022-05-12 22:32:50,086 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:50,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49545216}) to executor  for transfer request: 0.
2022-05-12 22:32:50,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:50,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) about to wait for the following futures []
2022-05-12 22:32:50,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) done waiting for dependent futures
2022-05-12 22:32:50,127 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49545216}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 49545216}
2022-05-12 22:32:50,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:50,329 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:32:50,330 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:50,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:32:50,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:32:50,330 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 23330816}
2022-05-12 22:32:50,331 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:50,825 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:32:50,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:50,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:32:50,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:32:50,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 14942208}
2022-05-12 22:32:50,826 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:52,985 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:32:52,985 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:52,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:32:52,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:32:52,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 7602176}
2022-05-12 22:32:52,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:53,439 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108527616}) to executor  for transfer request: 0.
2022-05-12 22:32:53,439 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:53,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) about to wait for the following futures []
2022-05-12 22:32:53,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) done waiting for dependent futures
2022-05-12 22:32:53,440 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108527616}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 108527616}
2022-05-12 22:32:53,440 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:54,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99614720}) to executor  for transfer request: 0.
2022-05-12 22:32:54,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:54,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) about to wait for the following futures []
2022-05-12 22:32:54,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) done waiting for dependent futures
2022-05-12 22:32:54,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99614720}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 99614720}
2022-05-12 22:32:54,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:55,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:32:55,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:55,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:32:55,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:32:55,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 4456448}
2022-05-12 22:32:55,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:56,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108789760}) to executor  for transfer request: 0.
2022-05-12 22:32:56,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:56,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:56,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) about to wait for the following futures []
2022-05-12 22:32:56,886 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) about to wait for the following futures []
2022-05-12 22:32:56,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) done waiting for dependent futures
2022-05-12 22:32:56,887 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) done waiting for dependent futures
2022-05-12 22:32:56,887 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108789760}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 108789760}
2022-05-12 22:32:56,887 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=142606336-150994943'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 142606336, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:56,887 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:56,887 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:56,888 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:56,888 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:56,888 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:56,888 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:56,888 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:56,888 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:56,888 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:32:56,888 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:56,888 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:56,889 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=142606336-150994943', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:56,889 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:56,889 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:56,889 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:56,889 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:56,889 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:56,889 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:56,889 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:32:56,889 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:32:56,890 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:56,890 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=142606336-150994943
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223256Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:56,890 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223256Z
20220512/eu-central-1/s3/aws4_request
7fc3d2fbfe8c647bbd7f9f5bcea99fb363836b1bb9c8c92e81d980f3abd0cb33
2022-05-12 22:32:56,890 botocore.auth DEBUG    Signature:
4701e6271c3fcac4743b53e0e38764da83288be55197f5c05f2151e2b734d3d3
2022-05-12 22:32:56,890 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:56,890 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:56,890 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:56,891 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:56,891 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:32:58,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134742016}) to executor  for transfer request: 0.
2022-05-12 22:32:58,076 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:58,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) about to wait for the following futures []
2022-05-12 22:32:58,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) done waiting for dependent futures
2022-05-12 22:32:58,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134742016}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 134742016}
2022-05-12 22:32:58,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:58,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49807360}) to executor  for transfer request: 0.
2022-05-12 22:32:58,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:58,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) about to wait for the following futures []
2022-05-12 22:32:58,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) done waiting for dependent futures
2022-05-12 22:32:58,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49807360}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 49807360}
2022-05-12 22:32:58,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:58,449 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126353408}) to executor  for transfer request: 0.
2022-05-12 22:32:58,449 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:58,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) about to wait for the following futures []
2022-05-12 22:32:58,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) done waiting for dependent futures
2022-05-12 22:32:58,450 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126353408}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 126353408}
2022-05-12 22:32:58,450 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:59,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112721920}) to executor  for transfer request: 0.
2022-05-12 22:32:59,315 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:59,315 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) about to wait for the following futures []
2022-05-12 22:32:59,315 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) done waiting for dependent futures
2022-05-12 22:32:59,315 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112721920}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 112721920}
2022-05-12 22:32:59,316 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:59,818 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:32:59,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:59,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:32:59,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:32:59,818 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 15204352}
2022-05-12 22:32:59,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,384 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:33:01,384 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:33:01,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:33:01,385 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 24379392}
2022-05-12 22:33:01,385 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,445 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63438848}) to executor  for transfer request: 0.
2022-05-12 22:33:01,445 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) about to wait for the following futures []
2022-05-12 22:33:01,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) done waiting for dependent futures
2022-05-12 22:33:01,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63438848}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 63438848}
2022-05-12 22:33:01,446 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,780 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:33:01,780 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:33:01,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:33:01,781 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 23592960}
2022-05-12 22:33:01,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,843 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:33:01,843 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:33:01,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:33:01,844 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 7864320}
2022-05-12 22:33:01,844 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:02,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99876864}) to executor  for transfer request: 0.
2022-05-12 22:33:02,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:02,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) about to wait for the following futures []
2022-05-12 22:33:02,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) done waiting for dependent futures
2022-05-12 22:33:02,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99876864}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 99876864}
2022-05-12 22:33:02,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:02,365 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135004160}) to executor  for transfer request: 0.
2022-05-12 22:33:02,365 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:02,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) about to wait for the following futures []
2022-05-12 22:33:02,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) done waiting for dependent futures
2022-05-12 22:33:02,366 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135004160}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 135004160}
2022-05-12 22:33:02,366 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:02,709 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:02,710 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jJa8QSKvbHtOp01sTeHBseGqioeAbW3bmAq/eeY2iodqHOB9YZjbQmp0xlJsjXxs98xkEiCeT38=', 'x-amz-request-id': 'XM5Y711E4MFKTKR7', 'Date': 'Thu, 12 May 2022 22:33:03 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 142606336-150994943/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:02,710 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:02,710 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:02,711 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:02,711 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:02,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119013376}) to executor  for transfer request: 0.
2022-05-12 22:33:02,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:02,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) about to wait for the following futures []
2022-05-12 22:33:02,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) done waiting for dependent futures
2022-05-12 22:33:02,829 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119013376}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 119013376}
2022-05-12 22:33:02,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,146 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50069504}) to executor  for transfer request: 0.
2022-05-12 22:33:05,146 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:05,147 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,147 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) about to wait for the following futures []
2022-05-12 22:33:05,147 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) done waiting for dependent futures
2022-05-12 22:33:05,147 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=150994944-159383551'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 150994944, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:05,147 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:05,147 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:05,147 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:05,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) about to wait for the following futures []
2022-05-12 22:33:05,148 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:05,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) done waiting for dependent futures
2022-05-12 22:33:05,148 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:05,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50069504}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 50069504}
2022-05-12 22:33:05,149 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:05,149 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:05,150 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:33:05,150 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:05,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,150 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:05,150 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=150994944-159383551', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:05,151 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:05,151 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:05,151 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:05,151 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:05,151 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:05,151 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:05,151 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:33:05,151 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:33:05,152 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:05,152 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=150994944-159383551
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223305Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:05,152 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223305Z
20220512/eu-central-1/s3/aws4_request
2ee32a04b9596e231cd950447ffb63466cd8e43dc7ef68d2d5bd9238cd090d49
2022-05-12 22:33:05,152 botocore.auth DEBUG    Signature:
d5165d0a2394df0d038830dc87dc44283f9a3da6ab38c540104136b68353356f
2022-05-12 22:33:05,152 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:05,152 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:05,152 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:05,153 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:05,383 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:05,384 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1qSJ2nfmK7WKDiDek3SimtKS2svOkG8d57b+CrkEdQ2Lt6wR8LYQ/Vh8t1K6sfqjCHGHyziAGTU=', 'x-amz-request-id': 'XNAZ772SXPKC3E7F', 'Date': 'Thu, 12 May 2022 22:33:06 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 150994944-159383551/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:33:05,384 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:05,385 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:05,385 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:05,385 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:05,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58195968}) to executor  for transfer request: 0.
2022-05-12 22:33:05,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:05,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) about to wait for the following futures []
2022-05-12 22:33:05,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) done waiting for dependent futures
2022-05-12 22:33:05,910 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58195968}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 58195968}
2022-05-12 22:33:05,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:07,254 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112984064}) to executor  for transfer request: 0.
2022-05-12 22:33:07,255 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:07,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) about to wait for the following futures []
2022-05-12 22:33:07,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) done waiting for dependent futures
2022-05-12 22:33:07,255 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112984064}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 112984064}
2022-05-12 22:33:07,256 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:08,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126615552}) to executor  for transfer request: 0.
2022-05-12 22:33:08,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:08,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) about to wait for the following futures []
2022-05-12 22:33:08,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) done waiting for dependent futures
2022-05-12 22:33:08,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126615552}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 126615552}
2022-05-12 22:33:08,375 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:08,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:33:08,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:08,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:33:08,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:33:08,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 4718592}
2022-05-12 22:33:08,854 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:09,057 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100139008}) to executor  for transfer request: 0.
2022-05-12 22:33:09,057 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:09,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) about to wait for the following futures []
2022-05-12 22:33:09,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) done waiting for dependent futures
2022-05-12 22:33:09,058 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100139008}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 100139008}
2022-05-12 22:33:09,058 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:09,642 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:33:09,642 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:09,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:33:09,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:33:09,643 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 24641536}
2022-05-12 22:33:09,643 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,056 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142606336}) to executor  for transfer request: 0.
2022-05-12 22:33:10,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) about to wait for the following futures []
2022-05-12 22:33:10,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) done waiting for dependent futures
2022-05-12 22:33:10,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142606336}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 142606336}
2022-05-12 22:33:10,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135266304}) to executor  for transfer request: 0.
2022-05-12 22:33:10,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) about to wait for the following futures []
2022-05-12 22:33:10,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) done waiting for dependent futures
2022-05-12 22:33:10,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135266304}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 135266304}
2022-05-12 22:33:10,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,965 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119275520}) to executor  for transfer request: 0.
2022-05-12 22:33:10,966 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) about to wait for the following futures []
2022-05-12 22:33:10,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) done waiting for dependent futures
2022-05-12 22:33:10,966 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119275520}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 119275520}
2022-05-12 22:33:10,967 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:11,906 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:33:11,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:11,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:33:11,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:33:11,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 23855104}
2022-05-12 22:33:11,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:12,551 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:33:12,551 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:12,551 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:12,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:33:12,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:33:12,552 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 8126464}
2022-05-12 22:33:12,552 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150994944}) to executor  for transfer request: 0.
2022-05-12 22:33:13,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) about to wait for the following futures []
2022-05-12 22:33:13,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) done waiting for dependent futures
2022-05-12 22:33:13,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150994944}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 150994944}
2022-05-12 22:33:13,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,485 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100401152}) to executor  for transfer request: 0.
2022-05-12 22:33:13,486 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,486 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) about to wait for the following futures []
2022-05-12 22:33:13,486 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) about to wait for the following futures []
2022-05-12 22:33:13,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) done waiting for dependent futures
2022-05-12 22:33:13,487 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) done waiting for dependent futures
2022-05-12 22:33:13,487 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100401152}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 100401152}
2022-05-12 22:33:13,487 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=159383552-167772159'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 159383552, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:13,488 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:13,488 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:13,488 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:13,488 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,488 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:13,488 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:13,488 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:13,489 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:13,489 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:33:13,489 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:13,489 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:13,489 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=159383552-167772159', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:13,489 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:13,489 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:13,489 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:13,489 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:13,489 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:13,489 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:13,489 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:33:13,490 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:33:13,490 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:13,490 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=159383552-167772159
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223313Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:13,490 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223313Z
20220512/eu-central-1/s3/aws4_request
4664fcd745d8cc042e8e8d623dae708738695f47a5499cf3fdbf3a9a3595693c
2022-05-12 22:33:13,490 botocore.auth DEBUG    Signature:
9f41985549c2135a50ec867468614aaa38fe8095ac8b8a6b222b30138afe8388
2022-05-12 22:33:13,490 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:13,490 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:13,491 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:13,491 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:13,491 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:15,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:33:15,147 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:15,147 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:33:15,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:33:15,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 15466496}
2022-05-12 22:33:15,148 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:15,371 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142868480}) to executor  for transfer request: 0.
2022-05-12 22:33:15,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:15,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) about to wait for the following futures []
2022-05-12 22:33:15,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) done waiting for dependent futures
2022-05-12 22:33:15,372 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142868480}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 142868480}
2022-05-12 22:33:15,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:17,386 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126877696}) to executor  for transfer request: 0.
2022-05-12 22:33:17,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:17,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) about to wait for the following futures []
2022-05-12 22:33:17,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) done waiting for dependent futures
2022-05-12 22:33:17,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126877696}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 126877696}
2022-05-12 22:33:17,387 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:18,255 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113246208}) to executor  for transfer request: 0.
2022-05-12 22:33:18,255 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:18,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) about to wait for the following futures []
2022-05-12 22:33:18,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) done waiting for dependent futures
2022-05-12 22:33:18,255 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113246208}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 113246208}
2022-05-12 22:33:18,256 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:18,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135528448}) to executor  for transfer request: 0.
2022-05-12 22:33:18,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:18,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) about to wait for the following futures []
2022-05-12 22:33:18,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) done waiting for dependent futures
2022-05-12 22:33:18,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135528448}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 135528448}
2022-05-12 22:33:18,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:18,918 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:18,918 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jD3NADMa9+ZudxVMhfzSi5ecYUyEfiEBmNRrrQr8pwA+0Ey66TbM5F0gZhUsGLxl6+WbO51jqLI=', 'x-amz-request-id': 'HF4QNV8BT76EWBWK', 'Date': 'Thu, 12 May 2022 22:33:19 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 159383552-167772159/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:18,918 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:18,919 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:18,919 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:18,919 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:19,783 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:33:19,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:19,783 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:33:19,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:19,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:19,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:33:19,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:33:19,784 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 24903680}
2022-05-12 22:33:19,784 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:19,784 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:33:19,784 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:33:19,784 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:33:19,785 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:21,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119537664}) to executor  for transfer request: 0.
2022-05-12 22:33:21,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:21,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) about to wait for the following futures []
2022-05-12 22:33:21,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) done waiting for dependent futures
2022-05-12 22:33:21,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119537664}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 119537664}
2022-05-12 22:33:21,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,980 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151257088}) to executor  for transfer request: 0.
2022-05-12 22:33:23,981 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) about to wait for the following futures []
2022-05-12 22:33:23,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) done waiting for dependent futures
2022-05-12 22:33:23,981 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151257088}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 151257088}
2022-05-12 22:33:23,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:24,822 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143130624}) to executor  for transfer request: 0.
2022-05-12 22:33:24,822 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:24,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) about to wait for the following futures []
2022-05-12 22:33:24,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) done waiting for dependent futures
2022-05-12 22:33:24,822 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143130624}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 143130624}
2022-05-12 22:33:24,822 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,127 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:33:25,127 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:33:25,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:33:25,128 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 15728640}
2022-05-12 22:33:25,128 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,441 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:33:25,441 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:33:25,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:33:25,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 24117248}
2022-05-12 22:33:25,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,748 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159383552}) to executor  for transfer request: 0.
2022-05-12 22:33:25,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) about to wait for the following futures []
2022-05-12 22:33:25,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) done waiting for dependent futures
2022-05-12 22:33:25,749 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159383552}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 159383552}
2022-05-12 22:33:25,750 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:26,746 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113508352}) to executor  for transfer request: 0.
2022-05-12 22:33:26,746 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:26,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) about to wait for the following futures []
2022-05-12 22:33:26,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) done waiting for dependent futures
2022-05-12 22:33:26,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113508352}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 113508352}
2022-05-12 22:33:26,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:27,263 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:33:27,263 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:27,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:33:27,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:33:27,264 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 4980736}
2022-05-12 22:33:27,265 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:28,015 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135790592}) to executor  for transfer request: 0.
2022-05-12 22:33:28,015 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:28,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) about to wait for the following futures []
2022-05-12 22:33:28,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) done waiting for dependent futures
2022-05-12 22:33:28,016 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135790592}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 135790592}
2022-05-12 22:33:28,016 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:31,040 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58458112}) to executor  for transfer request: 0.
2022-05-12 22:33:31,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:31,041 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:31,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) about to wait for the following futures []
2022-05-12 22:33:31,041 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) about to wait for the following futures []
2022-05-12 22:33:31,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) done waiting for dependent futures
2022-05-12 22:33:31,042 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) done waiting for dependent futures
2022-05-12 22:33:31,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58458112}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 58458112}
2022-05-12 22:33:31,042 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=167772160-176160767'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 167772160, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:31,043 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:31,043 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:31,043 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:31,043 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:31,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:31,043 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:31,044 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:31,044 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:31,044 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:33:31,044 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:31,044 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:31,044 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=167772160-176160767', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:31,044 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:31,045 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:31,045 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:31,045 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:31,045 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:31,045 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:31,045 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:33:31,045 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:33:31,045 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:31,045 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=167772160-176160767
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223331Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:31,046 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223331Z
20220512/eu-central-1/s3/aws4_request
c871015ab6cc483a107e7d98b5c0f23dc482c73291eb3e0418b96fb1445925e6
2022-05-12 22:33:31,046 botocore.auth DEBUG    Signature:
d64b36d3412c807fdea4843aeba7103525d0c4d239d8533e9c3989da24cd8341
2022-05-12 22:33:31,046 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:31,046 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:31,046 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:31,046 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:31,196 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159645696}) to executor  for transfer request: 0.
2022-05-12 22:33:31,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:31,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) about to wait for the following futures []
2022-05-12 22:33:31,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) done waiting for dependent futures
2022-05-12 22:33:31,197 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159645696}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 159645696}
2022-05-12 22:33:31,198 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:31,204 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:31,204 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'bdWYNw3qaKtViEBKbuapaTUki6tlcUSsrusqOPracr48UyFMgEsRMw8ajmcKRTMGivKb0BvgY/I=', 'x-amz-request-id': '0TCNZPBBM40GQD6J', 'Date': 'Thu, 12 May 2022 22:33:32 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 167772160-176160767/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:33:31,204 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:31,205 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:31,205 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:31,205 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:31,754 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119799808}) to executor  for transfer request: 0.
2022-05-12 22:33:31,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:31,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) about to wait for the following futures []
2022-05-12 22:33:31,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) done waiting for dependent futures
2022-05-12 22:33:31,755 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119799808}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 119799808}
2022-05-12 22:33:31,755 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:32,232 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143392768}) to executor  for transfer request: 0.
2022-05-12 22:33:32,232 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:32,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) about to wait for the following futures []
2022-05-12 22:33:32,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) done waiting for dependent futures
2022-05-12 22:33:32,233 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143392768}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 143392768}
2022-05-12 22:33:32,233 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:32,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113770496}) to executor  for transfer request: 0.
2022-05-12 22:33:32,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:32,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) about to wait for the following futures []
2022-05-12 22:33:32,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) done waiting for dependent futures
2022-05-12 22:33:32,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113770496}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 113770496}
2022-05-12 22:33:32,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:33,123 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127139840}) to executor  for transfer request: 0.
2022-05-12 22:33:33,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:33,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) about to wait for the following futures []
2022-05-12 22:33:33,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) done waiting for dependent futures
2022-05-12 22:33:33,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127139840}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 127139840}
2022-05-12 22:33:33,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:34,579 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:33:34,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:34,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:33:34,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:33:34,580 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 24379392}
2022-05-12 22:33:34,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:35,675 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136052736}) to executor  for transfer request: 0.
2022-05-12 22:33:35,676 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:35,676 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) about to wait for the following futures []
2022-05-12 22:33:35,676 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) done waiting for dependent futures
2022-05-12 22:33:35,676 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136052736}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 136052736}
2022-05-12 22:33:35,677 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,694 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:33:36,694 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:33:36,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:33:36,695 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 15990784}
2022-05-12 22:33:36,695 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,884 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151519232}) to executor  for transfer request: 0.
2022-05-12 22:33:37,884 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:37,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) about to wait for the following futures []
2022-05-12 22:33:37,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) done waiting for dependent futures
2022-05-12 22:33:37,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151519232}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 151519232}
2022-05-12 22:33:37,885 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:39,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120061952}) to executor  for transfer request: 0.
2022-05-12 22:33:39,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:39,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) about to wait for the following futures []
2022-05-12 22:33:39,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) done waiting for dependent futures
2022-05-12 22:33:39,684 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120061952}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 120061952}
2022-05-12 22:33:39,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:40,368 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159907840}) to executor  for transfer request: 0.
2022-05-12 22:33:40,368 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:40,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) about to wait for the following futures []
2022-05-12 22:33:40,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) done waiting for dependent futures
2022-05-12 22:33:40,369 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159907840}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 159907840}
2022-05-12 22:33:40,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:41,069 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114032640}) to executor  for transfer request: 0.
2022-05-12 22:33:41,070 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:41,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) about to wait for the following futures []
2022-05-12 22:33:41,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) done waiting for dependent futures
2022-05-12 22:33:41,070 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114032640}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 114032640}
2022-05-12 22:33:41,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:42,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143654912}) to executor  for transfer request: 0.
2022-05-12 22:33:42,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:42,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) about to wait for the following futures []
2022-05-12 22:33:42,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) done waiting for dependent futures
2022-05-12 22:33:42,005 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143654912}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 143654912}
2022-05-12 22:33:42,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:42,861 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:33:42,861 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:42,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:33:42,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:33:42,862 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 5242880}
2022-05-12 22:33:42,862 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:43,965 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127401984}) to executor  for transfer request: 0.
2022-05-12 22:33:43,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:43,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) about to wait for the following futures []
2022-05-12 22:33:43,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) done waiting for dependent futures
2022-05-12 22:33:43,966 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127401984}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 127401984}
2022-05-12 22:33:43,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136314880}) to executor  for transfer request: 0.
2022-05-12 22:33:44,648 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:44,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) about to wait for the following futures []
2022-05-12 22:33:44,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) done waiting for dependent futures
2022-05-12 22:33:44,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136314880}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 136314880}
2022-05-12 22:33:44,649 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:45,236 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167772160}) to executor  for transfer request: 0.
2022-05-12 22:33:45,236 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:45,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) about to wait for the following futures []
2022-05-12 22:33:45,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) done waiting for dependent futures
2022-05-12 22:33:45,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167772160}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 167772160}
2022-05-12 22:33:45,237 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:46,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151781376}) to executor  for transfer request: 0.
2022-05-12 22:33:46,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:46,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) about to wait for the following futures []
2022-05-12 22:33:46,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) done waiting for dependent futures
2022-05-12 22:33:46,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151781376}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 151781376}
2022-05-12 22:33:46,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:46,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:33:46,933 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:46,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:33:46,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:33:46,934 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 16252928}
2022-05-12 22:33:46,934 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:47,917 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:33:47,917 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:47,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:33:47,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:33:47,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 24641536}
2022-05-12 22:33:47,918 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:47,988 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114294784}) to executor  for transfer request: 0.
2022-05-12 22:33:47,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:47,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) about to wait for the following futures []
2022-05-12 22:33:47,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) done waiting for dependent futures
2022-05-12 22:33:47,989 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114294784}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 114294784}
2022-05-12 22:33:47,989 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:49,967 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143917056}) to executor  for transfer request: 0.
2022-05-12 22:33:49,967 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) about to wait for the following futures []
2022-05-12 22:33:49,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) done waiting for dependent futures
2022-05-12 22:33:49,968 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143917056}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 143917056}
2022-05-12 22:33:49,968 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:50,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120324096}) to executor  for transfer request: 0.
2022-05-12 22:33:50,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:50,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) about to wait for the following futures []
2022-05-12 22:33:50,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) done waiting for dependent futures
2022-05-12 22:33:50,443 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120324096}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 120324096}
2022-05-12 22:33:50,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,416 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160169984}) to executor  for transfer request: 0.
2022-05-12 22:33:51,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) about to wait for the following futures []
2022-05-12 22:33:51,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) done waiting for dependent futures
2022-05-12 22:33:51,417 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160169984}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 160169984}
2022-05-12 22:33:51,418 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:53,356 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127664128}) to executor  for transfer request: 0.
2022-05-12 22:33:53,356 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:53,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) about to wait for the following futures []
2022-05-12 22:33:53,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) done waiting for dependent futures
2022-05-12 22:33:53,357 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127664128}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 127664128}
2022-05-12 22:33:53,357 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:54,454 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136577024}) to executor  for transfer request: 0.
2022-05-12 22:33:54,454 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:54,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) about to wait for the following futures []
2022-05-12 22:33:54,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) done waiting for dependent futures
2022-05-12 22:33:54,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136577024}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 136577024}
2022-05-12 22:33:54,455 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:54,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63700992}) to executor  for transfer request: 0.
2022-05-12 22:33:54,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:54,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) about to wait for the following futures []
2022-05-12 22:33:54,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) done waiting for dependent futures
2022-05-12 22:33:54,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63700992}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 63700992}
2022-05-12 22:33:54,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:57,639 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152043520}) to executor  for transfer request: 0.
2022-05-12 22:33:57,639 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:57,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) about to wait for the following futures []
2022-05-12 22:33:57,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) done waiting for dependent futures
2022-05-12 22:33:57,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152043520}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 152043520}
2022-05-12 22:33:57,640 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:57,940 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114556928}) to executor  for transfer request: 0.
2022-05-12 22:33:57,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:57,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) about to wait for the following futures []
2022-05-12 22:33:57,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) done waiting for dependent futures
2022-05-12 22:33:57,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114556928}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 114556928}
2022-05-12 22:33:57,942 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:33:59,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:33:59,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:33:59,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 16515072}
2022-05-12 22:33:59,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168034304}) to executor  for transfer request: 0.
2022-05-12 22:33:59,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) about to wait for the following futures []
2022-05-12 22:33:59,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) done waiting for dependent futures
2022-05-12 22:33:59,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168034304}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 168034304}
2022-05-12 22:33:59,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144179200}) to executor  for transfer request: 0.
2022-05-12 22:33:59,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) about to wait for the following futures []
2022-05-12 22:33:59,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) done waiting for dependent futures
2022-05-12 22:33:59,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144179200}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 144179200}
2022-05-12 22:33:59,726 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160432128}) to executor  for transfer request: 0.
2022-05-12 22:33:59,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) about to wait for the following futures []
2022-05-12 22:33:59,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) done waiting for dependent futures
2022-05-12 22:33:59,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160432128}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 160432128}
2022-05-12 22:33:59,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:34:01,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:01,560 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,560 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) about to wait for the following futures []
2022-05-12 22:34:01,560 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) done waiting for dependent futures
2022-05-12 22:34:01,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:34:01,561 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=176160768-184549375'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 176160768, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:34:01,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:34:01,561 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:01,562 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 24903680}
2022-05-12 22:34:01,562 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:01,562 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:01,562 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:01,562 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:01,563 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:01,563 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:34:01,563 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:34:01,563 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:01,563 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:01,563 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,563 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=176160768-184549375', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:34:01,564 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:01,564 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:34:01,564 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:01,564 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:01,564 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:34:01,564 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:34:01,564 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:34:01,564 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:34:01,565 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:34:01,565 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=176160768-184549375
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223401Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:34:01,565 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223401Z
20220512/eu-central-1/s3/aws4_request
409a434f87f3e3d3b8198d278829fd3781b010c5859c648238b7ee8752b1e3e6
2022-05-12 22:34:01,565 botocore.auth DEBUG    Signature:
a53fd182b3c68c46f24755ece93b882f568775fe33183125c6ca19cfac14a02a
2022-05-12 22:34:01,565 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:01,565 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:01,566 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:34:01,566 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:34:01,636 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120586240}) to executor  for transfer request: 0.
2022-05-12 22:34:01,636 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:01,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) about to wait for the following futures []
2022-05-12 22:34:01,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) done waiting for dependent futures
2022-05-12 22:34:01,637 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120586240}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 120586240}
2022-05-12 22:34:01,637 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,776 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:34:01,776 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'xdht9ebq7ZP8PNgc9LSjQJri8XlMWBEW2AMx94FmWeCwzp9vH3RM33p+TpQ1pSUXygk7Vcc95Hk=', 'x-amz-request-id': 'HTGFMZEA3WZGYGB7', 'Date': 'Thu, 12 May 2022 22:34:02 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 176160768-184549375/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:34:01,777 botocore.parsers DEBUG    Response body:

2022-05-12 22:34:01,777 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:34:01,778 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:34:01,778 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:34:01,844 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136839168}) to executor  for transfer request: 0.
2022-05-12 22:34:01,845 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:01,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) about to wait for the following futures []
2022-05-12 22:34:01,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) done waiting for dependent futures
2022-05-12 22:34:01,845 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136839168}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 136839168}
2022-05-12 22:34:01,846 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:03,633 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127926272}) to executor  for transfer request: 0.
2022-05-12 22:34:03,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:03,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) about to wait for the following futures []
2022-05-12 22:34:03,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) done waiting for dependent futures
2022-05-12 22:34:03,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127926272}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 127926272}
2022-05-12 22:34:03,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:04,095 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:34:04,095 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:04,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:34:04,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:34:04,096 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 5505024}
2022-05-12 22:34:04,096 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:04,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160694272}) to executor  for transfer request: 0.
2022-05-12 22:34:04,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:04,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) about to wait for the following futures []
2022-05-12 22:34:04,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) done waiting for dependent futures
2022-05-12 22:34:04,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160694272}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 160694272}
2022-05-12 22:34:04,786 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:07,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144441344}) to executor  for transfer request: 0.
2022-05-12 22:34:07,297 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:07,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) about to wait for the following futures []
2022-05-12 22:34:07,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) done waiting for dependent futures
2022-05-12 22:34:07,298 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144441344}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 144441344}
2022-05-12 22:34:07,299 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:07,622 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114819072}) to executor  for transfer request: 0.
2022-05-12 22:34:07,623 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:07,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) about to wait for the following futures []
2022-05-12 22:34:07,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) done waiting for dependent futures
2022-05-12 22:34:07,623 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114819072}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 114819072}
2022-05-12 22:34:07,623 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:09,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120848384}) to executor  for transfer request: 0.
2022-05-12 22:34:09,249 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:09,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) about to wait for the following futures []
2022-05-12 22:34:09,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) done waiting for dependent futures
2022-05-12 22:34:09,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120848384}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 120848384}
2022-05-12 22:34:09,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,159 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152305664}) to executor  for transfer request: 0.
2022-05-12 22:34:10,160 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) about to wait for the following futures []
2022-05-12 22:34:10,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) done waiting for dependent futures
2022-05-12 22:34:10,160 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152305664}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 152305664}
2022-05-12 22:34:10,160 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,336 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168296448}) to executor  for transfer request: 0.
2022-05-12 22:34:10,336 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) about to wait for the following futures []
2022-05-12 22:34:10,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) done waiting for dependent futures
2022-05-12 22:34:10,337 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168296448}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 168296448}
2022-05-12 22:34:10,337 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,459 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137101312}) to executor  for transfer request: 0.
2022-05-12 22:34:10,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) about to wait for the following futures []
2022-05-12 22:34:10,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) done waiting for dependent futures
2022-05-12 22:34:10,460 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137101312}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 137101312}
2022-05-12 22:34:10,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:12,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160956416}) to executor  for transfer request: 0.
2022-05-12 22:34:12,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:12,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) about to wait for the following futures []
2022-05-12 22:34:12,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) done waiting for dependent futures
2022-05-12 22:34:12,790 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160956416}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 160956416}
2022-05-12 22:34:12,790 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:14,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176160768}) to executor  for transfer request: 0.
2022-05-12 22:34:14,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:14,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) about to wait for the following futures []
2022-05-12 22:34:14,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) done waiting for dependent futures
2022-05-12 22:34:14,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176160768}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 176160768}
2022-05-12 22:34:14,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:14,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144703488}) to executor  for transfer request: 0.
2022-05-12 22:34:14,651 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:14,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) about to wait for the following futures []
2022-05-12 22:34:14,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) done waiting for dependent futures
2022-05-12 22:34:14,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144703488}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 144703488}
2022-05-12 22:34:14,652 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:15,913 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128188416}) to executor  for transfer request: 0.
2022-05-12 22:34:15,913 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:15,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) about to wait for the following futures []
2022-05-12 22:34:15,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) done waiting for dependent futures
2022-05-12 22:34:15,914 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128188416}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 128188416}
2022-05-12 22:34:15,914 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:16,754 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137363456}) to executor  for transfer request: 0.
2022-05-12 22:34:16,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:16,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) about to wait for the following futures []
2022-05-12 22:34:16,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) done waiting for dependent futures
2022-05-12 22:34:16,755 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137363456}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 137363456}
2022-05-12 22:34:16,755 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:17,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152567808}) to executor  for transfer request: 0.
2022-05-12 22:34:17,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:17,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) about to wait for the following futures []
2022-05-12 22:34:17,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) done waiting for dependent futures
2022-05-12 22:34:17,549 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152567808}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 152567808}
2022-05-12 22:34:17,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:18,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:34:18,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:18,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:34:18,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:34:18,476 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 5767168}
2022-05-12 22:34:18,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:18,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63963136}) to executor  for transfer request: 0.
2022-05-12 22:34:18,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:18,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) about to wait for the following futures []
2022-05-12 22:34:18,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) done waiting for dependent futures
2022-05-12 22:34:18,576 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63963136}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 63963136}
2022-05-12 22:34:18,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,842 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121110528}) to executor  for transfer request: 0.
2022-05-12 22:34:19,842 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) about to wait for the following futures []
2022-05-12 22:34:19,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) done waiting for dependent futures
2022-05-12 22:34:19,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121110528}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 121110528}
2022-05-12 22:34:19,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,992 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161218560}) to executor  for transfer request: 0.
2022-05-12 22:34:19,992 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) about to wait for the following futures []
2022-05-12 22:34:19,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) done waiting for dependent futures
2022-05-12 22:34:19,992 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161218560}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 161218560}
2022-05-12 22:34:19,993 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:21,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144965632}) to executor  for transfer request: 0.
2022-05-12 22:34:21,514 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:21,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) about to wait for the following futures []
2022-05-12 22:34:21,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) done waiting for dependent futures
2022-05-12 22:34:21,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144965632}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 144965632}
2022-05-12 22:34:21,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:21,783 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115081216}) to executor  for transfer request: 0.
2022-05-12 22:34:21,784 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:21,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) about to wait for the following futures []
2022-05-12 22:34:21,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) done waiting for dependent futures
2022-05-12 22:34:21,784 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115081216}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 115081216}
2022-05-12 22:34:21,785 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:23,351 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152829952}) to executor  for transfer request: 0.
2022-05-12 22:34:23,351 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:23,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) about to wait for the following futures []
2022-05-12 22:34:23,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) done waiting for dependent futures
2022-05-12 22:34:23,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152829952}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 152829952}
2022-05-12 22:34:23,353 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168558592}) to executor  for transfer request: 0.
2022-05-12 22:34:24,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:24,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) about to wait for the following futures []
2022-05-12 22:34:24,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) done waiting for dependent futures
2022-05-12 22:34:24,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168558592}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 168558592}
2022-05-12 22:34:24,828 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:25,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128450560}) to executor  for transfer request: 0.
2022-05-12 22:34:25,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:25,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) about to wait for the following futures []
2022-05-12 22:34:25,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) done waiting for dependent futures
2022-05-12 22:34:25,954 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128450560}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 128450560}
2022-05-12 22:34:25,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:26,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137625600}) to executor  for transfer request: 0.
2022-05-12 22:34:26,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:26,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) about to wait for the following futures []
2022-05-12 22:34:26,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) done waiting for dependent futures
2022-05-12 22:34:26,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137625600}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 137625600}
2022-05-12 22:34:26,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:26,929 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161480704}) to executor  for transfer request: 0.
2022-05-12 22:34:26,929 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:26,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) about to wait for the following futures []
2022-05-12 22:34:26,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) done waiting for dependent futures
2022-05-12 22:34:26,930 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161480704}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 161480704}
2022-05-12 22:34:26,931 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:27,281 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145227776}) to executor  for transfer request: 0.
2022-05-12 22:34:27,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:27,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) about to wait for the following futures []
2022-05-12 22:34:27,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) done waiting for dependent futures
2022-05-12 22:34:27,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145227776}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 145227776}
2022-05-12 22:34:27,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:29,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121372672}) to executor  for transfer request: 0.
2022-05-12 22:34:29,971 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:29,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) about to wait for the following futures []
2022-05-12 22:34:29,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) done waiting for dependent futures
2022-05-12 22:34:29,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121372672}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 121372672}
2022-05-12 22:34:29,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:30,365 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176422912}) to executor  for transfer request: 0.
2022-05-12 22:34:30,365 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:30,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) about to wait for the following futures []
2022-05-12 22:34:30,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) done waiting for dependent futures
2022-05-12 22:34:30,366 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176422912}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 176422912}
2022-05-12 22:34:30,366 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:30,635 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64225280}) to executor  for transfer request: 0.
2022-05-12 22:34:30,636 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:30,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) about to wait for the following futures []
2022-05-12 22:34:30,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) done waiting for dependent futures
2022-05-12 22:34:30,636 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64225280}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 64225280}
2022-05-12 22:34:30,637 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:32,160 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115343360}) to executor  for transfer request: 0.
2022-05-12 22:34:32,160 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:32,161 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) about to wait for the following futures []
2022-05-12 22:34:32,161 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) done waiting for dependent futures
2022-05-12 22:34:32,161 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115343360}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 115343360}
2022-05-12 22:34:32,161 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:32,731 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145489920}) to executor  for transfer request: 0.
2022-05-12 22:34:32,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:32,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) about to wait for the following futures []
2022-05-12 22:34:32,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) done waiting for dependent futures
2022-05-12 22:34:32,732 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145489920}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 145489920}
2022-05-12 22:34:32,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:34,656 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145752064}) to executor  for transfer request: 0.
2022-05-12 22:34:34,656 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:34,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) about to wait for the following futures []
2022-05-12 22:34:34,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) done waiting for dependent futures
2022-05-12 22:34:34,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145752064}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 145752064}
2022-05-12 22:34:34,657 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:34,842 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153092096}) to executor  for transfer request: 0.
2022-05-12 22:34:34,842 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:34,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) about to wait for the following futures []
2022-05-12 22:34:34,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) done waiting for dependent futures
2022-05-12 22:34:34,843 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153092096}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 153092096}
2022-05-12 22:34:34,843 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:36,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:34:36,150 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:36,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:34:36,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:34:36,150 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 6029312}
2022-05-12 22:34:36,151 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:36,606 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128712704}) to executor  for transfer request: 0.
2022-05-12 22:34:36,607 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:36,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) about to wait for the following futures []
2022-05-12 22:34:36,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) done waiting for dependent futures
2022-05-12 22:34:36,608 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128712704}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 128712704}
2022-05-12 22:34:36,608 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:36,656 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137887744}) to executor  for transfer request: 0.
2022-05-12 22:34:36,656 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:36,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) about to wait for the following futures []
2022-05-12 22:34:36,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) done waiting for dependent futures
2022-05-12 22:34:36,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137887744}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 137887744}
2022-05-12 22:34:36,658 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:38,087 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121634816}) to executor  for transfer request: 0.
2022-05-12 22:34:38,088 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:38,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) about to wait for the following futures []
2022-05-12 22:34:38,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) done waiting for dependent futures
2022-05-12 22:34:38,088 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121634816}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 121634816}
2022-05-12 22:34:38,089 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:38,130 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64487424}) to executor  for transfer request: 0.
2022-05-12 22:34:38,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:38,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) about to wait for the following futures []
2022-05-12 22:34:38,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) done waiting for dependent futures
2022-05-12 22:34:38,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64487424}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 64487424}
2022-05-12 22:34:38,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161742848}) to executor  for transfer request: 0.
2022-05-12 22:34:39,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) about to wait for the following futures []
2022-05-12 22:34:39,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) done waiting for dependent futures
2022-05-12 22:34:39,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161742848}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 161742848}
2022-05-12 22:34:39,679 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,779 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168820736}) to executor  for transfer request: 0.
2022-05-12 22:34:39,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) about to wait for the following futures []
2022-05-12 22:34:39,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) done waiting for dependent futures
2022-05-12 22:34:39,780 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168820736}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 168820736}
2022-05-12 22:34:39,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:41,032 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146014208}) to executor  for transfer request: 0.
2022-05-12 22:34:41,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) about to wait for the following futures []
2022-05-12 22:34:41,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) done waiting for dependent futures
2022-05-12 22:34:41,033 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146014208}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 146014208}
2022-05-12 22:34:41,033 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:42,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176685056}) to executor  for transfer request: 0.
2022-05-12 22:34:42,259 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:42,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) about to wait for the following futures []
2022-05-12 22:34:42,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) done waiting for dependent futures
2022-05-12 22:34:42,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176685056}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 176685056}
2022-05-12 22:34:42,261 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:44,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153354240}) to executor  for transfer request: 0.
2022-05-12 22:34:44,375 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:44,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) about to wait for the following futures []
2022-05-12 22:34:44,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) done waiting for dependent futures
2022-05-12 22:34:44,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153354240}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 153354240}
2022-05-12 22:34:44,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:47,603 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121896960}) to executor  for transfer request: 0.
2022-05-12 22:34:47,604 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:47,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) about to wait for the following futures []
2022-05-12 22:34:47,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) done waiting for dependent futures
2022-05-12 22:34:47,604 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121896960}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 121896960}
2022-05-12 22:34:47,605 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162004992}) to executor  for transfer request: 0.
2022-05-12 22:34:48,323 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) about to wait for the following futures []
2022-05-12 22:34:48,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) done waiting for dependent futures
2022-05-12 22:34:48,324 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162004992}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 162004992}
2022-05-12 22:34:48,324 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,551 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64749568}) to executor  for transfer request: 0.
2022-05-12 22:34:48,552 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) about to wait for the following futures []
2022-05-12 22:34:48,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) done waiting for dependent futures
2022-05-12 22:34:48,552 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64749568}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 64749568}
2022-05-12 22:34:48,552 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:49,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138149888}) to executor  for transfer request: 0.
2022-05-12 22:34:49,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:49,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) about to wait for the following futures []
2022-05-12 22:34:49,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) done waiting for dependent futures
2022-05-12 22:34:49,397 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138149888}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 138149888}
2022-05-12 22:34:49,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:50,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128974848}) to executor  for transfer request: 0.
2022-05-12 22:34:50,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:50,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) about to wait for the following futures []
2022-05-12 22:34:50,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) done waiting for dependent futures
2022-05-12 22:34:50,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128974848}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 128974848}
2022-05-12 22:34:50,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:50,894 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115605504}) to executor  for transfer request: 0.
2022-05-12 22:34:50,894 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:50,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) about to wait for the following futures []
2022-05-12 22:34:50,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) done waiting for dependent futures
2022-05-12 22:34:50,895 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115605504}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 115605504}
2022-05-12 22:34:50,895 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,013 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153616384}) to executor  for transfer request: 0.
2022-05-12 22:34:52,013 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) about to wait for the following futures []
2022-05-12 22:34:52,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) done waiting for dependent futures
2022-05-12 22:34:52,014 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153616384}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 153616384}
2022-05-12 22:34:52,014 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146276352}) to executor  for transfer request: 0.
2022-05-12 22:34:52,498 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) about to wait for the following futures []
2022-05-12 22:34:52,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) done waiting for dependent futures
2022-05-12 22:34:52,498 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146276352}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 146276352}
2022-05-12 22:34:52,498 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:53,704 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169082880}) to executor  for transfer request: 0.
2022-05-12 22:34:53,704 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:53,705 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) about to wait for the following futures []
2022-05-12 22:34:53,705 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) done waiting for dependent futures
2022-05-12 22:34:53,705 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169082880}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 169082880}
2022-05-12 22:34:53,706 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:55,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176947200}) to executor  for transfer request: 0.
2022-05-12 22:34:55,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:55,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) about to wait for the following futures []
2022-05-12 22:34:55,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) done waiting for dependent futures
2022-05-12 22:34:55,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176947200}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 176947200}
2022-05-12 22:34:55,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:56,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:34:56,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:56,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:34:56,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:34:56,583 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 6291456}
2022-05-12 22:34:56,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,446 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122159104}) to executor  for transfer request: 0.
2022-05-12 22:34:57,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:57,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) about to wait for the following futures []
2022-05-12 22:34:57,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) done waiting for dependent futures
2022-05-12 22:34:57,447 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122159104}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 122159104}
2022-05-12 22:34:57,447 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,854 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65011712}) to executor  for transfer request: 0.
2022-05-12 22:34:57,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:57,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) about to wait for the following futures []
2022-05-12 22:34:57,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) done waiting for dependent futures
2022-05-12 22:34:57,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65011712}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 65011712}
2022-05-12 22:34:57,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:58,842 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138412032}) to executor  for transfer request: 0.
2022-05-12 22:34:58,842 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:58,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) about to wait for the following futures []
2022-05-12 22:34:58,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) done waiting for dependent futures
2022-05-12 22:34:58,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138412032}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 138412032}
2022-05-12 22:34:58,843 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:58,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153878528}) to executor  for transfer request: 0.
2022-05-12 22:34:58,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:58,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) about to wait for the following futures []
2022-05-12 22:34:58,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) done waiting for dependent futures
2022-05-12 22:34:58,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153878528}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 153878528}
2022-05-12 22:34:58,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:58,950 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146538496}) to executor  for transfer request: 0.
2022-05-12 22:34:58,950 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:58,950 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) about to wait for the following futures []
2022-05-12 22:34:58,950 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) done waiting for dependent futures
2022-05-12 22:34:58,951 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146538496}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 146538496}
2022-05-12 22:34:58,951 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:59,409 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162267136}) to executor  for transfer request: 0.
2022-05-12 22:34:59,409 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:59,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) about to wait for the following futures []
2022-05-12 22:34:59,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) done waiting for dependent futures
2022-05-12 22:34:59,410 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162267136}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 162267136}
2022-05-12 22:34:59,410 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:01,346 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115867648}) to executor  for transfer request: 0.
2022-05-12 22:35:01,347 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:01,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) about to wait for the following futures []
2022-05-12 22:35:01,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) done waiting for dependent futures
2022-05-12 22:35:01,347 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115867648}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 115867648}
2022-05-12 22:35:01,348 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:03,994 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129236992}) to executor  for transfer request: 0.
2022-05-12 22:35:03,994 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:03,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) about to wait for the following futures []
2022-05-12 22:35:03,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) done waiting for dependent futures
2022-05-12 22:35:03,995 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129236992}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 129236992}
2022-05-12 22:35:03,995 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:05,846 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122421248}) to executor  for transfer request: 0.
2022-05-12 22:35:05,846 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:05,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) about to wait for the following futures []
2022-05-12 22:35:05,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) done waiting for dependent futures
2022-05-12 22:35:05,847 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122421248}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 122421248}
2022-05-12 22:35:05,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,472 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154140672}) to executor  for transfer request: 0.
2022-05-12 22:35:06,472 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,472 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) about to wait for the following futures []
2022-05-12 22:35:06,472 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) done waiting for dependent futures
2022-05-12 22:35:06,473 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154140672}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 154140672}
2022-05-12 22:35:06,473 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146800640}) to executor  for transfer request: 0.
2022-05-12 22:35:06,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) about to wait for the following futures []
2022-05-12 22:35:06,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) done waiting for dependent futures
2022-05-12 22:35:06,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146800640}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 146800640}
2022-05-12 22:35:06,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:07,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169345024}) to executor  for transfer request: 0.
2022-05-12 22:35:07,564 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:07,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) about to wait for the following futures []
2022-05-12 22:35:07,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) done waiting for dependent futures
2022-05-12 22:35:07,565 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169345024}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 169345024}
2022-05-12 22:35:07,565 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,103 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162529280}) to executor  for transfer request: 0.
2022-05-12 22:35:09,103 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) about to wait for the following futures []
2022-05-12 22:35:09,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) done waiting for dependent futures
2022-05-12 22:35:09,104 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162529280}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 162529280}
2022-05-12 22:35:09,104 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,798 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65273856}) to executor  for transfer request: 0.
2022-05-12 22:35:09,798 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,798 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) about to wait for the following futures []
2022-05-12 22:35:09,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) done waiting for dependent futures
2022-05-12 22:35:09,799 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65273856}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 65273856}
2022-05-12 22:35:09,799 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,019 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138674176}) to executor  for transfer request: 0.
2022-05-12 22:35:10,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) about to wait for the following futures []
2022-05-12 22:35:10,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) done waiting for dependent futures
2022-05-12 22:35:10,020 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138674176}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 138674176}
2022-05-12 22:35:10,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116129792}) to executor  for transfer request: 0.
2022-05-12 22:35:10,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) about to wait for the following futures []
2022-05-12 22:35:10,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) done waiting for dependent futures
2022-05-12 22:35:10,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116129792}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 116129792}
2022-05-12 22:35:10,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:11,030 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129499136}) to executor  for transfer request: 0.
2022-05-12 22:35:11,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:11,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) about to wait for the following futures []
2022-05-12 22:35:11,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) done waiting for dependent futures
2022-05-12 22:35:11,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129499136}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 129499136}
2022-05-12 22:35:11,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:12,556 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177209344}) to executor  for transfer request: 0.
2022-05-12 22:35:12,556 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:12,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) about to wait for the following futures []
2022-05-12 22:35:12,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) done waiting for dependent futures
2022-05-12 22:35:12,556 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177209344}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 177209344}
2022-05-12 22:35:12,557 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:14,167 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122683392}) to executor  for transfer request: 0.
2022-05-12 22:35:14,167 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:14,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) about to wait for the following futures []
2022-05-12 22:35:14,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) done waiting for dependent futures
2022-05-12 22:35:14,167 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122683392}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 122683392}
2022-05-12 22:35:14,168 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:14,246 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154402816}) to executor  for transfer request: 0.
2022-05-12 22:35:14,246 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:14,246 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) about to wait for the following futures []
2022-05-12 22:35:14,246 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) done waiting for dependent futures
2022-05-12 22:35:14,246 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154402816}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 154402816}
2022-05-12 22:35:14,247 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,028 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147062784}) to executor  for transfer request: 0.
2022-05-12 22:35:15,028 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,028 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) about to wait for the following futures []
2022-05-12 22:35:15,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) done waiting for dependent futures
2022-05-12 22:35:15,029 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147062784}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 147062784}
2022-05-12 22:35:15,029 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162791424}) to executor  for transfer request: 0.
2022-05-12 22:35:15,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) about to wait for the following futures []
2022-05-12 22:35:15,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) done waiting for dependent futures
2022-05-12 22:35:15,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162791424}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 162791424}
2022-05-12 22:35:15,463 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:35:15,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:35:15,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:35:15,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 6553600}
2022-05-12 22:35:15,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:18,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65536000}) to executor  for transfer request: 0.
2022-05-12 22:35:18,758 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:18,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) about to wait for the following futures []
2022-05-12 22:35:18,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) done waiting for dependent futures
2022-05-12 22:35:18,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65536000}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 65536000}
2022-05-12 22:35:18,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129761280}) to executor  for transfer request: 0.
2022-05-12 22:35:20,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) about to wait for the following futures []
2022-05-12 22:35:20,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) done waiting for dependent futures
2022-05-12 22:35:20,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129761280}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 129761280}
2022-05-12 22:35:20,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138936320}) to executor  for transfer request: 0.
2022-05-12 22:35:20,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) about to wait for the following futures []
2022-05-12 22:35:20,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) done waiting for dependent futures
2022-05-12 22:35:20,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138936320}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 138936320}
2022-05-12 22:35:20,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,444 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154664960}) to executor  for transfer request: 0.
2022-05-12 22:35:20,444 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) about to wait for the following futures []
2022-05-12 22:35:20,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) done waiting for dependent futures
2022-05-12 22:35:20,445 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154664960}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 154664960}
2022-05-12 22:35:20,445 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,823 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116391936}) to executor  for transfer request: 0.
2022-05-12 22:35:20,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) about to wait for the following futures []
2022-05-12 22:35:20,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) done waiting for dependent futures
2022-05-12 22:35:20,824 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116391936}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 116391936}
2022-05-12 22:35:20,824 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,079 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147324928}) to executor  for transfer request: 0.
2022-05-12 22:35:21,079 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) about to wait for the following futures []
2022-05-12 22:35:21,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) done waiting for dependent futures
2022-05-12 22:35:21,079 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147324928}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 147324928}
2022-05-12 22:35:21,080 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169607168}) to executor  for transfer request: 0.
2022-05-12 22:35:21,612 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) about to wait for the following futures []
2022-05-12 22:35:21,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) done waiting for dependent futures
2022-05-12 22:35:21,612 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169607168}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 169607168}
2022-05-12 22:35:21,613 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:23,095 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163053568}) to executor  for transfer request: 0.
2022-05-12 22:35:23,095 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:23,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) about to wait for the following futures []
2022-05-12 22:35:23,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) done waiting for dependent futures
2022-05-12 22:35:23,096 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163053568}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 163053568}
2022-05-12 22:35:23,096 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:24,919 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122945536}) to executor  for transfer request: 0.
2022-05-12 22:35:24,919 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:24,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) about to wait for the following futures []
2022-05-12 22:35:24,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) done waiting for dependent futures
2022-05-12 22:35:24,920 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122945536}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 122945536}
2022-05-12 22:35:24,920 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,224 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130023424}) to executor  for transfer request: 0.
2022-05-12 22:35:25,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) about to wait for the following futures []
2022-05-12 22:35:25,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) done waiting for dependent futures
2022-05-12 22:35:25,225 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130023424}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 130023424}
2022-05-12 22:35:25,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:26,130 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177471488}) to executor  for transfer request: 0.
2022-05-12 22:35:26,130 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:26,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) about to wait for the following futures []
2022-05-12 22:35:26,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) done waiting for dependent futures
2022-05-12 22:35:26,131 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177471488}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 177471488}
2022-05-12 22:35:26,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,672 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147587072}) to executor  for transfer request: 0.
2022-05-12 22:35:27,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) about to wait for the following futures []
2022-05-12 22:35:27,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) done waiting for dependent futures
2022-05-12 22:35:27,673 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147587072}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 147587072}
2022-05-12 22:35:27,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,969 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154927104}) to executor  for transfer request: 0.
2022-05-12 22:35:27,969 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) about to wait for the following futures []
2022-05-12 22:35:27,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) done waiting for dependent futures
2022-05-12 22:35:27,970 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154927104}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 154927104}
2022-05-12 22:35:27,970 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:29,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116654080}) to executor  for transfer request: 0.
2022-05-12 22:35:29,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:29,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) about to wait for the following futures []
2022-05-12 22:35:29,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) done waiting for dependent futures
2022-05-12 22:35:29,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116654080}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 116654080}
2022-05-12 22:35:29,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:30,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65798144}) to executor  for transfer request: 0.
2022-05-12 22:35:30,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:30,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) about to wait for the following futures []
2022-05-12 22:35:30,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) done waiting for dependent futures
2022-05-12 22:35:30,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65798144}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 65798144}
2022-05-12 22:35:30,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:30,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:35:30,602 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:30,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:35:30,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:35:30,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 6815744}
2022-05-12 22:35:30,603 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163315712}) to executor  for transfer request: 0.
2022-05-12 22:35:31,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) about to wait for the following futures []
2022-05-12 22:35:31,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) done waiting for dependent futures
2022-05-12 22:35:31,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163315712}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 163315712}
2022-05-12 22:35:31,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:34,607 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139198464}) to executor  for transfer request: 0.
2022-05-12 22:35:34,607 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,608 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) about to wait for the following futures []
2022-05-12 22:35:34,608 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) done waiting for dependent futures
2022-05-12 22:35:34,608 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139198464}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 139198464}
2022-05-12 22:35:34,608 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123207680}) to executor  for transfer request: 0.
2022-05-12 22:35:35,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) about to wait for the following futures []
2022-05-12 22:35:35,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) done waiting for dependent futures
2022-05-12 22:35:35,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123207680}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 123207680}
2022-05-12 22:35:35,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169869312}) to executor  for transfer request: 0.
2022-05-12 22:35:35,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) about to wait for the following futures []
2022-05-12 22:35:35,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) done waiting for dependent futures
2022-05-12 22:35:35,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169869312}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 169869312}
2022-05-12 22:35:35,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,943 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130285568}) to executor  for transfer request: 0.
2022-05-12 22:35:35,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) about to wait for the following futures []
2022-05-12 22:35:35,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) done waiting for dependent futures
2022-05-12 22:35:35,944 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130285568}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 130285568}
2022-05-12 22:35:35,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:36,031 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155189248}) to executor  for transfer request: 0.
2022-05-12 22:35:36,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:36,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) about to wait for the following futures []
2022-05-12 22:35:36,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) done waiting for dependent futures
2022-05-12 22:35:36,032 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155189248}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 155189248}
2022-05-12 22:35:36,033 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:36,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147849216}) to executor  for transfer request: 0.
2022-05-12 22:35:36,076 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:36,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) about to wait for the following futures []
2022-05-12 22:35:36,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) done waiting for dependent futures
2022-05-12 22:35:36,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147849216}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 147849216}
2022-05-12 22:35:36,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177733632}) to executor  for transfer request: 0.
2022-05-12 22:35:40,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) about to wait for the following futures []
2022-05-12 22:35:40,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) done waiting for dependent futures
2022-05-12 22:35:40,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177733632}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 177733632}
2022-05-12 22:35:40,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,176 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116916224}) to executor  for transfer request: 0.
2022-05-12 22:35:40,177 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) about to wait for the following futures []
2022-05-12 22:35:40,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) done waiting for dependent futures
2022-05-12 22:35:40,177 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116916224}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 116916224}
2022-05-12 22:35:40,178 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:41,321 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163577856}) to executor  for transfer request: 0.
2022-05-12 22:35:41,321 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:41,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) about to wait for the following futures []
2022-05-12 22:35:41,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) done waiting for dependent futures
2022-05-12 22:35:41,321 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163577856}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 163577856}
2022-05-12 22:35:41,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:41,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:35:41,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:41,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:35:41,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:35:41,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 7077888}
2022-05-12 22:35:41,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:41,966 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66060288}) to executor  for transfer request: 0.
2022-05-12 22:35:41,966 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:41,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) about to wait for the following futures []
2022-05-12 22:35:41,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) done waiting for dependent futures
2022-05-12 22:35:41,967 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66060288}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 66060288}
2022-05-12 22:35:41,967 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,642 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130547712}) to executor  for transfer request: 0.
2022-05-12 22:35:43,642 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) about to wait for the following futures []
2022-05-12 22:35:43,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) done waiting for dependent futures
2022-05-12 22:35:43,643 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130547712}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 130547712}
2022-05-12 22:35:43,643 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139460608}) to executor  for transfer request: 0.
2022-05-12 22:35:43,934 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) about to wait for the following futures []
2022-05-12 22:35:43,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) done waiting for dependent futures
2022-05-12 22:35:43,934 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139460608}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 139460608}
2022-05-12 22:35:43,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:44,561 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148111360}) to executor  for transfer request: 0.
2022-05-12 22:35:44,561 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:44,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) about to wait for the following futures []
2022-05-12 22:35:44,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) done waiting for dependent futures
2022-05-12 22:35:44,562 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148111360}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 148111360}
2022-05-12 22:35:44,562 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:44,720 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170131456}) to executor  for transfer request: 0.
2022-05-12 22:35:44,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:44,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) about to wait for the following futures []
2022-05-12 22:35:44,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) done waiting for dependent futures
2022-05-12 22:35:44,721 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170131456}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 170131456}
2022-05-12 22:35:44,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:44,918 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123469824}) to executor  for transfer request: 0.
2022-05-12 22:35:44,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:44,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) about to wait for the following futures []
2022-05-12 22:35:44,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) done waiting for dependent futures
2022-05-12 22:35:44,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123469824}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 123469824}
2022-05-12 22:35:44,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:47,086 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148373504}) to executor  for transfer request: 0.
2022-05-12 22:35:47,086 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:47,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) about to wait for the following futures []
2022-05-12 22:35:47,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) done waiting for dependent futures
2022-05-12 22:35:47,087 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148373504}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 148373504}
2022-05-12 22:35:47,087 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:48,389 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117178368}) to executor  for transfer request: 0.
2022-05-12 22:35:48,389 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:48,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:48,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) about to wait for the following futures []
2022-05-12 22:35:48,389 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) about to wait for the following futures []
2022-05-12 22:35:48,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) done waiting for dependent futures
2022-05-12 22:35:48,389 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) done waiting for dependent futures
2022-05-12 22:35:48,390 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117178368}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 117178368}
2022-05-12 22:35:48,390 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=184549376-192937983'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 184549376, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:48,390 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:48,390 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:48,390 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:48,390 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:48,391 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:48,391 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:48,391 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:48,391 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:48,391 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:35:48,391 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:48,391 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:48,391 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=184549376-192937983', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:48,391 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:48,392 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:48,392 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:48,392 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:48,392 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:48,392 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:48,392 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:35:48,392 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:35:48,392 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:48,392 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=184549376-192937983
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223548Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:48,393 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223548Z
20220512/eu-central-1/s3/aws4_request
d2b89899b7e25fead74eb9a6e3527b02e2941f007d6028743f68c50c6e16673e
2022-05-12 22:35:48,393 botocore.auth DEBUG    Signature:
b471df640d0eb5fb876a457e0db50dc971efe97367899111be369caf3b056a2e
2022-05-12 22:35:48,393 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:48,393 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:48,393 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:48,393 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:48,635 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:48,636 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'L2Y/UGRdOAIePz8eUfEY7p1tV3zvPsSxC1f583mgStaBL5Te0VGZX1PBZVQbGv/uK28wvuhGXAU=', 'x-amz-request-id': '998TES2BY422MMCC', 'Date': 'Thu, 12 May 2022 22:35:49 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 184549376-192937983/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:35:48,636 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:48,637 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:48,637 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:48,637 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:49,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155451392}) to executor  for transfer request: 0.
2022-05-12 22:35:49,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) about to wait for the following futures []
2022-05-12 22:35:49,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) done waiting for dependent futures
2022-05-12 22:35:49,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155451392}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 155451392}
2022-05-12 22:35:49,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139722752}) to executor  for transfer request: 0.
2022-05-12 22:35:49,854 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) about to wait for the following futures []
2022-05-12 22:35:49,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) done waiting for dependent futures
2022-05-12 22:35:49,854 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139722752}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 139722752}
2022-05-12 22:35:49,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,213 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:35:51,213 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:35:51,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:35:51,214 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 7340032}
2022-05-12 22:35:51,214 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,563 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163840000}) to executor  for transfer request: 0.
2022-05-12 22:35:51,563 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) about to wait for the following futures []
2022-05-12 22:35:51,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) done waiting for dependent futures
2022-05-12 22:35:51,564 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163840000}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 163840000}
2022-05-12 22:35:51,564 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:53,402 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170393600}) to executor  for transfer request: 0.
2022-05-12 22:35:53,402 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:53,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) about to wait for the following futures []
2022-05-12 22:35:53,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) done waiting for dependent futures
2022-05-12 22:35:53,403 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170393600}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 170393600}
2022-05-12 22:35:53,403 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148635648}) to executor  for transfer request: 0.
2022-05-12 22:35:54,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) about to wait for the following futures []
2022-05-12 22:35:54,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) done waiting for dependent futures
2022-05-12 22:35:54,269 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148635648}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 148635648}
2022-05-12 22:35:54,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130809856}) to executor  for transfer request: 0.
2022-05-12 22:35:54,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) about to wait for the following futures []
2022-05-12 22:35:54,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) done waiting for dependent futures
2022-05-12 22:35:54,399 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130809856}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 130809856}
2022-05-12 22:35:54,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,586 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123731968}) to executor  for transfer request: 0.
2022-05-12 22:35:54,586 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) about to wait for the following futures []
2022-05-12 22:35:54,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) done waiting for dependent futures
2022-05-12 22:35:54,587 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123731968}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 123731968}
2022-05-12 22:35:54,587 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,798 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66322432}) to executor  for transfer request: 0.
2022-05-12 22:35:54,798 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) about to wait for the following futures []
2022-05-12 22:35:54,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) done waiting for dependent futures
2022-05-12 22:35:54,799 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66322432}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 66322432}
2022-05-12 22:35:54,799 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:55,256 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177995776}) to executor  for transfer request: 0.
2022-05-12 22:35:55,256 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:55,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) about to wait for the following futures []
2022-05-12 22:35:55,257 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) done waiting for dependent futures
2022-05-12 22:35:55,257 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177995776}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 177995776}
2022-05-12 22:35:55,258 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,170 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164102144}) to executor  for transfer request: 0.
2022-05-12 22:35:57,170 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) about to wait for the following futures []
2022-05-12 22:35:57,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) done waiting for dependent futures
2022-05-12 22:35:57,170 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164102144}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 164102144}
2022-05-12 22:35:57,171 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,346 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155713536}) to executor  for transfer request: 0.
2022-05-12 22:35:57,346 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,346 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) about to wait for the following futures []
2022-05-12 22:35:57,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) done waiting for dependent futures
2022-05-12 22:35:57,347 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155713536}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 155713536}
2022-05-12 22:35:57,347 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:01,579 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184549376}) to executor  for transfer request: 0.
2022-05-12 22:36:01,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:01,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) about to wait for the following futures []
2022-05-12 22:36:01,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) done waiting for dependent futures
2022-05-12 22:36:01,580 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184549376}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 184549376}
2022-05-12 22:36:01,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:02,957 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131072000}) to executor  for transfer request: 0.
2022-05-12 22:36:02,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:02,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) about to wait for the following futures []
2022-05-12 22:36:02,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) done waiting for dependent futures
2022-05-12 22:36:02,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131072000}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 131072000}
2022-05-12 22:36:02,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:03,584 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164364288}) to executor  for transfer request: 0.
2022-05-12 22:36:03,584 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:03,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) about to wait for the following futures []
2022-05-12 22:36:03,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) done waiting for dependent futures
2022-05-12 22:36:03,585 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164364288}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 164364288}
2022-05-12 22:36:03,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:04,319 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66584576}) to executor  for transfer request: 0.
2022-05-12 22:36:04,320 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:04,320 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) about to wait for the following futures []
2022-05-12 22:36:04,320 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) done waiting for dependent futures
2022-05-12 22:36:04,320 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66584576}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 66584576}
2022-05-12 22:36:04,321 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:04,671 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123994112}) to executor  for transfer request: 0.
2022-05-12 22:36:04,671 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:04,671 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) about to wait for the following futures []
2022-05-12 22:36:04,672 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) done waiting for dependent futures
2022-05-12 22:36:04,672 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123994112}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 123994112}
2022-05-12 22:36:04,672 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:04,679 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148897792}) to executor  for transfer request: 0.
2022-05-12 22:36:04,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:04,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) about to wait for the following futures []
2022-05-12 22:36:04,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) done waiting for dependent futures
2022-05-12 22:36:04,680 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148897792}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 148897792}
2022-05-12 22:36:04,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155975680}) to executor  for transfer request: 0.
2022-05-12 22:36:05,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) about to wait for the following futures []
2022-05-12 22:36:05,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) done waiting for dependent futures
2022-05-12 22:36:05,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155975680}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 155975680}
2022-05-12 22:36:05,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,774 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139984896}) to executor  for transfer request: 0.
2022-05-12 22:36:05,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) about to wait for the following futures []
2022-05-12 22:36:05,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) done waiting for dependent futures
2022-05-12 22:36:05,775 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139984896}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 139984896}
2022-05-12 22:36:05,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:06,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:36:06,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:06,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:36:06,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:36:06,326 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 7602176}
2022-05-12 22:36:06,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:06,457 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170655744}) to executor  for transfer request: 0.
2022-05-12 22:36:06,457 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:06,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) about to wait for the following futures []
2022-05-12 22:36:06,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) done waiting for dependent futures
2022-05-12 22:36:06,458 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170655744}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 170655744}
2022-05-12 22:36:06,458 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:09,230 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178257920}) to executor  for transfer request: 0.
2022-05-12 22:36:09,230 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:09,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) about to wait for the following futures []
2022-05-12 22:36:09,231 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) done waiting for dependent futures
2022-05-12 22:36:09,231 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178257920}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 178257920}
2022-05-12 22:36:09,231 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:10,591 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184811520}) to executor  for transfer request: 0.
2022-05-12 22:36:10,592 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:10,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) about to wait for the following futures []
2022-05-12 22:36:10,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) done waiting for dependent futures
2022-05-12 22:36:10,592 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184811520}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 184811520}
2022-05-12 22:36:10,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:10,808 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164626432}) to executor  for transfer request: 0.
2022-05-12 22:36:10,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:10,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) about to wait for the following futures []
2022-05-12 22:36:10,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) done waiting for dependent futures
2022-05-12 22:36:10,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164626432}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 164626432}
2022-05-12 22:36:10,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:13,669 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124256256}) to executor  for transfer request: 0.
2022-05-12 22:36:13,670 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:13,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) about to wait for the following futures []
2022-05-12 22:36:13,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) done waiting for dependent futures
2022-05-12 22:36:13,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124256256}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 124256256}
2022-05-12 22:36:13,671 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:14,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156237824}) to executor  for transfer request: 0.
2022-05-12 22:36:14,208 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:14,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) about to wait for the following futures []
2022-05-12 22:36:14,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) done waiting for dependent futures
2022-05-12 22:36:14,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156237824}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 156237824}
2022-05-12 22:36:14,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149159936}) to executor  for transfer request: 0.
2022-05-12 22:36:15,242 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) about to wait for the following futures []
2022-05-12 22:36:15,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) done waiting for dependent futures
2022-05-12 22:36:15,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149159936}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 149159936}
2022-05-12 22:36:15,243 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,811 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131334144}) to executor  for transfer request: 0.
2022-05-12 22:36:15,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) about to wait for the following futures []
2022-05-12 22:36:15,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) done waiting for dependent futures
2022-05-12 22:36:15,813 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131334144}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 131334144}
2022-05-12 22:36:15,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:16,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66846720}) to executor  for transfer request: 0.
2022-05-12 22:36:16,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:16,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:16,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) about to wait for the following futures []
2022-05-12 22:36:16,735 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) about to wait for the following futures []
2022-05-12 22:36:16,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) done waiting for dependent futures
2022-05-12 22:36:16,736 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) done waiting for dependent futures
2022-05-12 22:36:16,736 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66846720}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 66846720}
2022-05-12 22:36:16,736 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=192937984-201326591'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 192937984, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:16,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:16,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:16,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:16,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:16,737 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:16,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:16,737 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:16,737 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:16,737 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:36:16,738 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:16,738 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:16,738 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=192937984-201326591', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:16,738 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:16,738 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:16,738 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:16,738 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:16,738 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:16,738 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:16,738 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:36:16,738 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:36:16,739 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:16,739 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=192937984-201326591
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223616Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:16,739 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223616Z
20220512/eu-central-1/s3/aws4_request
86293e3890fa8174ef24745883f4557e9141fb35e4205b8e62f859f4930429a8
2022-05-12 22:36:16,739 botocore.auth DEBUG    Signature:
4ddfe5b9346f0a68d21317e80a8a78f15e1be740d225a2de6eb6654afc303061
2022-05-12 22:36:16,739 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:16,739 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:16,739 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:16,740 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:16,988 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:16,988 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'KtyreC5Safa4mAwNhq1rFNaHzqjGDx0fBOjyOp9Ov1alFqOOpm70VLGP5gKYSHzkXbLhBjKjrqI=', 'x-amz-request-id': 'YKSCM2YTPHF0263A', 'Date': 'Thu, 12 May 2022 22:36:17 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 192937984-201326591/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:36:16,988 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:16,989 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:16,989 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:16,989 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:18,494 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185073664}) to executor  for transfer request: 0.
2022-05-12 22:36:18,494 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) about to wait for the following futures []
2022-05-12 22:36:18,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) done waiting for dependent futures
2022-05-12 22:36:18,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185073664}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 185073664}
2022-05-12 22:36:18,495 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,674 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:36:18,674 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:36:18,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:36:18,675 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 7864320}
2022-05-12 22:36:18,675 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140247040}) to executor  for transfer request: 0.
2022-05-12 22:36:18,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) about to wait for the following futures []
2022-05-12 22:36:18,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) done waiting for dependent futures
2022-05-12 22:36:18,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140247040}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 140247040}
2022-05-12 22:36:18,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:19,244 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178520064}) to executor  for transfer request: 0.
2022-05-12 22:36:19,244 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:19,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) about to wait for the following futures []
2022-05-12 22:36:19,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) done waiting for dependent futures
2022-05-12 22:36:19,245 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178520064}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 178520064}
2022-05-12 22:36:19,245 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:19,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170917888}) to executor  for transfer request: 0.
2022-05-12 22:36:19,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:19,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) about to wait for the following futures []
2022-05-12 22:36:19,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) done waiting for dependent futures
2022-05-12 22:36:19,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170917888}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 170917888}
2022-05-12 22:36:19,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:20,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164888576}) to executor  for transfer request: 0.
2022-05-12 22:36:20,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:20,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) about to wait for the following futures []
2022-05-12 22:36:20,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) done waiting for dependent futures
2022-05-12 22:36:20,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164888576}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 164888576}
2022-05-12 22:36:20,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:22,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124518400}) to executor  for transfer request: 0.
2022-05-12 22:36:22,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:22,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) about to wait for the following futures []
2022-05-12 22:36:22,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) done waiting for dependent futures
2022-05-12 22:36:22,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124518400}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 124518400}
2022-05-12 22:36:22,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,406 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149422080}) to executor  for transfer request: 0.
2022-05-12 22:36:23,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) about to wait for the following futures []
2022-05-12 22:36:23,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) done waiting for dependent futures
2022-05-12 22:36:23,407 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149422080}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 149422080}
2022-05-12 22:36:23,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131596288}) to executor  for transfer request: 0.
2022-05-12 22:36:23,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) about to wait for the following futures []
2022-05-12 22:36:23,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) done waiting for dependent futures
2022-05-12 22:36:23,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131596288}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 131596288}
2022-05-12 22:36:23,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,988 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156499968}) to executor  for transfer request: 0.
2022-05-12 22:36:24,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:24,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) about to wait for the following futures []
2022-05-12 22:36:24,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) done waiting for dependent futures
2022-05-12 22:36:24,989 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156499968}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 156499968}
2022-05-12 22:36:24,989 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,844 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185335808}) to executor  for transfer request: 0.
2022-05-12 22:36:27,844 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) about to wait for the following futures []
2022-05-12 22:36:27,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) done waiting for dependent futures
2022-05-12 22:36:27,845 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185335808}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 185335808}
2022-05-12 22:36:27,846 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:29,232 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192937984}) to executor  for transfer request: 0.
2022-05-12 22:36:29,232 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:29,232 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) about to wait for the following futures []
2022-05-12 22:36:29,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) done waiting for dependent futures
2022-05-12 22:36:29,233 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192937984}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 192937984}
2022-05-12 22:36:29,233 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:29,692 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165150720}) to executor  for transfer request: 0.
2022-05-12 22:36:29,692 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:29,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) about to wait for the following futures []
2022-05-12 22:36:29,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) done waiting for dependent futures
2022-05-12 22:36:29,693 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165150720}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 165150720}
2022-05-12 22:36:29,693 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131858432}) to executor  for transfer request: 0.
2022-05-12 22:36:30,412 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) about to wait for the following futures []
2022-05-12 22:36:30,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) done waiting for dependent futures
2022-05-12 22:36:30,412 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131858432}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 131858432}
2022-05-12 22:36:30,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124780544}) to executor  for transfer request: 0.
2022-05-12 22:36:30,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) about to wait for the following futures []
2022-05-12 22:36:30,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) done waiting for dependent futures
2022-05-12 22:36:30,913 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124780544}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 124780544}
2022-05-12 22:36:30,914 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:32,196 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149684224}) to executor  for transfer request: 0.
2022-05-12 22:36:32,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:32,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) about to wait for the following futures []
2022-05-12 22:36:32,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) done waiting for dependent futures
2022-05-12 22:36:32,197 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149684224}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 149684224}
2022-05-12 22:36:32,198 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,007 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:36:33,007 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,007 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:36:33,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:36:33,007 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:36:33,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,008 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 8126464}
2022-05-12 22:36:33,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,009 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:36:33,009 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:36:33,009 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:36:33,009 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171180032}) to executor  for transfer request: 0.
2022-05-12 22:36:33,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) about to wait for the following futures []
2022-05-12 22:36:33,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) done waiting for dependent futures
2022-05-12 22:36:33,326 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171180032}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 171180032}
2022-05-12 22:36:33,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,776 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140509184}) to executor  for transfer request: 0.
2022-05-12 22:36:33,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) about to wait for the following futures []
2022-05-12 22:36:33,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) done waiting for dependent futures
2022-05-12 22:36:33,777 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140509184}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 140509184}
2022-05-12 22:36:33,777 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:34,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156762112}) to executor  for transfer request: 0.
2022-05-12 22:36:34,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:34,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) about to wait for the following futures []
2022-05-12 22:36:34,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) done waiting for dependent futures
2022-05-12 22:36:34,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156762112}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 156762112}
2022-05-12 22:36:34,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:35,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178782208}) to executor  for transfer request: 0.
2022-05-12 22:36:35,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:35,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) about to wait for the following futures []
2022-05-12 22:36:35,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) done waiting for dependent futures
2022-05-12 22:36:35,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178782208}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 178782208}
2022-05-12 22:36:35,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:35,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165412864}) to executor  for transfer request: 0.
2022-05-12 22:36:35,208 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:35,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) about to wait for the following futures []
2022-05-12 22:36:35,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) done waiting for dependent futures
2022-05-12 22:36:35,208 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165412864}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 165412864}
2022-05-12 22:36:35,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:36,604 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185597952}) to executor  for transfer request: 0.
2022-05-12 22:36:36,604 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:36,605 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) about to wait for the following futures []
2022-05-12 22:36:36,605 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) done waiting for dependent futures
2022-05-12 22:36:36,605 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185597952}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 185597952}
2022-05-12 22:36:36,606 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:38,570 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193200128}) to executor  for transfer request: 0.
2022-05-12 22:36:38,570 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:38,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) about to wait for the following futures []
2022-05-12 22:36:38,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) done waiting for dependent futures
2022-05-12 22:36:38,570 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193200128}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 193200128}
2022-05-12 22:36:38,571 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:40,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132120576}) to executor  for transfer request: 0.
2022-05-12 22:36:40,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:40,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) about to wait for the following futures []
2022-05-12 22:36:40,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) done waiting for dependent futures
2022-05-12 22:36:40,641 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132120576}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 132120576}
2022-05-12 22:36:40,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,080 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149946368}) to executor  for transfer request: 0.
2022-05-12 22:36:41,081 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) about to wait for the following futures []
2022-05-12 22:36:41,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) done waiting for dependent futures
2022-05-12 22:36:41,081 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149946368}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 149946368}
2022-05-12 22:36:41,082 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,634 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125042688}) to executor  for transfer request: 0.
2022-05-12 22:36:41,634 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) about to wait for the following futures []
2022-05-12 22:36:41,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) done waiting for dependent futures
2022-05-12 22:36:41,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125042688}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 125042688}
2022-05-12 22:36:41,635 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:44,144 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165675008}) to executor  for transfer request: 0.
2022-05-12 22:36:44,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:44,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) about to wait for the following futures []
2022-05-12 22:36:44,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) done waiting for dependent futures
2022-05-12 22:36:44,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165675008}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 165675008}
2022-05-12 22:36:44,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:44,335 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157024256}) to executor  for transfer request: 0.
2022-05-12 22:36:44,335 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:44,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) about to wait for the following futures []
2022-05-12 22:36:44,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) done waiting for dependent futures
2022-05-12 22:36:44,336 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157024256}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 157024256}
2022-05-12 22:36:44,336 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:47,227 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150208512}) to executor  for transfer request: 0.
2022-05-12 22:36:47,227 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) about to wait for the following futures []
2022-05-12 22:36:47,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) done waiting for dependent futures
2022-05-12 22:36:47,228 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150208512}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 150208512}
2022-05-12 22:36:47,228 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:48,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179044352}) to executor  for transfer request: 0.
2022-05-12 22:36:48,471 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:48,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) about to wait for the following futures []
2022-05-12 22:36:48,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) done waiting for dependent futures
2022-05-12 22:36:48,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179044352}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 179044352}
2022-05-12 22:36:48,472 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:48,741 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132382720}) to executor  for transfer request: 0.
2022-05-12 22:36:48,741 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:48,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) about to wait for the following futures []
2022-05-12 22:36:48,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) done waiting for dependent futures
2022-05-12 22:36:48,741 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132382720}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 132382720}
2022-05-12 22:36:48,742 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:48,801 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171442176}) to executor  for transfer request: 0.
2022-05-12 22:36:48,801 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:48,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) about to wait for the following futures []
2022-05-12 22:36:48,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) done waiting for dependent futures
2022-05-12 22:36:48,802 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171442176}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 171442176}
2022-05-12 22:36:48,802 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:49,522 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140771328}) to executor  for transfer request: 0.
2022-05-12 22:36:49,522 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:49,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) about to wait for the following futures []
2022-05-12 22:36:49,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) done waiting for dependent futures
2022-05-12 22:36:49,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140771328}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 140771328}
2022-05-12 22:36:49,523 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:49,688 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185860096}) to executor  for transfer request: 0.
2022-05-12 22:36:49,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:49,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) about to wait for the following futures []
2022-05-12 22:36:49,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) done waiting for dependent futures
2022-05-12 22:36:49,689 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185860096}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 185860096}
2022-05-12 22:36:49,689 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:49,800 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193462272}) to executor  for transfer request: 0.
2022-05-12 22:36:49,800 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:49,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) about to wait for the following futures []
2022-05-12 22:36:49,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) done waiting for dependent futures
2022-05-12 22:36:49,801 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193462272}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 193462272}
2022-05-12 22:36:49,802 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:50,080 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125304832}) to executor  for transfer request: 0.
2022-05-12 22:36:50,080 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) about to wait for the following futures []
2022-05-12 22:36:50,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) done waiting for dependent futures
2022-05-12 22:36:50,081 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125304832}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 125304832}
2022-05-12 22:36:50,081 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:50,477 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165937152}) to executor  for transfer request: 0.
2022-05-12 22:36:50,477 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) about to wait for the following futures []
2022-05-12 22:36:50,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) done waiting for dependent futures
2022-05-12 22:36:50,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165937152}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 165937152}
2022-05-12 22:36:50,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:53,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157286400}) to executor  for transfer request: 0.
2022-05-12 22:36:53,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:53,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) about to wait for the following futures []
2022-05-12 22:36:53,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) done waiting for dependent futures
2022-05-12 22:36:53,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157286400}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 157286400}
2022-05-12 22:36:53,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:54,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150470656}) to executor  for transfer request: 0.
2022-05-12 22:36:54,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:54,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) about to wait for the following futures []
2022-05-12 22:36:54,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) done waiting for dependent futures
2022-05-12 22:36:54,005 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150470656}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 150470656}
2022-05-12 22:36:54,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:56,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132644864}) to executor  for transfer request: 0.
2022-05-12 22:36:56,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:56,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) about to wait for the following futures []
2022-05-12 22:36:56,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) done waiting for dependent futures
2022-05-12 22:36:56,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132644864}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 132644864}
2022-05-12 22:36:56,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:57,172 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179306496}) to executor  for transfer request: 0.
2022-05-12 22:36:57,172 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:57,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) about to wait for the following futures []
2022-05-12 22:36:57,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) done waiting for dependent futures
2022-05-12 22:36:57,173 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179306496}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 179306496}
2022-05-12 22:36:57,173 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:58,502 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186122240}) to executor  for transfer request: 0.
2022-05-12 22:36:58,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:58,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) about to wait for the following futures []
2022-05-12 22:36:58,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) done waiting for dependent futures
2022-05-12 22:36:58,503 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186122240}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 186122240}
2022-05-12 22:36:58,503 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:59,586 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141033472}) to executor  for transfer request: 0.
2022-05-12 22:36:59,586 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:59,586 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) about to wait for the following futures []
2022-05-12 22:36:59,586 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) done waiting for dependent futures
2022-05-12 22:36:59,587 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141033472}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 141033472}
2022-05-12 22:36:59,587 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:59,934 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166199296}) to executor  for transfer request: 0.
2022-05-12 22:36:59,934 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:59,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) about to wait for the following futures []
2022-05-12 22:36:59,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) done waiting for dependent futures
2022-05-12 22:36:59,935 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166199296}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 166199296}
2022-05-12 22:36:59,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,056 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125566976}) to executor  for transfer request: 0.
2022-05-12 22:37:02,057 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) about to wait for the following futures []
2022-05-12 22:37:02,057 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) about to wait for the following futures []
2022-05-12 22:37:02,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) done waiting for dependent futures
2022-05-12 22:37:02,058 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) done waiting for dependent futures
2022-05-12 22:37:02,058 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125566976}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 125566976}
2022-05-12 22:37:02,058 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=201326592-209715199'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 201326592, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:37:02,059 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:02,059 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:02,059 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:02,059 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:02,059 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:02,059 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:02,060 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:37:02,060 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:37:02,060 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:02,060 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:02,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,060 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=201326592-209715199', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:37:02,061 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:02,061 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:37:02,061 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:02,061 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:02,061 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:37:02,061 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:37:02,061 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:37:02,061 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:37:02,062 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:37:02,062 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=201326592-209715199
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223702Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:37:02,062 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223702Z
20220512/eu-central-1/s3/aws4_request
ce670c7b1dfcaf0bdf2874c536b3bdb592e1c526d7df3bcc9166e3534ed9f065
2022-05-12 22:37:02,062 botocore.auth DEBUG    Signature:
e4eaf855039aba88f125f6bee1979c614b9da3afdcdba5421aef182fa24b034c
2022-05-12 22:37:02,062 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:02,062 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:02,062 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:37:02,063 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:37:02,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157548544}) to executor  for transfer request: 0.
2022-05-12 22:37:02,154 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) about to wait for the following futures []
2022-05-12 22:37:02,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) done waiting for dependent futures
2022-05-12 22:37:02,155 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157548544}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 157548544}
2022-05-12 22:37:02,155 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,284 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:37:02,284 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'DjCXB+3P91LUtTV/EA2gRyiZ+jstLHiTYzhrIYcF1QZt2yE8bhYM+N4BFAgbSCqYGBxOoxAETec=', 'x-amz-request-id': '9JSCNAPX25Y4EBXB', 'Date': 'Thu, 12 May 2022 22:37:03 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 201326592-209715199/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:37:02,284 botocore.parsers DEBUG    Response body:

2022-05-12 22:37:02,285 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:37:02,285 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:37:02,285 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:37:02,491 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150732800}) to executor  for transfer request: 0.
2022-05-12 22:37:02,491 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,491 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,491 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) about to wait for the following futures []
2022-05-12 22:37:02,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) about to wait for the following futures []
2022-05-12 22:37:02,491 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) done waiting for dependent futures
2022-05-12 22:37:02,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) done waiting for dependent futures
2022-05-12 22:37:02,491 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=28>, 'extra_args': {'Range': 'bytes=209715200-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 209715200, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:37:02,491 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150732800}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 150732800}
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:02,492 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:37:02,492 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:02,492 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=209715200-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:37:02,492 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:37:02,492 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:37:02,492 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data/BANDS.npy
2022-05-12 22:37:02,492 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:37:02,492 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_2/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=209715200-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223702Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:37:02,492 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223702Z
20220512/eu-central-1/s3/aws4_request
b3ec12d84d7e4fa2af3a697d8b45f1e85df08de309ad2f5e1cdf1488c82d06c9
2022-05-12 22:37:02,493 botocore.auth DEBUG    Signature:
a8b35c2025fa518d098bca39c51643410b82337c936c2b73d85de304334e158f
2022-05-12 22:37:02,493 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:02,493 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:02,493 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:37:02,493 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:37:02,697 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_2/data/BANDS.npy HTTP/1.1" 206 3244928
2022-05-12 22:37:02,698 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'W3Wu19cqbl7OuynyhoDMgfafUuqHrUb/KJFMrkgsJeNoXbSCKwXcHn3eWwzBfAitPi2fd+fdFAU=', 'x-amz-request-id': '9JS77AG0K18S4J4B', 'Date': 'Thu, 12 May 2022 22:37:03 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:19 GMT', 'ETag': '"04937122e128d9427598ec0ac3900c99-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 209715200-212960127/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '3244928', 'Connection': 'close'}
2022-05-12 22:37:02,698 botocore.parsers DEBUG    Response body:

2022-05-12 22:37:02,699 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:37:02,699 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:37:02,699 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:37:04,488 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193724416}) to executor  for transfer request: 0.
2022-05-12 22:37:04,488 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:04,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) about to wait for the following futures []
2022-05-12 22:37:04,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) done waiting for dependent futures
2022-05-12 22:37:04,489 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193724416}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 193724416}
2022-05-12 22:37:04,489 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:05,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132907008}) to executor  for transfer request: 0.
2022-05-12 22:37:05,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:05,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) about to wait for the following futures []
2022-05-12 22:37:05,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) done waiting for dependent futures
2022-05-12 22:37:05,274 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132907008}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 132907008}
2022-05-12 22:37:05,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:06,163 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186384384}) to executor  for transfer request: 0.
2022-05-12 22:37:06,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:06,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) about to wait for the following futures []
2022-05-12 22:37:06,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) done waiting for dependent futures
2022-05-12 22:37:06,164 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186384384}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 186384384}
2022-05-12 22:37:06,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:07,062 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141295616}) to executor  for transfer request: 0.
2022-05-12 22:37:07,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:07,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) about to wait for the following futures []
2022-05-12 22:37:07,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) done waiting for dependent futures
2022-05-12 22:37:07,063 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141295616}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 141295616}
2022-05-12 22:37:07,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:07,081 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157810688}) to executor  for transfer request: 0.
2022-05-12 22:37:07,082 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:07,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) about to wait for the following futures []
2022-05-12 22:37:07,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) done waiting for dependent futures
2022-05-12 22:37:07,082 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157810688}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 157810688}
2022-05-12 22:37:07,083 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,321 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171704320}) to executor  for transfer request: 0.
2022-05-12 22:37:08,321 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) about to wait for the following futures []
2022-05-12 22:37:08,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) done waiting for dependent futures
2022-05-12 22:37:08,322 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171704320}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 171704320}
2022-05-12 22:37:08,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179568640}) to executor  for transfer request: 0.
2022-05-12 22:37:08,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) about to wait for the following futures []
2022-05-12 22:37:08,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) done waiting for dependent futures
2022-05-12 22:37:08,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179568640}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 179568640}
2022-05-12 22:37:08,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:09,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201326592}) to executor  for transfer request: 0.
2022-05-12 22:37:09,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:09,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) about to wait for the following futures []
2022-05-12 22:37:09,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) done waiting for dependent futures
2022-05-12 22:37:09,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201326592}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 201326592}
2022-05-12 22:37:09,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:10,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158072832}) to executor  for transfer request: 0.
2022-05-12 22:37:10,921 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:10,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) about to wait for the following futures []
2022-05-12 22:37:10,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) done waiting for dependent futures
2022-05-12 22:37:10,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158072832}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 158072832}
2022-05-12 22:37:10,922 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166461440}) to executor  for transfer request: 0.
2022-05-12 22:37:11,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:11,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) about to wait for the following futures []
2022-05-12 22:37:11,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) done waiting for dependent futures
2022-05-12 22:37:11,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166461440}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 166461440}
2022-05-12 22:37:11,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:12,088 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209715200}) to executor  for transfer request: 0.
2022-05-12 22:37:12,088 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:12,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) about to wait for the following futures []
2022-05-12 22:37:12,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) done waiting for dependent futures
2022-05-12 22:37:12,089 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209715200}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 209715200}
2022-05-12 22:37:12,089 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:13,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193986560}) to executor  for transfer request: 0.
2022-05-12 22:37:13,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:13,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) about to wait for the following futures []
2022-05-12 22:37:13,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) done waiting for dependent futures
2022-05-12 22:37:13,557 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193986560}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 193986560}
2022-05-12 22:37:13,557 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133169152}) to executor  for transfer request: 0.
2022-05-12 22:37:14,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) about to wait for the following futures []
2022-05-12 22:37:14,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) done waiting for dependent futures
2022-05-12 22:37:14,141 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133169152}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 133169152}
2022-05-12 22:37:14,141 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186646528}) to executor  for transfer request: 0.
2022-05-12 22:37:14,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) about to wait for the following futures []
2022-05-12 22:37:14,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) done waiting for dependent futures
2022-05-12 22:37:14,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186646528}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 186646528}
2022-05-12 22:37:14,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:15,324 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141557760}) to executor  for transfer request: 0.
2022-05-12 22:37:15,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:15,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) about to wait for the following futures []
2022-05-12 22:37:15,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) done waiting for dependent futures
2022-05-12 22:37:15,325 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141557760}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 141557760}
2022-05-12 22:37:15,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,284 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166723584}) to executor  for transfer request: 0.
2022-05-12 22:37:17,284 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) about to wait for the following futures []
2022-05-12 22:37:17,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) done waiting for dependent futures
2022-05-12 22:37:17,284 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166723584}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 166723584}
2022-05-12 22:37:17,285 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201588736}) to executor  for transfer request: 0.
2022-05-12 22:37:17,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) about to wait for the following futures []
2022-05-12 22:37:17,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) done waiting for dependent futures
2022-05-12 22:37:17,993 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201588736}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 201588736}
2022-05-12 22:37:17,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:18,762 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133431296}) to executor  for transfer request: 0.
2022-05-12 22:37:18,762 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:18,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) about to wait for the following futures []
2022-05-12 22:37:18,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) done waiting for dependent futures
2022-05-12 22:37:18,763 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133431296}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 133431296}
2022-05-12 22:37:18,763 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:18,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158334976}) to executor  for transfer request: 0.
2022-05-12 22:37:18,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:18,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) about to wait for the following futures []
2022-05-12 22:37:18,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) done waiting for dependent futures
2022-05-12 22:37:18,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158334976}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 158334976}
2022-05-12 22:37:18,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:21,081 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186908672}) to executor  for transfer request: 0.
2022-05-12 22:37:21,082 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:21,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) about to wait for the following futures []
2022-05-12 22:37:21,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) done waiting for dependent futures
2022-05-12 22:37:21,082 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186908672}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 186908672}
2022-05-12 22:37:21,083 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:21,339 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209977344}) to executor  for transfer request: 0.
2022-05-12 22:37:21,339 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:21,339 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) about to wait for the following futures []
2022-05-12 22:37:21,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) done waiting for dependent futures
2022-05-12 22:37:21,340 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209977344}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 209977344}
2022-05-12 22:37:21,340 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171966464}) to executor  for transfer request: 0.
2022-05-12 22:37:22,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) about to wait for the following futures []
2022-05-12 22:37:22,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) done waiting for dependent futures
2022-05-12 22:37:22,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171966464}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 171966464}
2022-05-12 22:37:22,045 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179830784}) to executor  for transfer request: 0.
2022-05-12 22:37:22,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) about to wait for the following futures []
2022-05-12 22:37:22,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) done waiting for dependent futures
2022-05-12 22:37:22,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179830784}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 179830784}
2022-05-12 22:37:22,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:25,830 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133693440}) to executor  for transfer request: 0.
2022-05-12 22:37:25,830 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:25,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) about to wait for the following futures []
2022-05-12 22:37:25,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) done waiting for dependent futures
2022-05-12 22:37:25,831 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133693440}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 133693440}
2022-05-12 22:37:25,831 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:26,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141819904}) to executor  for transfer request: 0.
2022-05-12 22:37:26,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:26,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) about to wait for the following futures []
2022-05-12 22:37:26,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) done waiting for dependent futures
2022-05-12 22:37:26,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141819904}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 141819904}
2022-05-12 22:37:26,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,112 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194248704}) to executor  for transfer request: 0.
2022-05-12 22:37:27,112 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) about to wait for the following futures []
2022-05-12 22:37:27,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) done waiting for dependent futures
2022-05-12 22:37:27,113 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194248704}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 194248704}
2022-05-12 22:37:27,113 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166985728}) to executor  for transfer request: 0.
2022-05-12 22:37:27,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) about to wait for the following futures []
2022-05-12 22:37:27,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) done waiting for dependent futures
2022-05-12 22:37:27,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166985728}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 166985728}
2022-05-12 22:37:27,679 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:28,266 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201850880}) to executor  for transfer request: 0.
2022-05-12 22:37:28,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:28,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) about to wait for the following futures []
2022-05-12 22:37:28,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) done waiting for dependent futures
2022-05-12 22:37:28,267 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201850880}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 201850880}
2022-05-12 22:37:28,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:29,787 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187170816}) to executor  for transfer request: 0.
2022-05-12 22:37:29,787 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:29,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) about to wait for the following futures []
2022-05-12 22:37:29,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) done waiting for dependent futures
2022-05-12 22:37:29,788 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187170816}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 187170816}
2022-05-12 22:37:29,788 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210239488}) to executor  for transfer request: 0.
2022-05-12 22:37:30,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:30,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) about to wait for the following futures []
2022-05-12 22:37:30,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) done waiting for dependent futures
2022-05-12 22:37:30,802 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210239488}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 210239488}
2022-05-12 22:37:30,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,918 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158597120}) to executor  for transfer request: 0.
2022-05-12 22:37:30,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:30,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) about to wait for the following futures []
2022-05-12 22:37:30,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) done waiting for dependent futures
2022-05-12 22:37:30,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158597120}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 158597120}
2022-05-12 22:37:30,918 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,965 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180092928}) to executor  for transfer request: 0.
2022-05-12 22:37:32,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) about to wait for the following futures []
2022-05-12 22:37:32,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) done waiting for dependent futures
2022-05-12 22:37:32,966 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180092928}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 180092928}
2022-05-12 22:37:32,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:33,305 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167247872}) to executor  for transfer request: 0.
2022-05-12 22:37:33,305 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:33,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) about to wait for the following futures []
2022-05-12 22:37:33,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) done waiting for dependent futures
2022-05-12 22:37:33,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167247872}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 167247872}
2022-05-12 22:37:33,306 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:34,090 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194510848}) to executor  for transfer request: 0.
2022-05-12 22:37:34,090 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:34,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) about to wait for the following futures []
2022-05-12 22:37:34,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) done waiting for dependent futures
2022-05-12 22:37:34,091 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194510848}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 194510848}
2022-05-12 22:37:34,092 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:35,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142082048}) to executor  for transfer request: 0.
2022-05-12 22:37:35,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:35,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) about to wait for the following futures []
2022-05-12 22:37:35,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) done waiting for dependent futures
2022-05-12 22:37:35,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142082048}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 142082048}
2022-05-12 22:37:35,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:35,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133955584}) to executor  for transfer request: 0.
2022-05-12 22:37:35,221 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:35,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:35,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) about to wait for the following futures []
2022-05-12 22:37:35,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) done waiting for dependent futures
2022-05-12 22:37:35,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133955584}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 133955584}
2022-05-12 22:37:35,223 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:36,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202113024}) to executor  for transfer request: 0.
2022-05-12 22:37:36,169 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:36,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) about to wait for the following futures []
2022-05-12 22:37:36,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) done waiting for dependent futures
2022-05-12 22:37:36,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202113024}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 202113024}
2022-05-12 22:37:36,170 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:36,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158859264}) to executor  for transfer request: 0.
2022-05-12 22:37:36,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:36,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) about to wait for the following futures []
2022-05-12 22:37:36,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) done waiting for dependent futures
2022-05-12 22:37:36,238 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158859264}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 158859264}
2022-05-12 22:37:36,238 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,533 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210501632}) to executor  for transfer request: 0.
2022-05-12 22:37:37,533 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) about to wait for the following futures []
2022-05-12 22:37:37,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) done waiting for dependent futures
2022-05-12 22:37:37,534 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210501632}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 210501632}
2022-05-12 22:37:37,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167510016}) to executor  for transfer request: 0.
2022-05-12 22:37:37,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,947 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) about to wait for the following futures []
2022-05-12 22:37:37,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) done waiting for dependent futures
2022-05-12 22:37:37,948 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167510016}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 167510016}
2022-05-12 22:37:37,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:38,249 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180355072}) to executor  for transfer request: 0.
2022-05-12 22:37:38,249 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:38,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) about to wait for the following futures []
2022-05-12 22:37:38,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) done waiting for dependent futures
2022-05-12 22:37:38,250 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180355072}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 180355072}
2022-05-12 22:37:38,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:38,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187432960}) to executor  for transfer request: 0.
2022-05-12 22:37:38,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:38,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) about to wait for the following futures []
2022-05-12 22:37:38,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) done waiting for dependent futures
2022-05-12 22:37:38,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187432960}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 187432960}
2022-05-12 22:37:38,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:39,243 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172228608}) to executor  for transfer request: 0.
2022-05-12 22:37:39,244 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:39,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) about to wait for the following futures []
2022-05-12 22:37:39,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) done waiting for dependent futures
2022-05-12 22:37:39,244 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172228608}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 172228608}
2022-05-12 22:37:39,245 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142344192}) to executor  for transfer request: 0.
2022-05-12 22:37:41,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) about to wait for the following futures []
2022-05-12 22:37:41,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) done waiting for dependent futures
2022-05-12 22:37:41,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142344192}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 142344192}
2022-05-12 22:37:41,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:42,342 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194772992}) to executor  for transfer request: 0.
2022-05-12 22:37:42,342 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:42,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) about to wait for the following futures []
2022-05-12 22:37:42,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) done waiting for dependent futures
2022-05-12 22:37:42,343 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194772992}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 194772992}
2022-05-12 22:37:42,343 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:42,386 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159121408}) to executor  for transfer request: 0.
2022-05-12 22:37:42,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:42,386 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:42,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) about to wait for the following futures []
2022-05-12 22:37:42,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) done waiting for dependent futures
2022-05-12 22:37:42,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159121408}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 159121408}
2022-05-12 22:37:42,387 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:43,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210763776}) to executor  for transfer request: 0.
2022-05-12 22:37:43,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:43,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) about to wait for the following futures []
2022-05-12 22:37:43,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) done waiting for dependent futures
2022-05-12 22:37:43,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210763776}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 210763776}
2022-05-12 22:37:43,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,801 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202375168}) to executor  for transfer request: 0.
2022-05-12 22:37:44,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) about to wait for the following futures []
2022-05-12 22:37:44,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) done waiting for dependent futures
2022-05-12 22:37:44,802 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202375168}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 202375168}
2022-05-12 22:37:44,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180617216}) to executor  for transfer request: 0.
2022-05-12 22:37:45,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) about to wait for the following futures []
2022-05-12 22:37:45,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) done waiting for dependent futures
2022-05-12 22:37:45,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180617216}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 180617216}
2022-05-12 22:37:45,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:47,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187695104}) to executor  for transfer request: 0.
2022-05-12 22:37:47,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:47,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) about to wait for the following futures []
2022-05-12 22:37:47,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) done waiting for dependent futures
2022-05-12 22:37:47,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187695104}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 187695104}
2022-05-12 22:37:47,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:48,898 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195035136}) to executor  for transfer request: 0.
2022-05-12 22:37:48,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:48,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) about to wait for the following futures []
2022-05-12 22:37:48,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) done waiting for dependent futures
2022-05-12 22:37:48,899 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195035136}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 195035136}
2022-05-12 22:37:48,899 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,813 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211025920}) to executor  for transfer request: 0.
2022-05-12 22:37:51,813 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) about to wait for the following futures []
2022-05-12 22:37:51,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) done waiting for dependent futures
2022-05-12 22:37:51,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211025920}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 211025920}
2022-05-12 22:37:51,814 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:52,405 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172490752}) to executor  for transfer request: 0.
2022-05-12 22:37:52,405 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:52,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) about to wait for the following futures []
2022-05-12 22:37:52,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) done waiting for dependent futures
2022-05-12 22:37:52,406 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172490752}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 172490752}
2022-05-12 22:37:52,406 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:52,513 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180879360}) to executor  for transfer request: 0.
2022-05-12 22:37:52,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:52,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) about to wait for the following futures []
2022-05-12 22:37:52,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) done waiting for dependent futures
2022-05-12 22:37:52,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180879360}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 180879360}
2022-05-12 22:37:52,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:54,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195297280}) to executor  for transfer request: 0.
2022-05-12 22:37:54,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:54,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) about to wait for the following futures []
2022-05-12 22:37:54,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) done waiting for dependent futures
2022-05-12 22:37:54,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195297280}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 195297280}
2022-05-12 22:37:54,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,610 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211288064}) to executor  for transfer request: 0.
2022-05-12 22:37:57,610 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:57,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) about to wait for the following futures []
2022-05-12 22:37:57,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) done waiting for dependent futures
2022-05-12 22:37:57,611 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211288064}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 211288064}
2022-05-12 22:37:57,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187957248}) to executor  for transfer request: 0.
2022-05-12 22:37:57,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:57,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) about to wait for the following futures []
2022-05-12 22:37:57,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) done waiting for dependent futures
2022-05-12 22:37:57,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187957248}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 187957248}
2022-05-12 22:37:57,688 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,820 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202637312}) to executor  for transfer request: 0.
2022-05-12 22:37:57,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:57,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) about to wait for the following futures []
2022-05-12 22:37:57,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) done waiting for dependent futures
2022-05-12 22:37:57,821 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202637312}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 202637312}
2022-05-12 22:37:57,821 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211550208}) to executor  for transfer request: 0.
2022-05-12 22:38:01,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) about to wait for the following futures []
2022-05-12 22:38:01,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) done waiting for dependent futures
2022-05-12 22:38:01,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211550208}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 211550208}
2022-05-12 22:38:01,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,768 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181141504}) to executor  for transfer request: 0.
2022-05-12 22:38:01,769 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) about to wait for the following futures []
2022-05-12 22:38:01,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) done waiting for dependent futures
2022-05-12 22:38:01,769 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181141504}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 181141504}
2022-05-12 22:38:01,770 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:03,484 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172752896}) to executor  for transfer request: 0.
2022-05-12 22:38:03,484 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:03,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) about to wait for the following futures []
2022-05-12 22:38:03,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) done waiting for dependent futures
2022-05-12 22:38:03,485 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172752896}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 172752896}
2022-05-12 22:38:03,485 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:03,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195559424}) to executor  for transfer request: 0.
2022-05-12 22:38:03,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:03,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) about to wait for the following futures []
2022-05-12 22:38:03,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) done waiting for dependent futures
2022-05-12 22:38:03,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195559424}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 195559424}
2022-05-12 22:38:03,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:03,759 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188219392}) to executor  for transfer request: 0.
2022-05-12 22:38:03,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:03,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) about to wait for the following futures []
2022-05-12 22:38:03,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) done waiting for dependent futures
2022-05-12 22:38:03,760 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188219392}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 188219392}
2022-05-12 22:38:03,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211812352}) to executor  for transfer request: 0.
2022-05-12 22:38:05,527 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) about to wait for the following futures []
2022-05-12 22:38:05,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) done waiting for dependent futures
2022-05-12 22:38:05,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211812352}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 211812352}
2022-05-12 22:38:05,528 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:09,151 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181403648}) to executor  for transfer request: 0.
2022-05-12 22:38:09,151 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:09,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) about to wait for the following futures []
2022-05-12 22:38:09,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) done waiting for dependent futures
2022-05-12 22:38:09,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181403648}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 181403648}
2022-05-12 22:38:09,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:09,663 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202899456}) to executor  for transfer request: 0.
2022-05-12 22:38:09,663 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:09,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) about to wait for the following futures []
2022-05-12 22:38:09,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) done waiting for dependent futures
2022-05-12 22:38:09,664 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202899456}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 202899456}
2022-05-12 22:38:09,665 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:09,770 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173015040}) to executor  for transfer request: 0.
2022-05-12 22:38:09,770 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:09,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) about to wait for the following futures []
2022-05-12 22:38:09,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) done waiting for dependent futures
2022-05-12 22:38:09,771 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173015040}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 173015040}
2022-05-12 22:38:09,771 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:10,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195821568}) to executor  for transfer request: 0.
2022-05-12 22:38:10,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:10,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) about to wait for the following futures []
2022-05-12 22:38:10,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) done waiting for dependent futures
2022-05-12 22:38:10,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195821568}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 195821568}
2022-05-12 22:38:10,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:10,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212074496}) to executor  for transfer request: 0.
2022-05-12 22:38:10,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:10,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) about to wait for the following futures []
2022-05-12 22:38:10,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) done waiting for dependent futures
2022-05-12 22:38:10,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212074496}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 212074496}
2022-05-12 22:38:10,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:12,189 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188481536}) to executor  for transfer request: 0.
2022-05-12 22:38:12,189 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:12,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) about to wait for the following futures []
2022-05-12 22:38:12,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) done waiting for dependent futures
2022-05-12 22:38:12,189 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188481536}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 188481536}
2022-05-12 22:38:12,190 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:15,204 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181665792}) to executor  for transfer request: 0.
2022-05-12 22:38:15,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:15,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) about to wait for the following futures []
2022-05-12 22:38:15,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) done waiting for dependent futures
2022-05-12 22:38:15,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181665792}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 181665792}
2022-05-12 22:38:15,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:15,851 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212336640}) to executor  for transfer request: 0.
2022-05-12 22:38:15,851 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:15,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) about to wait for the following futures []
2022-05-12 22:38:15,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) done waiting for dependent futures
2022-05-12 22:38:15,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212336640}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 212336640}
2022-05-12 22:38:15,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:16,528 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173277184}) to executor  for transfer request: 0.
2022-05-12 22:38:16,528 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:16,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) about to wait for the following futures []
2022-05-12 22:38:16,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) done waiting for dependent futures
2022-05-12 22:38:16,529 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173277184}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 173277184}
2022-05-12 22:38:16,529 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:18,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188743680}) to executor  for transfer request: 0.
2022-05-12 22:38:18,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:18,141 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) about to wait for the following futures []
2022-05-12 22:38:18,141 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) done waiting for dependent futures
2022-05-12 22:38:18,141 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188743680}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 188743680}
2022-05-12 22:38:18,142 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:20,214 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203161600}) to executor  for transfer request: 0.
2022-05-12 22:38:20,214 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:20,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) about to wait for the following futures []
2022-05-12 22:38:20,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) done waiting for dependent futures
2022-05-12 22:38:20,215 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203161600}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 203161600}
2022-05-12 22:38:20,215 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:20,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196083712}) to executor  for transfer request: 0.
2022-05-12 22:38:20,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:20,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) about to wait for the following futures []
2022-05-12 22:38:20,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) done waiting for dependent futures
2022-05-12 22:38:20,463 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196083712}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 196083712}
2022-05-12 22:38:20,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:21,322 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212598784}) to executor  for transfer request: 0.
2022-05-12 22:38:21,322 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:21,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) about to wait for the following futures []
2022-05-12 22:38:21,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) done waiting for dependent futures
2022-05-12 22:38:21,323 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212598784}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 212598784}
2022-05-12 22:38:21,323 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:21,819 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181927936}) to executor  for transfer request: 0.
2022-05-12 22:38:21,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:21,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) about to wait for the following futures []
2022-05-12 22:38:21,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) done waiting for dependent futures
2022-05-12 22:38:21,819 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181927936}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 181927936}
2022-05-12 22:38:21,820 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,480 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212860928}) to executor  for transfer request: 0.
2022-05-12 22:38:22,481 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,481 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) about to wait for the following futures []
2022-05-12 22:38:22,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) done waiting for dependent futures
2022-05-12 22:38:22,481 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212860928}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 212860928}
2022-05-12 22:38:22,482 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:25,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173539328}) to executor  for transfer request: 0.
2022-05-12 22:38:25,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:25,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) about to wait for the following futures []
2022-05-12 22:38:25,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) done waiting for dependent futures
2022-05-12 22:38:25,150 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173539328}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 173539328}
2022-05-12 22:38:25,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:25,989 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189005824}) to executor  for transfer request: 0.
2022-05-12 22:38:25,989 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:25,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) about to wait for the following futures []
2022-05-12 22:38:25,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) done waiting for dependent futures
2022-05-12 22:38:25,990 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189005824}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 189005824}
2022-05-12 22:38:25,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196345856}) to executor  for transfer request: 0.
2022-05-12 22:38:27,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) about to wait for the following futures []
2022-05-12 22:38:27,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) done waiting for dependent futures
2022-05-12 22:38:27,993 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196345856}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 196345856}
2022-05-12 22:38:27,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:28,961 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182190080}) to executor  for transfer request: 0.
2022-05-12 22:38:28,961 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:28,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) about to wait for the following futures []
2022-05-12 22:38:28,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) done waiting for dependent futures
2022-05-12 22:38:28,962 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182190080}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 182190080}
2022-05-12 22:38:28,962 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,777 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189267968}) to executor  for transfer request: 0.
2022-05-12 22:38:31,777 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) about to wait for the following futures []
2022-05-12 22:38:31,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) done waiting for dependent futures
2022-05-12 22:38:31,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189267968}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 189267968}
2022-05-12 22:38:31,778 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,963 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196608000}) to executor  for transfer request: 0.
2022-05-12 22:38:31,963 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,963 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) about to wait for the following futures []
2022-05-12 22:38:31,963 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) done waiting for dependent futures
2022-05-12 22:38:31,963 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196608000}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 196608000}
2022-05-12 22:38:31,964 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:32,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203423744}) to executor  for transfer request: 0.
2022-05-12 22:38:32,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:32,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) about to wait for the following futures []
2022-05-12 22:38:32,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) done waiting for dependent futures
2022-05-12 22:38:32,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203423744}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 203423744}
2022-05-12 22:38:32,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,206 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173801472}) to executor  for transfer request: 0.
2022-05-12 22:38:33,206 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:33,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) about to wait for the following futures []
2022-05-12 22:38:33,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) done waiting for dependent futures
2022-05-12 22:38:33,207 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173801472}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 173801472}
2022-05-12 22:38:33,207 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,634 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182452224}) to executor  for transfer request: 0.
2022-05-12 22:38:35,635 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,635 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) about to wait for the following futures []
2022-05-12 22:38:35,635 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) done waiting for dependent futures
2022-05-12 22:38:35,635 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182452224}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 182452224}
2022-05-12 22:38:35,636 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:36,224 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196870144}) to executor  for transfer request: 0.
2022-05-12 22:38:36,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:36,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) about to wait for the following futures []
2022-05-12 22:38:36,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) done waiting for dependent futures
2022-05-12 22:38:36,225 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196870144}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 196870144}
2022-05-12 22:38:36,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:38,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174063616}) to executor  for transfer request: 0.
2022-05-12 22:38:38,999 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:38,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) about to wait for the following futures []
2022-05-12 22:38:39,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) done waiting for dependent futures
2022-05-12 22:38:39,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174063616}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 174063616}
2022-05-12 22:38:39,000 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:39,236 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203685888}) to executor  for transfer request: 0.
2022-05-12 22:38:39,236 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:39,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) about to wait for the following futures []
2022-05-12 22:38:39,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) done waiting for dependent futures
2022-05-12 22:38:39,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203685888}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 203685888}
2022-05-12 22:38:39,237 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:39,524 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189530112}) to executor  for transfer request: 0.
2022-05-12 22:38:39,524 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:39,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) about to wait for the following futures []
2022-05-12 22:38:39,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) done waiting for dependent futures
2022-05-12 22:38:39,525 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189530112}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 189530112}
2022-05-12 22:38:39,525 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182714368}) to executor  for transfer request: 0.
2022-05-12 22:38:40,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) about to wait for the following futures []
2022-05-12 22:38:40,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) done waiting for dependent futures
2022-05-12 22:38:40,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182714368}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 182714368}
2022-05-12 22:38:40,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:44,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197132288}) to executor  for transfer request: 0.
2022-05-12 22:38:44,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:44,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) about to wait for the following futures []
2022-05-12 22:38:44,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) done waiting for dependent futures
2022-05-12 22:38:44,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197132288}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 197132288}
2022-05-12 22:38:44,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:44,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182976512}) to executor  for transfer request: 0.
2022-05-12 22:38:44,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:44,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) about to wait for the following futures []
2022-05-12 22:38:44,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) done waiting for dependent futures
2022-05-12 22:38:44,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182976512}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 182976512}
2022-05-12 22:38:44,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:45,959 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174325760}) to executor  for transfer request: 0.
2022-05-12 22:38:45,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:45,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) about to wait for the following futures []
2022-05-12 22:38:45,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) done waiting for dependent futures
2022-05-12 22:38:45,959 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174325760}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 174325760}
2022-05-12 22:38:45,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:46,751 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189792256}) to executor  for transfer request: 0.
2022-05-12 22:38:46,752 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:46,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) about to wait for the following futures []
2022-05-12 22:38:46,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) done waiting for dependent futures
2022-05-12 22:38:46,753 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189792256}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 189792256}
2022-05-12 22:38:46,754 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,828 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203948032}) to executor  for transfer request: 0.
2022-05-12 22:38:47,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:47,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) about to wait for the following futures []
2022-05-12 22:38:47,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) done waiting for dependent futures
2022-05-12 22:38:47,829 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203948032}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 203948032}
2022-05-12 22:38:47,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183238656}) to executor  for transfer request: 0.
2022-05-12 22:38:48,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:48,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) about to wait for the following futures []
2022-05-12 22:38:48,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) done waiting for dependent futures
2022-05-12 22:38:48,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183238656}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 183238656}
2022-05-12 22:38:48,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:50,418 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174587904}) to executor  for transfer request: 0.
2022-05-12 22:38:50,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:50,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) about to wait for the following futures []
2022-05-12 22:38:50,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) done waiting for dependent futures
2022-05-12 22:38:50,419 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174587904}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 174587904}
2022-05-12 22:38:50,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,086 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197394432}) to executor  for transfer request: 0.
2022-05-12 22:38:52,086 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:52,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) about to wait for the following futures []
2022-05-12 22:38:52,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) done waiting for dependent futures
2022-05-12 22:38:52,087 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197394432}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 197394432}
2022-05-12 22:38:52,087 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:53,484 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183500800}) to executor  for transfer request: 0.
2022-05-12 22:38:53,484 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:53,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) about to wait for the following futures []
2022-05-12 22:38:53,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) done waiting for dependent futures
2022-05-12 22:38:53,485 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183500800}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 183500800}
2022-05-12 22:38:53,485 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204210176}) to executor  for transfer request: 0.
2022-05-12 22:38:54,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) about to wait for the following futures []
2022-05-12 22:38:54,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) done waiting for dependent futures
2022-05-12 22:38:54,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204210176}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 204210176}
2022-05-12 22:38:54,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197656576}) to executor  for transfer request: 0.
2022-05-12 22:38:54,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) about to wait for the following futures []
2022-05-12 22:38:54,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) done waiting for dependent futures
2022-05-12 22:38:54,171 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197656576}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 197656576}
2022-05-12 22:38:54,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,229 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190054400}) to executor  for transfer request: 0.
2022-05-12 22:38:54,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) about to wait for the following futures []
2022-05-12 22:38:54,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) done waiting for dependent futures
2022-05-12 22:38:54,230 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190054400}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 190054400}
2022-05-12 22:38:54,231 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:57,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197918720}) to executor  for transfer request: 0.
2022-05-12 22:38:57,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:57,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) about to wait for the following futures []
2022-05-12 22:38:57,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) done waiting for dependent futures
2022-05-12 22:38:57,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197918720}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 197918720}
2022-05-12 22:38:57,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:58,818 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174850048}) to executor  for transfer request: 0.
2022-05-12 22:38:58,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:58,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) about to wait for the following futures []
2022-05-12 22:38:58,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) done waiting for dependent futures
2022-05-12 22:38:58,819 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174850048}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 174850048}
2022-05-12 22:38:58,819 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:59,062 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183762944}) to executor  for transfer request: 0.
2022-05-12 22:38:59,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:59,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) about to wait for the following futures []
2022-05-12 22:38:59,063 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) done waiting for dependent futures
2022-05-12 22:38:59,063 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183762944}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 183762944}
2022-05-12 22:38:59,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:59,888 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190316544}) to executor  for transfer request: 0.
2022-05-12 22:38:59,888 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:59,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) about to wait for the following futures []
2022-05-12 22:38:59,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) done waiting for dependent futures
2022-05-12 22:38:59,889 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190316544}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 190316544}
2022-05-12 22:38:59,889 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,082 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198180864}) to executor  for transfer request: 0.
2022-05-12 22:39:00,082 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) about to wait for the following futures []
2022-05-12 22:39:00,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) done waiting for dependent futures
2022-05-12 22:39:00,083 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198180864}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 198180864}
2022-05-12 22:39:00,083 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,192 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204472320}) to executor  for transfer request: 0.
2022-05-12 22:39:00,192 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) about to wait for the following futures []
2022-05-12 22:39:00,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) done waiting for dependent futures
2022-05-12 22:39:00,193 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204472320}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 204472320}
2022-05-12 22:39:00,194 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,952 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184025088}) to executor  for transfer request: 0.
2022-05-12 22:39:00,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) about to wait for the following futures []
2022-05-12 22:39:00,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) done waiting for dependent futures
2022-05-12 22:39:00,953 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184025088}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 184025088}
2022-05-12 22:39:00,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:02,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184287232}) to executor  for transfer request: 0.
2022-05-12 22:39:02,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:02,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:02,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) about to wait for the following futures []
2022-05-12 22:39:02,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) done waiting for dependent futures
2022-05-12 22:39:02,737 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184287232}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 184287232}
2022-05-12 22:39:02,737 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,655 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198443008}) to executor  for transfer request: 0.
2022-05-12 22:39:03,655 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) about to wait for the following futures []
2022-05-12 22:39:03,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) done waiting for dependent futures
2022-05-12 22:39:03,656 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198443008}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 198443008}
2022-05-12 22:39:03,656 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175112192}) to executor  for transfer request: 0.
2022-05-12 22:39:04,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:04,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) about to wait for the following futures []
2022-05-12 22:39:04,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) done waiting for dependent futures
2022-05-12 22:39:04,740 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175112192}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 175112192}
2022-05-12 22:39:04,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:06,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190578688}) to executor  for transfer request: 0.
2022-05-12 22:39:06,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:06,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) about to wait for the following futures []
2022-05-12 22:39:06,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) done waiting for dependent futures
2022-05-12 22:39:06,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190578688}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 190578688}
2022-05-12 22:39:06,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:07,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198705152}) to executor  for transfer request: 0.
2022-05-12 22:39:07,009 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:07,009 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) about to wait for the following futures []
2022-05-12 22:39:07,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) done waiting for dependent futures
2022-05-12 22:39:07,010 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198705152}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 198705152}
2022-05-12 22:39:07,010 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:07,318 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204734464}) to executor  for transfer request: 0.
2022-05-12 22:39:07,318 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:07,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) about to wait for the following futures []
2022-05-12 22:39:07,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) done waiting for dependent futures
2022-05-12 22:39:07,319 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204734464}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 204734464}
2022-05-12 22:39:07,319 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175374336}) to executor  for transfer request: 0.
2022-05-12 22:39:09,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) about to wait for the following futures []
2022-05-12 22:39:09,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) done waiting for dependent futures
2022-05-12 22:39:09,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175374336}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 175374336}
2022-05-12 22:39:09,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:10,588 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198967296}) to executor  for transfer request: 0.
2022-05-12 22:39:10,589 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:10,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) about to wait for the following futures []
2022-05-12 22:39:10,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) done waiting for dependent futures
2022-05-12 22:39:10,589 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198967296}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 198967296}
2022-05-12 22:39:10,590 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:10,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190840832}) to executor  for transfer request: 0.
2022-05-12 22:39:10,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:10,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) about to wait for the following futures []
2022-05-12 22:39:10,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) done waiting for dependent futures
2022-05-12 22:39:10,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190840832}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 190840832}
2022-05-12 22:39:10,619 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:12,468 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199229440}) to executor  for transfer request: 0.
2022-05-12 22:39:12,468 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:12,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) about to wait for the following futures []
2022-05-12 22:39:12,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) done waiting for dependent futures
2022-05-12 22:39:12,468 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199229440}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 199229440}
2022-05-12 22:39:12,468 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:13,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199491584}) to executor  for transfer request: 0.
2022-05-12 22:39:13,885 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:13,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) about to wait for the following futures []
2022-05-12 22:39:13,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) done waiting for dependent futures
2022-05-12 22:39:13,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199491584}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 199491584}
2022-05-12 22:39:13,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:14,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191102976}) to executor  for transfer request: 0.
2022-05-12 22:39:14,310 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:14,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) about to wait for the following futures []
2022-05-12 22:39:14,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) done waiting for dependent futures
2022-05-12 22:39:14,310 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191102976}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 191102976}
2022-05-12 22:39:14,311 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:14,424 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204996608}) to executor  for transfer request: 0.
2022-05-12 22:39:14,424 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:14,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) about to wait for the following futures []
2022-05-12 22:39:14,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) done waiting for dependent futures
2022-05-12 22:39:14,425 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204996608}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 204996608}
2022-05-12 22:39:14,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:14,777 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175636480}) to executor  for transfer request: 0.
2022-05-12 22:39:14,777 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:14,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) about to wait for the following futures []
2022-05-12 22:39:14,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) done waiting for dependent futures
2022-05-12 22:39:14,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175636480}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 175636480}
2022-05-12 22:39:14,778 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:16,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175898624}) to executor  for transfer request: 0.
2022-05-12 22:39:16,454 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:16,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:16,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) about to wait for the following futures []
2022-05-12 22:39:16,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) done waiting for dependent futures
2022-05-12 22:39:16,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175898624}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 175898624}
2022-05-12 22:39:16,455 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,113 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199753728}) to executor  for transfer request: 0.
2022-05-12 22:39:17,114 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) about to wait for the following futures []
2022-05-12 22:39:17,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) done waiting for dependent futures
2022-05-12 22:39:17,114 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199753728}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 199753728}
2022-05-12 22:39:17,115 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:18,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191365120}) to executor  for transfer request: 0.
2022-05-12 22:39:18,762 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:18,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) about to wait for the following futures []
2022-05-12 22:39:18,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) done waiting for dependent futures
2022-05-12 22:39:18,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191365120}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 191365120}
2022-05-12 22:39:18,763 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:20,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205258752}) to executor  for transfer request: 0.
2022-05-12 22:39:20,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:20,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) about to wait for the following futures []
2022-05-12 22:39:20,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) done waiting for dependent futures
2022-05-12 22:39:20,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205258752}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 205258752}
2022-05-12 22:39:20,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:21,214 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200015872}) to executor  for transfer request: 0.
2022-05-12 22:39:21,214 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:21,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) about to wait for the following futures []
2022-05-12 22:39:21,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) done waiting for dependent futures
2022-05-12 22:39:21,215 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200015872}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 200015872}
2022-05-12 22:39:21,215 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,519 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191627264}) to executor  for transfer request: 0.
2022-05-12 22:39:22,519 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) about to wait for the following futures []
2022-05-12 22:39:22,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) done waiting for dependent futures
2022-05-12 22:39:22,520 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191627264}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 191627264}
2022-05-12 22:39:22,521 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:24,915 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191889408}) to executor  for transfer request: 0.
2022-05-12 22:39:24,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:24,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) about to wait for the following futures []
2022-05-12 22:39:24,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) done waiting for dependent futures
2022-05-12 22:39:24,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191889408}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 191889408}
2022-05-12 22:39:24,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:25,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200278016}) to executor  for transfer request: 0.
2022-05-12 22:39:25,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:25,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) about to wait for the following futures []
2022-05-12 22:39:25,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) done waiting for dependent futures
2022-05-12 22:39:25,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200278016}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 200278016}
2022-05-12 22:39:25,694 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:25,804 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205520896}) to executor  for transfer request: 0.
2022-05-12 22:39:25,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:25,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) about to wait for the following futures []
2022-05-12 22:39:25,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) done waiting for dependent futures
2022-05-12 22:39:25,805 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205520896}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 205520896}
2022-05-12 22:39:25,805 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:28,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200540160}) to executor  for transfer request: 0.
2022-05-12 22:39:28,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:28,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) about to wait for the following futures []
2022-05-12 22:39:28,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) done waiting for dependent futures
2022-05-12 22:39:28,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200540160}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 200540160}
2022-05-12 22:39:28,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:28,857 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205783040}) to executor  for transfer request: 0.
2022-05-12 22:39:28,857 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:28,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) about to wait for the following futures []
2022-05-12 22:39:28,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) done waiting for dependent futures
2022-05-12 22:39:28,858 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205783040}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 205783040}
2022-05-12 22:39:28,858 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192151552}) to executor  for transfer request: 0.
2022-05-12 22:39:29,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) about to wait for the following futures []
2022-05-12 22:39:29,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) done waiting for dependent futures
2022-05-12 22:39:29,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192151552}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 192151552}
2022-05-12 22:39:29,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200802304}) to executor  for transfer request: 0.
2022-05-12 22:39:29,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) about to wait for the following futures []
2022-05-12 22:39:29,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) done waiting for dependent futures
2022-05-12 22:39:29,360 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200802304}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 200802304}
2022-05-12 22:39:29,360 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:30,804 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192413696}) to executor  for transfer request: 0.
2022-05-12 22:39:30,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:30,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) about to wait for the following futures []
2022-05-12 22:39:30,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) done waiting for dependent futures
2022-05-12 22:39:30,805 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192413696}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 192413696}
2022-05-12 22:39:30,805 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:30,815 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201064448}) to executor  for transfer request: 0.
2022-05-12 22:39:30,815 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:30,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:30,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) about to wait for the following futures []
2022-05-12 22:39:30,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) done waiting for dependent futures
2022-05-12 22:39:30,816 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201064448}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 201064448}
2022-05-12 22:39:30,816 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206045184}) to executor  for transfer request: 0.
2022-05-12 22:39:32,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) about to wait for the following futures []
2022-05-12 22:39:32,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) done waiting for dependent futures
2022-05-12 22:39:32,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206045184}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 206045184}
2022-05-12 22:39:32,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,672 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192675840}) to executor  for transfer request: 0.
2022-05-12 22:39:32,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,673 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) about to wait for the following futures []
2022-05-12 22:39:32,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) done waiting for dependent futures
2022-05-12 22:39:32,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192675840}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 192675840}
2022-05-12 22:39:32,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,581 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206307328}) to executor  for transfer request: 0.
2022-05-12 22:39:36,581 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) about to wait for the following futures []
2022-05-12 22:39:36,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) done waiting for dependent futures
2022-05-12 22:39:36,582 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206307328}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 206307328}
2022-05-12 22:39:36,583 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:38,322 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206569472}) to executor  for transfer request: 0.
2022-05-12 22:39:38,322 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:38,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) about to wait for the following futures []
2022-05-12 22:39:38,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) done waiting for dependent futures
2022-05-12 22:39:38,323 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206569472}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 206569472}
2022-05-12 22:39:38,323 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,925 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206831616}) to executor  for transfer request: 0.
2022-05-12 22:39:40,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) about to wait for the following futures []
2022-05-12 22:39:40,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) done waiting for dependent futures
2022-05-12 22:39:40,926 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206831616}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 206831616}
2022-05-12 22:39:40,927 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,648 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207093760}) to executor  for transfer request: 0.
2022-05-12 22:39:42,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) about to wait for the following futures []
2022-05-12 22:39:42,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) done waiting for dependent futures
2022-05-12 22:39:42,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207093760}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 207093760}
2022-05-12 22:39:42,650 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:43,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207355904}) to executor  for transfer request: 0.
2022-05-12 22:39:43,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:43,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) about to wait for the following futures []
2022-05-12 22:39:43,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) done waiting for dependent futures
2022-05-12 22:39:43,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207355904}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 207355904}
2022-05-12 22:39:43,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207618048}) to executor  for transfer request: 0.
2022-05-12 22:39:44,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) about to wait for the following futures []
2022-05-12 22:39:44,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) done waiting for dependent futures
2022-05-12 22:39:44,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207618048}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 207618048}
2022-05-12 22:39:44,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:45,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207880192}) to executor  for transfer request: 0.
2022-05-12 22:39:45,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:45,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) about to wait for the following futures []
2022-05-12 22:39:45,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) done waiting for dependent futures
2022-05-12 22:39:45,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207880192}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 207880192}
2022-05-12 22:39:45,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:45,743 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208142336}) to executor  for transfer request: 0.
2022-05-12 22:39:45,743 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:45,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) about to wait for the following futures []
2022-05-12 22:39:45,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) done waiting for dependent futures
2022-05-12 22:39:45,743 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208142336}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 208142336}
2022-05-12 22:39:45,744 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:46,309 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208404480}) to executor  for transfer request: 0.
2022-05-12 22:39:46,310 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:46,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) about to wait for the following futures []
2022-05-12 22:39:46,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) done waiting for dependent futures
2022-05-12 22:39:46,310 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208404480}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 208404480}
2022-05-12 22:39:46,311 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:46,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208666624}) to executor  for transfer request: 0.
2022-05-12 22:39:46,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:46,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) about to wait for the following futures []
2022-05-12 22:39:46,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) done waiting for dependent futures
2022-05-12 22:39:46,791 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208666624}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 208666624}
2022-05-12 22:39:46,792 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:47,283 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208928768}) to executor  for transfer request: 0.
2022-05-12 22:39:47,283 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:47,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) about to wait for the following futures []
2022-05-12 22:39:47,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) done waiting for dependent futures
2022-05-12 22:39:47,284 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208928768}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 208928768}
2022-05-12 22:39:47,284 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:47,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209190912}) to executor  for transfer request: 0.
2022-05-12 22:39:47,920 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:47,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) about to wait for the following futures []
2022-05-12 22:39:47,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) done waiting for dependent futures
2022-05-12 22:39:47,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209190912}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 209190912}
2022-05-12 22:39:47,921 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209453056}) to executor  for transfer request: 0.
2022-05-12 22:39:48,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:48,617 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:39:48,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) about to wait for the following futures []
2022-05-12 22:39:48,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:48,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) done waiting for dependent futures
2022-05-12 22:39:48,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209453056}) with kwargs {'fileobj': <_io.BufferedRandom name=28>, 'offset': 209453056}
2022-05-12 22:39:48,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,617 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:39:48,618 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:39:48,618 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:39:48,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,906 eolearn.core.eoworkflow DEBUG    Computing DB2Vector(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {}
  meta_info: {}
  bbox: BBox(((239500.0, 1369500.0), (250500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:48,992 eolearn.core.eoworkflow DEBUG    Removing intermediate result for DB2Vector
2022-05-12 22:39:48,993 eolearn.core.eoworkflow DEBUG    Computing VectorToRaster(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((239500.0, 1369500.0), (250500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:48,997 eolearn.core.eoworkflow DEBUG    Removing intermediate result for VectorToRaster
2022-05-12 22:39:48,998 eolearn.core.eoworkflow DEBUG    Computing Extent2Boundary(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((239500.0, 1369500.0), (250500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:49,014 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Boundary
2022-05-12 22:39:49,015 eolearn.core.eoworkflow DEBUG    Computing Extent2Distance(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((239500.0, 1369500.0), (250500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:49,146 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Distance
2022-05-12 22:39:49,146 eolearn.core.eoworkflow DEBUG    Computing SaveTask(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {
    DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
  }
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((239500.0, 1369500.0), (250500.0, 1380500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{'eopatch_folder': '30PTU_4_2'})
2022-05-12 22:39:49,150 botocore.loaders DEBUG    Loading JSON file: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/boto3/data/s3/2006-03-01/resources-1.json
2022-05-12 22:39:49,151 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:49,152 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:49,152 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:49,152 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:49,153 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:49,153 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:49,154 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:49,155 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:49,155 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:49,155 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2'}
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:49,156 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:49,156 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:49,156 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:49,157 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:39:49,157 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2
2022-05-12 22:39:49,157 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:49,157 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223949Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:49,157 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223949Z
20220512/us-east-1/s3/aws4_request
005350cabee611c5258b08736d1b751006f3a26eaff317ed10fe838b1414071a
2022-05-12 22:39:49,157 botocore.auth DEBUG    Signature:
681d710db9d9f6f520185d317481d2af1df03bb7a38312af560ea6fba9b6aeef
2022-05-12 22:39:49,157 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:49,157 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:49,157 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:49,157 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:04,490 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2 HTTP/1.1" 400 0
2022-05-12 22:40:04,491 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BWJJW677X4SHPMZA', 'x-amz-id-2': 'LeX8OOGaF/surc7OP/kgMlCH4o+O1LWLqRPqJ7yK4DgmWi0c1SwJIFldFSQ/b1ETCXT3iUSLr/0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:04 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:04,491 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:04,493 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:04,493 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:04,493 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:04,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,493 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,493 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,494 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,494 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,494 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:04,494 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,494 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,494 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,494 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,494 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,494 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:04,494 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:04,494 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:04,494 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224004Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:04,494 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224004Z
20220512/us-east-1/s3/aws4_request
01df9403cfeb2d8a32a03c94a9c8bf2da46d75b8fc5f0ecf83f283365294830a
2022-05-12 22:40:04,494 botocore.auth DEBUG    Signature:
4a50d6bf36e9f18c37e761c05e131e35eeddf2a3b6490fae82ab00c0863996c4
2022-05-12 22:40:04,494 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,494 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:04,494 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:04,495 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:05,641 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:05,642 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': '533A4D1C16D5SJ98', 'x-amz-id-2': 'mWX1OPzRfVyfF2QPLCUquP7DlCagvTowBv8XNle/S/nanKjjhwMtb6BKgfXq7+zLF1gii63FfhE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:05 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:05,642 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:05,643 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,643 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:05,643 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,643 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:05,643 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:05,643 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:05,644 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,644 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,644 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:05,645 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:05,645 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:05,645 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224005Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:05,645 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224005Z
20220512/eu-central-1/s3/aws4_request
66b649f622a46547260a1ed3046915a6a2d8027c99318f33adff82147f909aef
2022-05-12 22:40:05,645 botocore.auth DEBUG    Signature:
0ac8e63213eb9aa617c4da890d84f80381ff40c770e46141df8d17ffcf112050
2022-05-12 22:40:05,646 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,646 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:05,646 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:05,646 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:06,679 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:06,679 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+OnJEqDLAMV5QlIm4A8mt7CX2HO+ukjdK1jw0SgH8s9iGwboPdajmeT+BM/JwoqK/6409EidRZ0=', 'x-amz-request-id': 'PH0QGCM9FTQ550A5', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:06,680 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,680 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:06,680 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,680 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:06,680 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:06,681 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:06,681 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:06,681 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:06,682 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,682 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,682 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:06,682 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:06,682 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:06,682 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2
2022-05-12 22:40:06,683 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,683 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,683 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/eu-central-1/s3/aws4_request
320f12eedaa40ba6de892b362b09eee0292081a0451c74158516eb395ec2c87a
2022-05-12 22:40:06,683 botocore.auth DEBUG    Signature:
791f3efb7997cb97d5f82ecbb55ac557db80ffb46fdc3d7ac380aec121436db4
2022-05-12 22:40:06,683 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:06,683 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,684 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,768 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2 HTTP/1.1" 404 0
2022-05-12 22:40:06,768 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'PH0QHZAF27SWT231', 'x-amz-id-2': '5XKATkykvISOHyXk1RmV3Vz94YOk3A1ONNsGF1UH/wD07wFXk+h922FcYHkaNS0pYZsIn9WRd9A=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:06 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:06,769 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,769 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:06,769 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,769 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:06,769 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:06,770 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:06,771 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:06,772 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:06,772 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,772 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,772 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:06,772 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:06,772 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,773 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,773 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:06,773 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:06,773 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,773 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,773 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:06,774 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:06,774 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,774 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,774 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:06,774 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:06,774 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:06,775 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:06,775 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,775 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,775 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/eu-central-1/s3/aws4_request
7265a50b507f53bd2b8d85531e1efaad88fac94f77bd6371448c7504da4b790f
2022-05-12 22:40:06,775 botocore.auth DEBUG    Signature:
3c592978be1e3671884a6cf11a6b5e80c09f5f7469478cd642956eab03683a0d
2022-05-12 22:40:06,775 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:06,776 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,776 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,861 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:06,861 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'MtzHc73awEgha6iSeH7axZDJdGKr7ScuD1MUT16Aui2ufICNJoda8nNT6ak94nSqWsDD24DxkgY=', 'x-amz-request-id': 'PH0MEWKRJDCVCJHX', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:06,861 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,862 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:06,862 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,862 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:06,862 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'PH0MEWKRJDCVCJHX', 'HostId': 'MtzHc73awEgha6iSeH7axZDJdGKr7ScuD1MUT16Aui2ufICNJoda8nNT6ak94nSqWsDD24DxkgY=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'MtzHc73awEgha6iSeH7axZDJdGKr7ScuD1MUT16Aui2ufICNJoda8nNT6ak94nSqWsDD24DxkgY=', 'x-amz-request-id': 'PH0MEWKRJDCVCJHX', 'date': 'Thu, 12 May 2022 22:40:07 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:06,863 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:06,864 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:06,864 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:06,864 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:06,865 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:06,866 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,868 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_2/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:06,869 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:06,869 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,869 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,869 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:06,869 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:06,869 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:06,869 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,869 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,869 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,869 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_2%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,869 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/us-east-1/s3/aws4_request
5b06ffdb8c494705d59515e6d5dac71a34e3011bc79e24dfd3e395772c488891
2022-05-12 22:40:06,870 botocore.auth DEBUG    Signature:
6e57d26b0c897969f76d94c254b1445fa599d3a5146a0a18cce7792dbb1fdb9f
2022-05-12 22:40:06,870 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:06,870 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,870 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,870 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:07,613 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:40:07,614 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'V3SM94DM73H6KNVQ', 'x-amz-id-2': 'tlKwmF1u8TY6L+HIYEgxWld7xYun14VdS1TDwGYVjYcmxlU0uRC02c+WO/Y5skbeQ/vS8NwC6BU=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:07,614 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1V3SM94DM73H6KNVQtlKwmF1u8TY6L+HIYEgxWld7xYun14VdS1TDwGYVjYcmxlU0uRC02c+WO/Y5skbeQ/vS8NwC6BU='
2022-05-12 22:40:07,620 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:07,620 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:07,620 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:07,620 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:07,620 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,621 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:07,621 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:07,621 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,621 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,621 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:07,621 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:07,622 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,622 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,622 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:07,622 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_2%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224007Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:07,622 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224007Z
20220512/eu-central-1/s3/aws4_request
97d7683f62dd0cbc8d2a25b4a899d1fdf4f4f95f1bcc6acd7db0dd9d5f1ced91
2022-05-12 22:40:07,623 botocore.auth DEBUG    Signature:
0ea7e82414d2f46d4c71f9bbf47e4f0645603064a43a6ea10d3aee4e89c241c7
2022-05-12 22:40:07,623 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:07,623 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:07,624 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:07,624 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:08,586 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_2%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,587 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'zJey/4B75wOBblvQxZk4FbjMilrow/RarT8ZmkkocV/nORPAjkSE16fiViAhJQhc+EkCivc1IzU=', 'x-amz-request-id': '34DSCAYDNGSVADK7', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,587 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_2/1000/urlfalseeopatches/30PTU_4_2/2022-05-12T11:07:00.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/bbox.pkl2022-05-12T11:07:19.000Z"d610dcd2de6596cec110cfd6ee26eafc"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/timestamp.pkl2022-05-12T11:07:19.000Z"bddd5da052edd05b16c1bacc1598871b"1858e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/data/eopatches/30PTU_4_2/mask/'
2022-05-12 22:40:08,588 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,588 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,588 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,588 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:08,588 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,589 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,589 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,589 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,589 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,589 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,589 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,589 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:08,589 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,589 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,589 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,589 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_2/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,590 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:08,590 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,590 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,590 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:08,590 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:08,590 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,590 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,590 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,590 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_2%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,590 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
aabde8a3bf067cc566d672ef00b4cbfa1775479793a310a577701047a4214130
2022-05-12 22:40:08,590 botocore.auth DEBUG    Signature:
95e41295f95e15c9cfaa285e5857972fd542bada2e271069e4e2d33e8dae3ec2
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,591 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,680 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_2%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,681 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'KYfbvFV5A5WNNeux+qqTkawx/UHGSWBa1yciSFUkYZkZIdLrJAAsKtbwq/VqYOx4K6/Wbfl4zcI=', 'x-amz-request-id': '34DZ520Q7Z6T5ND7', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,681 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_2/data/1000/urlfalseeopatches/30PTU_4_2/data/2022-05-12T11:07:06.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/data/BANDS.npy2022-05-12T11:07:19.000Z"04937122e128d9427598ec0ac3900c99-26"212960128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/data/CLP.npy2022-05-12T11:07:18.000Z"899ae554c913652ca1d241336ce807d0-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:08,683 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,684 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,684 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,684 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,685 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,685 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,685 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,685 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,685 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,686 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,686 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:08,686 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,686 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,686 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,686 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_2/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:08,687 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,688 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,688 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,688 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_2%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,689 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
59849a98afbe3792966b3ca428730f1be259e4b6cf15a6f0337a8f1f7a33068f
2022-05-12 22:40:08,689 botocore.auth DEBUG    Signature:
b5b7a4f1a1a46af92f3b77ae881532792efd826118fad0cdffe87065c7987c61
2022-05-12 22:40:08,689 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:08,689 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,690 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,776 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_2%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,777 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'zz4O/TgbKro7YzNMbxmJHBVQnyYEUcmqrhhxq7pZh0FIplzQCiX+yYicmsEPT6woFpO9RjRTBt4=', 'x-amz-request-id': '34DKKCM6364DZCYD', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,777 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_2/mask/1000/urlfalseeopatches/30PTU_4_2/mask/2022-05-12T11:07:11.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/mask/CLM.npy2022-05-12T11:07:19.000Z"3f8c44a405b5a9dda82c336798ac4767-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_2/mask/IS_DATA.npy2022-05-12T11:07:18.000Z"30cacf5f1ee7603a53f0d2a527451479-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:08,779 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,779 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,779 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,779 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,780 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,783 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,783 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless'}
2022-05-12 22:40:08,784 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,784 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,784 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,784 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,784 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,785 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,785 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,785 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:08,785 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,785 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,785 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,786 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,786 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,786 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,786 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,786 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,786 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:08,786 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:08,787 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,787 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,787 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
05760b68f2ef97f63827e9b2954298c2415d512387bd68a1c8032d55afbf3644
2022-05-12 22:40:08,788 botocore.auth DEBUG    Signature:
70c5bd1fd66798fef43f758b9725e6dea7ff2cb9faaeec7debe2c69fcd3ae6bc
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,788 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,788 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,872 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:08,872 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DR7PK8TZKQZ5N3', 'x-amz-id-2': 'fKatahKZv+2DXXfTX/VEeH127MR3vbZu7qD8rTuHElLmpclSnY+4W0Np0gu/T6LTxGLP4BkQAVE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,872 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,872 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,873 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,873 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,873 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,876 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,877 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless/'}
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,878 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,878 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,879 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:08,879 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:08,880 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,880 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,880 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
dac5140aafe9abe6d43e49de58aa12ac512b28235160eb97772948804c8fed00
2022-05-12 22:40:08,880 botocore.auth DEBUG    Signature:
3076b11b0fd5caf51e1c5792c5488c516847a39a3152a7025e0453a33f52fafa
2022-05-12 22:40:08,881 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,881 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,881 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,963 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:08,964 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DVV1W861AW5Q5Z', 'x-amz-id-2': 'mUsW4w9Uxs/a9aMqIaIvnEJ+Qh3JOowdjecEy6bSYQOoQ3xzVdTdW9edfzqkrupRnZbqi6fnpl4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,964 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,964 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,964 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,964 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,965 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,966 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,967 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:08,967 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,967 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,967 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,967 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,967 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,968 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,968 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,968 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:08,968 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,968 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,968 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,968 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,969 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:08,969 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:08,970 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,970 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,970 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
db3224ae038a5f8ff44a6098d1ab93908a030084f41f733712f4c457cec38f9d
2022-05-12 22:40:08,970 botocore.auth DEBUG    Signature:
1858faf4d12d4a7a7d7b81a52023212b97f5c9b50fd21036d737de011434c535
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,970 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,971 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,052 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:09,052 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'RK8egUSm0YytQuYIQLUFNWg0LpOvpg5HZCAir9Bov77obfzUeHDAotaMCJSxaj8ndsYb+SGTb7E=', 'x-amz-request-id': '58A9425TGP27R7H2', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,053 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,054 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,054 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,054 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,054 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A9425TGP27R7H2', 'HostId': 'RK8egUSm0YytQuYIQLUFNWg0LpOvpg5HZCAir9Bov77obfzUeHDAotaMCJSxaj8ndsYb+SGTb7E=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'RK8egUSm0YytQuYIQLUFNWg0LpOvpg5HZCAir9Bov77obfzUeHDAotaMCJSxaj8ndsYb+SGTb7E=', 'x-amz-request-id': '58A9425TGP27R7H2', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,055 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,057 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,057 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless'}
2022-05-12 22:40:09,058 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,058 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,058 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,058 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,058 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,059 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,059 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,060 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,060 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:09,060 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:09,060 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,060 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,060 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
30b96326b4c67ecbcee65c23a4fc9521b03202ca41199b0c678d1da0def45fda
2022-05-12 22:40:09,061 botocore.auth DEBUG    Signature:
b9553d0618c6a2293a9cec1bc77a07c83590ec42fc10726b4aa854f3947c64c3
2022-05-12 22:40:09,061 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,061 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,061 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,144 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,144 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A57SVPHRZQJZFA', 'x-amz-id-2': '9RGR1s/wVKVoDu1rVbXqxrk0n17fmR2T4F3reXef1ROp5YBXb4EHMBOJzmuoTaZB65+xzv2AcI0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,144 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,145 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,145 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,145 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,145 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,148 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,148 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless/'}
2022-05-12 22:40:09,148 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,149 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,149 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,149 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:09,150 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:09,150 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,150 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,150 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
d4008af2cd3196de04ebd7db5fb939e38fd83580d781ada681310966eafb32da
2022-05-12 22:40:09,150 botocore.auth DEBUG    Signature:
ed63f31125f768c5ce97645245b41431ba93ffdbc53476f6a10a780b18a04eda
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,150 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,230 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,230 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A9KHS35VZRQWQ2', 'x-amz-id-2': 'kOO/qWoLoKBt87Q0davBOEpDSmlkcbax71C7ngcTZXCvEamwKH/KBNRLK7XS9uio+6680GKn0kU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,230 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,231 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,231 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,231 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,231 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,234 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,234 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2'}
2022-05-12 22:40:09,235 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,235 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,235 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,235 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,235 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,235 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,235 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,236 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,236 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,236 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:09,236 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2
2022-05-12 22:40:09,236 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,236 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,236 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
ac825c322d90eadfda58e2b50cd8a199034a523b403fb6d09e7c44561aa60f7c
2022-05-12 22:40:09,236 botocore.auth DEBUG    Signature:
7fa4cadc9433ef1a410114340c5e8f605f5e0c7519b8cfa072a25cfac2ffae21
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,236 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,236 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,316 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2 HTTP/1.1" 404 0
2022-05-12 22:40:09,317 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A5RQ1B0WJ75BXW', 'x-amz-id-2': '3Jeb5omlMPa+s70ECHhIp5Uh2fZP1tYCyL64QhH1DSDoIzyBbPeSjhC+UZC5uNcv0iEcvekn1GI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,317 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,317 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,318 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,318 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,318 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,320 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,321 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,322 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,322 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,323 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,323 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:09,323 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:09,324 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,324 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,324 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
e5f913203a1e17fbc763cb0d44533876b3ef244ce3d416423326a3cdca9d2cb0
2022-05-12 22:40:09,324 botocore.auth DEBUG    Signature:
698937f7dcda4823def8710b7c923ad6bad8da1674c510d0d75b6cec27e840ca
2022-05-12 22:40:09,324 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,325 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,325 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,407 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:09,407 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '/pTgj7bG8Ly7p9Yti1p4GNIQHSheUafBla4ATjJqt81vGSKqr26bS0TT6ZFDRL+Zw1bR6ziYJ+0=', 'x-amz-request-id': '58AAB2PY40SZR13H', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,408 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,409 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,409 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,409 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,409 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58AAB2PY40SZR13H', 'HostId': '/pTgj7bG8Ly7p9Yti1p4GNIQHSheUafBla4ATjJqt81vGSKqr26bS0TT6ZFDRL+Zw1bR6ziYJ+0=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '/pTgj7bG8Ly7p9Yti1p4GNIQHSheUafBla4ATjJqt81vGSKqr26bS0TT6ZFDRL+Zw1bR6ziYJ+0=', 'x-amz-request-id': '58AAB2PY40SZR13H', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,410 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,412 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,413 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2'}
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,414 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:09,416 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2
2022-05-12 22:40:09,416 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,416 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,416 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
ac825c322d90eadfda58e2b50cd8a199034a523b403fb6d09e7c44561aa60f7c
2022-05-12 22:40:09,416 botocore.auth DEBUG    Signature:
7fa4cadc9433ef1a410114340c5e8f605f5e0c7519b8cfa072a25cfac2ffae21
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,417 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,418 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,498 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2 HTTP/1.1" 404 0
2022-05-12 22:40:09,499 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A158T2X4004RGQ', 'x-amz-id-2': 'm8/6VdkZfo9t5sjE53QGfSljv2Km7GaZ+2L8ZEZdQyGN550raklwRpEXI7olZ6N3ofqDr7anFkI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,500 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,500 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,500 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,500 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,500 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,503 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,504 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:09,504 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,504 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,504 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,504 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,504 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,505 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,505 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,505 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:09,505 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,505 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,505 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,506 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:09,506 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:09,507 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,507 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,507 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
e5f913203a1e17fbc763cb0d44533876b3ef244ce3d416423326a3cdca9d2cb0
2022-05-12 22:40:09,507 botocore.auth DEBUG    Signature:
698937f7dcda4823def8710b7c923ad6bad8da1674c510d0d75b6cec27e840ca
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,508 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,508 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,588 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:09,589 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '0aQXE6uay/HEinm0F1zrqT4ZwTFwzSM2oeuXRkyQngvnw6JSRzsDGZ+C0xQ2ZP1Qc7cC97gZ8gI=', 'x-amz-request-id': '58A43PSJBMDRQNDD', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,589 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,590 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,590 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,590 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,591 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A43PSJBMDRQNDD', 'HostId': '0aQXE6uay/HEinm0F1zrqT4ZwTFwzSM2oeuXRkyQngvnw6JSRzsDGZ+C0xQ2ZP1Qc7cC97gZ8gI=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '0aQXE6uay/HEinm0F1zrqT4ZwTFwzSM2oeuXRkyQngvnw6JSRzsDGZ+C0xQ2ZP1Qc7cC97gZ8gI=', 'x-amz-request-id': '58A43PSJBMDRQNDD', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,591 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,594 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,594 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless'}
2022-05-12 22:40:09,595 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,595 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,595 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,595 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,595 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,596 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,596 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,597 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:09,597 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:09,598 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,598 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,598 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
30b96326b4c67ecbcee65c23a4fc9521b03202ca41199b0c678d1da0def45fda
2022-05-12 22:40:09,598 botocore.auth DEBUG    Signature:
b9553d0618c6a2293a9cec1bc77a07c83590ec42fc10726b4aa854f3947c64c3
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,599 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,599 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,683 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,684 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A0V9T10G0RFXB6', 'x-amz-id-2': 'F1BB6AOQgQMjocEPt3zZffVicRyBKggrShQy+27AppMyV2KrqD3W53gdoS5GTZTMyU56ALBVSW0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,684 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,684 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,685 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,685 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,685 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,688 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless/'}
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,690 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:09,690 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,690 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,690 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,690 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,690 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,691 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:09,691 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:09,692 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,692 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,692 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
d4008af2cd3196de04ebd7db5fb939e38fd83580d781ada681310966eafb32da
2022-05-12 22:40:09,692 botocore.auth DEBUG    Signature:
ed63f31125f768c5ce97645245b41431ba93ffdbc53476f6a10a780b18a04eda
2022-05-12 22:40:09,692 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,692 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,693 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,774 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,774 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A0C6NY41MJHEQ2', 'x-amz-id-2': 'moCdKFIZZZuvr7YTywxREhVckKNYkglWwmEEZDZ+NdYi5eEvHEiZrmK3Cicpm77Cyh82OC2yEwQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,774 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,774 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,775 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,775 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,775 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,775 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,776 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:09,777 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:09,778 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:09,778 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:09,778 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,778 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_2/data_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224009Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:09,778 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
6cc66f41a798f834e8b86388af1782aa854b9155a7c82411a302ad812067ff86
2022-05-12 22:40:09,778 botocore.auth DEBUG    Signature:
0c79cdaa627716855678605a1c5e137a3286170f7a74aec5c1b9e4ed99f0c01a
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:09,778 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,778 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,868 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_2/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:09,868 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'DlpSxggshqhvq4IqUUTgaN2MZfrLFpaGrXCDoDaPX7zTdO+OPqKdE5dzKqhPkJcJ91WDzI1Ns+Y=', 'x-amz-request-id': '58A1BS6MSW4TFKBZ', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,868 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:09,869 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:09,869 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A1BS6MSW4TFKBZ', 'HostId': 'DlpSxggshqhvq4IqUUTgaN2MZfrLFpaGrXCDoDaPX7zTdO+OPqKdE5dzKqhPkJcJ91WDzI1Ns+Y=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'DlpSxggshqhvq4IqUUTgaN2MZfrLFpaGrXCDoDaPX7zTdO+OPqKdE5dzKqhPkJcJ91WDzI1Ns+Y=', 'x-amz-request-id': '58A1BS6MSW4TFKBZ', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:09,869 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,870 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,870 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,870 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,870 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,870 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:09,870 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:09,871 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,871 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,871 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
e5f913203a1e17fbc763cb0d44533876b3ef244ce3d416423326a3cdca9d2cb0
2022-05-12 22:40:09,871 botocore.auth DEBUG    Signature:
698937f7dcda4823def8710b7c923ad6bad8da1674c510d0d75b6cec27e840ca
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,871 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,871 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,952 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:09,952 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'F5P9ZI0NFox0SPyxZ9rJ6dlC2ctcSX3pOTSCztQaO8EvT4Q6fMr4RJnCDLu1/jlfYL9cEhALoPQ=', 'x-amz-request-id': '58A1TD3DFPBE65CW', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,952 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,953 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,953 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,953 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,953 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A1TD3DFPBE65CW', 'HostId': 'F5P9ZI0NFox0SPyxZ9rJ6dlC2ctcSX3pOTSCztQaO8EvT4Q6fMr4RJnCDLu1/jlfYL9cEhALoPQ=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'F5P9ZI0NFox0SPyxZ9rJ6dlC2ctcSX3pOTSCztQaO8EvT4Q6fMr4RJnCDLu1/jlfYL9cEhALoPQ=', 'x-amz-request-id': '58A1TD3DFPBE65CW', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,953 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,954 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,955 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless'}
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,955 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:09,956 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,956 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,956 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,956 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,956 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,956 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,956 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,956 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,956 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:09,956 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:09,957 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,957 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,957 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
30b96326b4c67ecbcee65c23a4fc9521b03202ca41199b0c678d1da0def45fda
2022-05-12 22:40:09,957 botocore.auth DEBUG    Signature:
b9553d0618c6a2293a9cec1bc77a07c83590ec42fc10726b4aa854f3947c64c3
2022-05-12 22:40:09,957 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,957 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,958 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,038 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,039 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58ACWME7GX0BG7D8', 'x-amz-id-2': 'L76FeI7psUYe8HujwdRJ9bP717HtHphI5oWHFGc1LH3DwtbjxJ800j+yHPuWCepelxYg8Azbfv0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,039 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,040 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,040 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,040 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,040 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,042 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless/'}
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,043 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,043 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,044 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,044 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,044 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:10,044 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:10,044 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,044 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,044 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
07f1ca4b4069462b7b06295fb102994b3da98525838f331717f270249c6f2827
2022-05-12 22:40:10,045 botocore.auth DEBUG    Signature:
8268c6ed6e210af0d0108bd2c516fc445d0df46eb406d5177165483dd68e1608
2022-05-12 22:40:10,045 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,045 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,045 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,131 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:10,132 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Wg+NZZmbB7zxoSql1rD/KIfUuqiLMyf/FTmu+4SURaQHlNaJkq4+BhcySliueD505KT9r2MzUrs=', 'x-amz-request-id': 'ZX13ARNFXSG5TGHH', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,132 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,133 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,133 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,133 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,133 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX13ARNFXSG5TGHH', 'HostId': 'Wg+NZZmbB7zxoSql1rD/KIfUuqiLMyf/FTmu+4SURaQHlNaJkq4+BhcySliueD505KT9r2MzUrs=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Wg+NZZmbB7zxoSql1rD/KIfUuqiLMyf/FTmu+4SURaQHlNaJkq4+BhcySliueD505KT9r2MzUrs=', 'x-amz-request-id': 'ZX13ARNFXSG5TGHH', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,134 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,135 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,135 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless'}
2022-05-12 22:40:10,135 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,135 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,135 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,135 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,136 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,136 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,137 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,137 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,137 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,137 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:10,137 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:10,137 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,137 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,137 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
e60f9c1f3bab1d5365c7a4bc1369f8fc7fa5c3935c15d72206ce91e0c37f450b
2022-05-12 22:40:10,137 botocore.auth DEBUG    Signature:
e33c28a0289df8dc521ab646ea68922fc8b0ad33c4e728a174912d74d3415f2f
2022-05-12 22:40:10,137 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,138 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,138 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,223 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,224 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1F91G3VCRWWG9Q', 'x-amz-id-2': 'RRp7lWJhPwFEPm9Wl1ciWOFOmSgdeVusWUKQusfABw+aqaDgf7N2BNM2NEQpbpUGmoLQx7Ze+oA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,224 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,224 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,224 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,224 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,224 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,227 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless/'}
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,228 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,229 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,229 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:10,229 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:10,230 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,230 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,230 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
9d8fa948378324f492ff8acc17d6d75030b4c4f3484630e840e80775e649387f
2022-05-12 22:40:10,230 botocore.auth DEBUG    Signature:
61b0bfbad218beab0054f6bf84b72e48d7b2ff10b361a70b9c2f44fbb575fe1e
2022-05-12 22:40:10,230 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,230 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,231 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,314 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,314 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1BBK83VT6BZVNQ', 'x-amz-id-2': 'YsphEe9vikOL5/CxzQ0wc3+00tba4FvllS/D9c4T0j4PSCRCNLSFNKt3ZgucEzdKFN5qYoEngYo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,314 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,314 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,315 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,315 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,315 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,317 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,317 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:10,317 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,317 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,317 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,318 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,318 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,318 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,318 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,318 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:10,318 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,318 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,318 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,319 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:10,319 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:10,319 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,319 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,320 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
7b92c3a892dc699587e14602c17ce50737bc8d493cd08882a0d0fce9ee484087
2022-05-12 22:40:10,320 botocore.auth DEBUG    Signature:
1a6c1a6ae6f115f53e971d8afadda94f3bb2696de1e5f04e95efc3477f0df1e2
2022-05-12 22:40:10,320 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,320 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,320 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,400 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:10,401 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'CWDkxd9ACZOcfEoBNMyGEx53zK6PnvmDJXHE5NOjjplrJi7/fBv+dmupXqN+A824RfHAbxYvqkc=', 'x-amz-request-id': 'ZX1B2Z054DAPT486', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,401 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,402 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,403 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,403 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,403 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX1B2Z054DAPT486', 'HostId': 'CWDkxd9ACZOcfEoBNMyGEx53zK6PnvmDJXHE5NOjjplrJi7/fBv+dmupXqN+A824RfHAbxYvqkc=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'CWDkxd9ACZOcfEoBNMyGEx53zK6PnvmDJXHE5NOjjplrJi7/fBv+dmupXqN+A824RfHAbxYvqkc=', 'x-amz-request-id': 'ZX1B2Z054DAPT486', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,403 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,406 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless'}
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,406 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,406 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,406 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:10,407 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:10,407 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,407 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,407 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
e60f9c1f3bab1d5365c7a4bc1369f8fc7fa5c3935c15d72206ce91e0c37f450b
2022-05-12 22:40:10,407 botocore.auth DEBUG    Signature:
e33c28a0289df8dc521ab646ea68922fc8b0ad33c4e728a174912d74d3415f2f
2022-05-12 22:40:10,407 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,407 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,407 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,490 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,490 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1AKBCWD8S0FTXH', 'x-amz-id-2': 'wjn1Iv8IqTh5IL56dDwO3l9DXjV5PEmig/MpE+pKBGP3Sjma4RCg2uNw6WOFqeVc4nG52F02jwI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,490 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,491 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,491 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,491 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,491 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,492 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,492 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless/'}
2022-05-12 22:40:10,492 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,492 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,492 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,492 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,492 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:10,493 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:10,493 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,493 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,493 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
9d8fa948378324f492ff8acc17d6d75030b4c4f3484630e840e80775e649387f
2022-05-12 22:40:10,493 botocore.auth DEBUG    Signature:
61b0bfbad218beab0054f6bf84b72e48d7b2ff10b361a70b9c2f44fbb575fe1e
2022-05-12 22:40:10,494 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,494 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,494 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,574 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,574 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1C0C7S4A28M96R', 'x-amz-id-2': 'psbmbvfLivB77CflFd9sDVUlRCOUkLmiNOSFRB6viATQHG6YFqkf4robZJTEllWKWYbvcfzIY2Y=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,575 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,575 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,575 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,575 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,575 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,577 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,577 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2'}
2022-05-12 22:40:10,577 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,577 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,577 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,578 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,578 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,578 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,578 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,578 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:10,578 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,578 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,579 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,579 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,579 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,579 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,579 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,579 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,579 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:10,580 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2
2022-05-12 22:40:10,580 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,580 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,580 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
857a8385eab885fbc12cc659fec1c6b5d56e06ea3d83bc6c6308624a3c9d7554
2022-05-12 22:40:10,581 botocore.auth DEBUG    Signature:
0c35fca9a60f40f2cd6187e3d226a304191518972a67b2782df48537e0874784
2022-05-12 22:40:10,581 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,581 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,582 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,662 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2 HTTP/1.1" 404 0
2022-05-12 22:40:10,662 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX135RQV7RDD3D3V', 'x-amz-id-2': 'bXBilhRGSibfTVu4PH6cVVeJbrMJ0e53iwmGix9L0G2vlau/l0B0tu8rmQ6JujldtKYGFM6nRWQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,662 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,662 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,663 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,663 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,663 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,664 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,665 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:10,665 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,665 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,665 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,665 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,665 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,665 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,665 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,666 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:10,666 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,666 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,666 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,666 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,666 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,666 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,666 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,666 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,666 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:10,666 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:10,667 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,667 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,667 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
7b92c3a892dc699587e14602c17ce50737bc8d493cd08882a0d0fce9ee484087
2022-05-12 22:40:10,667 botocore.auth DEBUG    Signature:
1a6c1a6ae6f115f53e971d8afadda94f3bb2696de1e5f04e95efc3477f0df1e2
2022-05-12 22:40:10,667 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,667 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,668 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,752 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:10,753 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'PwebAkhGYP6yalSAUbK8LQyoNQLrY+ft/8BxwGYrCUlyol89qnLsc3OOvBaqAhuBI57354on2sw=', 'x-amz-request-id': 'ZX180DYN5P94VSZ3', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,753 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,754 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,754 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,754 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,754 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX180DYN5P94VSZ3', 'HostId': 'PwebAkhGYP6yalSAUbK8LQyoNQLrY+ft/8BxwGYrCUlyol89qnLsc3OOvBaqAhuBI57354on2sw=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'PwebAkhGYP6yalSAUbK8LQyoNQLrY+ft/8BxwGYrCUlyol89qnLsc3OOvBaqAhuBI57354on2sw=', 'x-amz-request-id': 'ZX180DYN5P94VSZ3', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,755 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,756 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,756 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2'}
2022-05-12 22:40:10,757 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,757 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,757 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,757 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,757 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,757 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,757 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,757 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:10,757 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,758 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,758 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,758 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,758 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,758 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,758 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,758 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,758 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:10,759 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2
2022-05-12 22:40:10,760 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,760 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,760 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
857a8385eab885fbc12cc659fec1c6b5d56e06ea3d83bc6c6308624a3c9d7554
2022-05-12 22:40:10,760 botocore.auth DEBUG    Signature:
0c35fca9a60f40f2cd6187e3d226a304191518972a67b2782df48537e0874784
2022-05-12 22:40:10,760 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,761 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,761 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,853 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2 HTTP/1.1" 404 0
2022-05-12 22:40:10,854 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1DPQTXN8XMHC0Z', 'x-amz-id-2': 'VHVCD17otYb2UztUS+ygSEE48U3nw20NJrpS72rV1R9yo5BqAfLJiSkvTI7IUMO6AP3L8PmcMAU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,854 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,854 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,855 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,855 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,857 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,857 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:10,858 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,858 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,858 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,858 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,858 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,859 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,859 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,859 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:10,859 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,859 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,859 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,860 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,860 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,860 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,860 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,860 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,860 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:10,860 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:10,861 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,861 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,861 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
7b92c3a892dc699587e14602c17ce50737bc8d493cd08882a0d0fce9ee484087
2022-05-12 22:40:10,861 botocore.auth DEBUG    Signature:
1a6c1a6ae6f115f53e971d8afadda94f3bb2696de1e5f04e95efc3477f0df1e2
2022-05-12 22:40:10,861 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,861 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,862 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,943 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:10,944 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qm4bWpx2KywOUpJ8HFrh21VNbRxJmD/blbet2JatF9USeejKd4JVVnGsgl9UBjTBUj/ioylnv4o=', 'x-amz-request-id': 'ZX14HSVMVDT83ZQM', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,944 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,945 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,945 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,945 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,945 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX14HSVMVDT83ZQM', 'HostId': 'qm4bWpx2KywOUpJ8HFrh21VNbRxJmD/blbet2JatF9USeejKd4JVVnGsgl9UBjTBUj/ioylnv4o=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'qm4bWpx2KywOUpJ8HFrh21VNbRxJmD/blbet2JatF9USeejKd4JVVnGsgl9UBjTBUj/ioylnv4o=', 'x-amz-request-id': 'ZX14HSVMVDT83ZQM', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,945 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,946 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless'}
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:10,947 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:10,947 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,947 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,947 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
e60f9c1f3bab1d5365c7a4bc1369f8fc7fa5c3935c15d72206ce91e0c37f450b
2022-05-12 22:40:10,947 botocore.auth DEBUG    Signature:
e33c28a0289df8dc521ab646ea68922fc8b0ad33c4e728a174912d74d3415f2f
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,947 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,029 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,030 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX18P3QKVFE7FRRX', 'x-amz-id-2': 'UclzYDGBuIKC8oujTUfdGmTSrZZYamBwsErZj/REDXgHMwrviKFBUA5dJLDmumXFkxc18dL83UA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,030 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,030 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,030 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,031 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,031 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,033 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,033 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless/'}
2022-05-12 22:40:11,033 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,033 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,033 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,033 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,034 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,034 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,034 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,034 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:11,034 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,035 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,035 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,035 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,035 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,035 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,035 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,035 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,035 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:11,035 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:11,036 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,036 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,036 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
c29dabee808b1415cb3cf3b39a8d5aff65fc6b7d5ade2d425f39116ed121e206
2022-05-12 22:40:11,036 botocore.auth DEBUG    Signature:
c7f158bb13ed7dc0fddb56a7e4dfe35aa446880b44046e75e4b67d1b45ccb108
2022-05-12 22:40:11,036 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,036 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,037 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,116 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,116 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXBQM9PAJSTK34F', 'x-amz-id-2': 'Gu+90KH2t3ttqH1hHztmvZpYVYHTHPHbarat1vPrsC5xoVCtIlygRQLxdwcDoqHt4uhx5cj/gmU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,116 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,116 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,116 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,116 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,117 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,119 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,119 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:11,119 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,119 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,119 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,120 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,120 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,120 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,120 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,120 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,120 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,120 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:11,120 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:11,120 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,120 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,121 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,121 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:11,121 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,121 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,121 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:11,121 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:11,121 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:11,121 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:11,121 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,121 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_2/vector_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224011Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:11,121 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
a21125a1a7bf4373606d629fe9a631dd75d8687c28328327e9b226ea88091780
2022-05-12 22:40:11,122 botocore.auth DEBUG    Signature:
69c2da498127cfc10cf2ed3ecd6f0a5f35f66fa1fd5f400ea0b6fc3077f0fa9b
2022-05-12 22:40:11,122 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:11,122 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,122 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,211 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_2/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,211 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'dctlVlKTdDRKUNed5JP0LliTuL5kBdeh14u3Mr/HbTeXUj3oUXrru2qiM6zE8+pfEtEbn63ZaGw=', 'x-amz-request-id': 'HZX70YVAH2DMEB1F', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,211 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,212 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:11,212 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,212 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:11,212 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX70YVAH2DMEB1F', 'HostId': 'dctlVlKTdDRKUNed5JP0LliTuL5kBdeh14u3Mr/HbTeXUj3oUXrru2qiM6zE8+pfEtEbn63ZaGw=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'dctlVlKTdDRKUNed5JP0LliTuL5kBdeh14u3Mr/HbTeXUj3oUXrru2qiM6zE8+pfEtEbn63ZaGw=', 'x-amz-request-id': 'HZX70YVAH2DMEB1F', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:11,212 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,213 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,213 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:11,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,213 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,213 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,213 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,213 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:11,214 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,214 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,214 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,214 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,214 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,214 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,214 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,214 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,214 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:11,214 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:11,214 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,214 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,215 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
7d92024119db17ecfdf71eaf41d4082b73865c7087b9ee1c73291dcfe9d4a5ec
2022-05-12 22:40:11,215 botocore.auth DEBUG    Signature:
3a3aeba34a3fa4efb9e1c78eb63ed0a3ba35a8d3fe164ad53c70369df125e60a
2022-05-12 22:40:11,215 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,215 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,215 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,296 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:11,297 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Z+7XqONpQRCgZtVUZ3DQgkBKzUgjzakE0mWRUbzFDYHJXZ7jf9IqBYJDdqXU29RsXHPIAzSxRCc=', 'x-amz-request-id': 'HZX3BSJNJGGFE2BM', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,297 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,298 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,298 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,298 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,298 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX3BSJNJGGFE2BM', 'HostId': 'Z+7XqONpQRCgZtVUZ3DQgkBKzUgjzakE0mWRUbzFDYHJXZ7jf9IqBYJDdqXU29RsXHPIAzSxRCc=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Z+7XqONpQRCgZtVUZ3DQgkBKzUgjzakE0mWRUbzFDYHJXZ7jf9IqBYJDdqXU29RsXHPIAzSxRCc=', 'x-amz-request-id': 'HZX3BSJNJGGFE2BM', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,298 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,300 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,300 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless'}
2022-05-12 22:40:11,300 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,300 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,300 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,301 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,301 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,301 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,301 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,301 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:11,301 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,301 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,301 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,302 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,302 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,302 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,302 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,302 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,302 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:11,302 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:11,302 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,302 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,303 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
c35fd69417dd2d68d501fb0fefc50c207eda8b6e6225af5182e14b5adf917601
2022-05-12 22:40:11,303 botocore.auth DEBUG    Signature:
0aef108bd2f1307053c5f93e6eb0f30ff88e7e7b875f4f98e043b2887a0ffd98
2022-05-12 22:40:11,303 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,303 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,303 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,385 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,385 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX9H96BWV720VJZ', 'x-amz-id-2': 'AcOufho9cnEVIu0LdW8NcwIHe7ri4dhBMYOcGnDS5bmSutKThWJn911un2fiqHHFoBkbj9Wo584=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,386 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,386 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,386 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,386 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,386 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,388 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,388 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless/'}
2022-05-12 22:40:11,388 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,388 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,388 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,388 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,388 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,389 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,389 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,389 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:11,389 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,389 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,389 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,390 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,390 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,390 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,390 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,390 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,390 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:11,390 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:11,391 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,391 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,391 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
c29dabee808b1415cb3cf3b39a8d5aff65fc6b7d5ade2d425f39116ed121e206
2022-05-12 22:40:11,391 botocore.auth DEBUG    Signature:
c7f158bb13ed7dc0fddb56a7e4dfe35aa446880b44046e75e4b67d1b45ccb108
2022-05-12 22:40:11,391 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,391 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,392 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,476 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,476 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'v+G5bYnMP9DeBwhvk5ZgqPFaRztr2+XANju0gB/E05qS6OMA5KinmLynmpupJXJgKr+1VgjD4iI=', 'x-amz-request-id': 'HZX141YHDMA61RYZ', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,477 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,477 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,477 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,478 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,478 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX141YHDMA61RYZ', 'HostId': 'v+G5bYnMP9DeBwhvk5ZgqPFaRztr2+XANju0gB/E05qS6OMA5KinmLynmpupJXJgKr+1VgjD4iI=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'v+G5bYnMP9DeBwhvk5ZgqPFaRztr2+XANju0gB/E05qS6OMA5KinmLynmpupJXJgKr+1VgjD4iI=', 'x-amz-request-id': 'HZX141YHDMA61RYZ', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,478 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,479 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,480 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless'}
2022-05-12 22:40:11,480 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,480 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,480 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,480 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,480 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,480 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,481 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,481 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:11,481 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,481 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,481 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,481 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,481 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,481 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,482 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,482 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,482 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:11,482 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:11,482 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,482 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,483 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
a15295043d4c70123be194631913c6282ca8509c0cac1074c85a83e015592995
2022-05-12 22:40:11,483 botocore.auth DEBUG    Signature:
7e794ddaa70600905a450c8e98062e3e4696ab34add75a117e41be4feedb9083
2022-05-12 22:40:11,483 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,483 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,483 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,568 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,569 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXDGYM83B6MM4YH', 'x-amz-id-2': 'jC1iq3NYL0W7qw8s+q4TDLNaJGsbHrgF5kIOuoL5AMqDDtxrxluyNw3ZypnXrYo+Y5xSS8qjdqE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,569 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,569 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,569 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,569 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,570 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,571 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless/'}
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,571 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,572 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,572 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,572 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,573 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:11,573 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:11,573 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,573 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,573 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
f6ddbbf3bfbf362f66f2e5169b56800f2bdb22223b1755a3b2df05d63ebe4efd
2022-05-12 22:40:11,573 botocore.auth DEBUG    Signature:
dd47b79a08259a1fb281301b2592165bd50e06d562a03d7aad50f730f345b6be
2022-05-12 22:40:11,573 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,574 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,574 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,657 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,658 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXF65GJJQ6WCTCW', 'x-amz-id-2': 'ZRktf1WvRqaI80zJNK/+c2pIdG5bEH9y8tvf4WGBDvYO/5pPfS0PiKsMkuJT9sa1Kj2PNQnxlsY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,658 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,658 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,658 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,659 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,659 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,661 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,662 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:11,662 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,662 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,662 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,662 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,662 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,663 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,663 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,664 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:11,664 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:11,664 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,664 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,664 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
7d92024119db17ecfdf71eaf41d4082b73865c7087b9ee1c73291dcfe9d4a5ec
2022-05-12 22:40:11,664 botocore.auth DEBUG    Signature:
3a3aeba34a3fa4efb9e1c78eb63ed0a3ba35a8d3fe164ad53c70369df125e60a
2022-05-12 22:40:11,664 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,665 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,665 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,755 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:11,755 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'C6ZSm0aEPQD8hZR8cw6rS9qOJe9D7FBI/uEQxqV48VmXrhMEl6SN+dMa5Qq7bf6l6M47cJCa530=', 'x-amz-request-id': 'HZX4MG0QY32F23G4', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,755 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,756 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,757 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,757 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,757 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX4MG0QY32F23G4', 'HostId': 'C6ZSm0aEPQD8hZR8cw6rS9qOJe9D7FBI/uEQxqV48VmXrhMEl6SN+dMa5Qq7bf6l6M47cJCa530=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'C6ZSm0aEPQD8hZR8cw6rS9qOJe9D7FBI/uEQxqV48VmXrhMEl6SN+dMa5Qq7bf6l6M47cJCa530=', 'x-amz-request-id': 'HZX4MG0QY32F23G4', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,757 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,759 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,759 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless'}
2022-05-12 22:40:11,759 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,759 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,759 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,759 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,759 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,760 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,760 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,760 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:11,760 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,760 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,760 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,760 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,761 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,761 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,761 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,761 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,761 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:11,761 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:11,761 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,761 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,761 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
a15295043d4c70123be194631913c6282ca8509c0cac1074c85a83e015592995
2022-05-12 22:40:11,762 botocore.auth DEBUG    Signature:
7e794ddaa70600905a450c8e98062e3e4696ab34add75a117e41be4feedb9083
2022-05-12 22:40:11,762 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,762 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,762 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,845 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,845 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX1AR1Y1J6GNDXX', 'x-amz-id-2': '32z0qFJxHqCoh4qxdhbpIx7dadswyUqnu9ym2hQOYVJkN9wl3P14ZhVerPlE5gCnpSblbbvq9dI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,845 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,845 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,846 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,846 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,846 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,847 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,847 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless/'}
2022-05-12 22:40:11,847 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,847 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,847 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,847 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,847 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,847 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,848 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,848 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:11,848 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,848 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,848 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,848 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,848 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,848 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,848 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,848 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,848 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:11,848 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:11,848 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,848 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,848 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
f6ddbbf3bfbf362f66f2e5169b56800f2bdb22223b1755a3b2df05d63ebe4efd
2022-05-12 22:40:11,848 botocore.auth DEBUG    Signature:
dd47b79a08259a1fb281301b2592165bd50e06d562a03d7aad50f730f345b6be
2022-05-12 22:40:11,849 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,849 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,849 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,930 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,931 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXCS7YWZBFC4R36', 'x-amz-id-2': 'ctcatZst3Q4jFe6CUo9B1tu05UfbYsLjhKrjxjdxlFW49JR2mRq78GuEMs4jKd/p/7bU9V1z+DE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,931 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,931 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,932 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,932 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,932 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,933 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,934 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2'}
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,935 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,935 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,935 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:11,936 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2
2022-05-12 22:40:11,936 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,936 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,936 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
ca438285446a30210754a32f1787df1e9fd050efd1480ffab43fcbebd87cb926
2022-05-12 22:40:11,936 botocore.auth DEBUG    Signature:
9eecf9ddcc2260603dfb8c0f8b9903040779f4b21186948ab69e48eae049be39
2022-05-12 22:40:11,936 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,937 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,937 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,018 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2 HTTP/1.1" 404 0
2022-05-12 22:40:12,019 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXDK2HFDPVNKZJ0', 'x-amz-id-2': 'hnP6x28yaGL27KWdOBnim+7AZDEGdnSD+RZw+ruF3j78hiXiVe3ypLTHxssVGvpkiygbkV1F9FA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,019 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,019 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,019 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,020 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,020 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,021 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,022 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:12,022 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,022 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,022 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,022 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,022 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,022 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,023 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,023 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:12,023 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,023 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,023 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,023 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,023 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,023 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,023 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,023 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,024 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:12,024 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:12,024 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,024 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,024 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
bb393c1c46b78ff0a22abf53921a420aa1f8a75cb7f07bb0c3e9fe63be051389
2022-05-12 22:40:12,024 botocore.auth DEBUG    Signature:
a7b45f90bf7c181a37c4061efe71a437e017997c0f939b5a6d7e25044114cb3f
2022-05-12 22:40:12,024 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,025 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,025 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,107 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:12,108 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'uBQOzUFIoSQqeVusSgPaoMDAn9Iz8SkPcpGzoSVdpzx1hGuQBuRlEwM5/58OYXBNsiRcEgSGg5U=', 'x-amz-request-id': 'ZJF3ZZSKFKGYX4G6', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,108 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,109 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,109 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,109 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,109 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF3ZZSKFKGYX4G6', 'HostId': 'uBQOzUFIoSQqeVusSgPaoMDAn9Iz8SkPcpGzoSVdpzx1hGuQBuRlEwM5/58OYXBNsiRcEgSGg5U=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'uBQOzUFIoSQqeVusSgPaoMDAn9Iz8SkPcpGzoSVdpzx1hGuQBuRlEwM5/58OYXBNsiRcEgSGg5U=', 'x-amz-request-id': 'ZJF3ZZSKFKGYX4G6', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,110 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,111 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,111 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2'}
2022-05-12 22:40:12,112 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,112 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,112 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,112 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,112 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,112 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,112 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,112 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:12,112 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,113 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,113 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,113 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,113 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,113 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,113 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,113 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,113 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2
2022-05-12 22:40:12,113 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2
2022-05-12 22:40:12,114 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,114 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,114 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
2bdcebd49955494fb71489b6928cc70be4c10991fe953aa604543824f09530d1
2022-05-12 22:40:12,114 botocore.auth DEBUG    Signature:
e3462794061f4efa365c8d51e2aa9839f9dadb6496beaaa2f57893e2a358d529
2022-05-12 22:40:12,114 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,115 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,115 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,195 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2 HTTP/1.1" 404 0
2022-05-12 22:40:12,195 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF9V4XYZBHWKTGX', 'x-amz-id-2': 'hCuvsyetaAl6dJBxK7/EYpVIHflvXwr0tsA+XS3r8WwCWPlsf/wi22nn/HKfK/TH4omLc/5ji9o=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,196 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,196 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,196 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,196 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,196 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,198 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,198 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:12,198 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,198 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,198 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,198 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,199 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,199 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,199 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,199 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:12,199 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,199 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,199 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,200 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,200 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,200 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:12,200 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:12,200 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,201 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,201 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
bb393c1c46b78ff0a22abf53921a420aa1f8a75cb7f07bb0c3e9fe63be051389
2022-05-12 22:40:12,201 botocore.auth DEBUG    Signature:
a7b45f90bf7c181a37c4061efe71a437e017997c0f939b5a6d7e25044114cb3f
2022-05-12 22:40:12,201 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,201 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,202 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,281 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:12,282 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'okwqFYaaAU05tSniPfCEbu1N7wVQFuN0UPIjxCNinC+pl7iQBNDrJrX827H+Tq5cl7RPM8bY4Ms=', 'x-amz-request-id': 'ZJFFYV3DCN2RM0RQ', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,282 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,282 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,283 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,283 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,283 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJFFYV3DCN2RM0RQ', 'HostId': 'okwqFYaaAU05tSniPfCEbu1N7wVQFuN0UPIjxCNinC+pl7iQBNDrJrX827H+Tq5cl7RPM8bY4Ms=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'okwqFYaaAU05tSniPfCEbu1N7wVQFuN0UPIjxCNinC+pl7iQBNDrJrX827H+Tq5cl7RPM8bY4Ms=', 'x-amz-request-id': 'ZJFFYV3DCN2RM0RQ', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,283 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,285 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,285 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless'}
2022-05-12 22:40:12,285 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,285 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,285 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,286 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,286 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,286 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,286 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:12,286 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,286 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,286 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,286 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,287 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,287 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,287 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:12,287 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:12,287 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,287 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,288 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
09d50b980f911a92f8f40493cd0c9d56be01e18830fc40d5a9b3b3150ecd7aa0
2022-05-12 22:40:12,288 botocore.auth DEBUG    Signature:
e962529f5c93a5cdae573d13678da8c243ec02aa9a3bfc895777fbed6ebe1a9c
2022-05-12 22:40:12,288 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,288 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,288 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,366 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:12,367 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJFBC04JKRZNFZCK', 'x-amz-id-2': 'RCDvnaBUYdH+dD400MvplhxAMdlYX9TodM3apxZsRA1KRlx8A0vmFinTM9vWCS3hz3/Rlp08S90=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,367 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,367 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,367 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,367 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,367 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,369 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,369 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless/'}
2022-05-12 22:40:12,369 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,369 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,369 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,369 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,369 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,370 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,370 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,370 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:12,370 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,370 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,370 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,370 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,370 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,371 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,371 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,371 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,371 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:12,371 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:12,371 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,371 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,371 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
a26bed15ef095038db9e1ed6ccc0921055fdbbe047a05e276b603a3caf152757
2022-05-12 22:40:12,372 botocore.auth DEBUG    Signature:
314a783192f507ee058b8b0a27487557f23929ae8b89d702558f06c836c27614
2022-05-12 22:40:12,372 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,372 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,372 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,451 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:12,452 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF2TE5TNAWB4P4Z', 'x-amz-id-2': 'ZnIiYPBBr6mvilGo1B0gNUomHuo+DzVNrp0+s1FN8OWO2ZQE4UZihFWcIc+nHG2Qr8XJgY21smw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,452 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,452 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,452 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,452 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,452 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,454 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,454 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:12,455 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,455 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,455 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,455 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,455 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:12,455 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:12,455 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,455 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,456 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,456 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:12,456 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:12,456 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,456 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,456 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,456 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:12,456 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:12,456 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:12,456 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:12,457 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:12,457 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:12,457 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:12,457 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,457 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_2/mask_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224012Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:12,457 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
78d5c471f7fe02d8a14bc0358cccc61c02581b0728b742d2b49e6ded53295de0
2022-05-12 22:40:12,458 botocore.auth DEBUG    Signature:
e1d18a971f53d65d8e6388b368391d4a4f4060435068db505637134e87ac913a
2022-05-12 22:40:12,458 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:12,458 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,459 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,552 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:12,553 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '0lnmfnzvuptDcf3aSpCJFnUPNXyX4LCKBOk1G7iOUTYoLTKA8jHzAyD1pDHKHfn4MeknCV3VPhE=', 'x-amz-request-id': 'ZJF267MGCVA31CC9', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,553 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,553 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:12,553 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,553 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:12,553 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF267MGCVA31CC9', 'HostId': '0lnmfnzvuptDcf3aSpCJFnUPNXyX4LCKBOk1G7iOUTYoLTKA8jHzAyD1pDHKHfn4MeknCV3VPhE=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '0lnmfnzvuptDcf3aSpCJFnUPNXyX4LCKBOk1G7iOUTYoLTKA8jHzAyD1pDHKHfn4MeknCV3VPhE=', 'x-amz-request-id': 'ZJF267MGCVA31CC9', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:12,554 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,555 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,555 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/'}
2022-05-12 22:40:12,555 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,555 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,555 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,555 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,556 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,556 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,556 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,556 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:12,556 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,556 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,556 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,557 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,557 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,557 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,557 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,557 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,557 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/
2022-05-12 22:40:12,557 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/
2022-05-12 22:40:12,558 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,558 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,558 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
bb393c1c46b78ff0a22abf53921a420aa1f8a75cb7f07bb0c3e9fe63be051389
2022-05-12 22:40:12,558 botocore.auth DEBUG    Signature:
a7b45f90bf7c181a37c4061efe71a437e017997c0f939b5a6d7e25044114cb3f
2022-05-12 22:40:12,558 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,558 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,559 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,653 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/ HTTP/1.1" 200 0
2022-05-12 22:40:12,654 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NVS6zvp9G343SAS5UAe5DfxnHsf4SFtnoyx2tFPjJL7JjRZvPqt08nfgGsk0pdBdG6A9I2EM5Co=', 'x-amz-request-id': 'ZJF6GVTFQ97H4CSC', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:00 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,654 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,655 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,655 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,655 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,655 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF6GVTFQ97H4CSC', 'HostId': 'NVS6zvp9G343SAS5UAe5DfxnHsf4SFtnoyx2tFPjJL7JjRZvPqt08nfgGsk0pdBdG6A9I2EM5Co=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'NVS6zvp9G343SAS5UAe5DfxnHsf4SFtnoyx2tFPjJL7JjRZvPqt08nfgGsk0pdBdG6A9I2EM5Co=', 'x-amz-request-id': 'ZJF6GVTFQ97H4CSC', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:00 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,656 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,658 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,658 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless'}
2022-05-12 22:40:12,658 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,658 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,658 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,658 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,659 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,659 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,659 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,659 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:12,659 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,659 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,659 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,660 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,660 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,660 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,660 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,660 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,660 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:12,660 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:12,660 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,661 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,661 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
09d50b980f911a92f8f40493cd0c9d56be01e18830fc40d5a9b3b3150ecd7aa0
2022-05-12 22:40:12,661 botocore.auth DEBUG    Signature:
e962529f5c93a5cdae573d13678da8c243ec02aa9a3bfc895777fbed6ebe1a9c
2022-05-12 22:40:12,661 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,661 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,661 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,741 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:12,742 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF7ZC30NFHAM4XW', 'x-amz-id-2': 'G2c6bntIzCn+E3VYDF3j5uFJIClDqvFDdTloRz5z0Q79PSVOvOL7v+7NisOo2/4suj+QHoIt5SI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,742 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,742 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,742 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,742 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,743 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,744 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,745 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless/'}
2022-05-12 22:40:12,745 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,745 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,745 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,745 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,745 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,745 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,746 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,746 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:12,746 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,746 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,746 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,746 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,746 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,746 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,746 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,746 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,747 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:12,747 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:12,747 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,747 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,747 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
a26bed15ef095038db9e1ed6ccc0921055fdbbe047a05e276b603a3caf152757
2022-05-12 22:40:12,747 botocore.auth DEBUG    Signature:
314a783192f507ee058b8b0a27487557f23929ae8b89d702558f06c836c27614
2022-05-12 22:40:12,747 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,748 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,748 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,833 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:12,833 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'QbIhUyj7EgD7Ha7+/KzaPIgKcLyU/1Yz7Fl/rK6FjXULt2og5sbUMPmNG9i+SvA7yiHDcjTBtxM=', 'x-amz-request-id': 'ZJFDE04RNW49SQ0A', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,833 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,834 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,834 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,834 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,835 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJFDE04RNW49SQ0A', 'HostId': 'QbIhUyj7EgD7Ha7+/KzaPIgKcLyU/1Yz7Fl/rK6FjXULt2og5sbUMPmNG9i+SvA7yiHDcjTBtxM=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'QbIhUyj7EgD7Ha7+/KzaPIgKcLyU/1Yz7Fl/rK6FjXULt2og5sbUMPmNG9i+SvA7yiHDcjTBtxM=', 'x-amz-request-id': 'ZJFDE04RNW49SQ0A', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,836 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,837 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,839 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,839 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,840 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,843 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,843 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,845 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,847 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,847 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,847 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,847 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,847 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,851 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,851 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,853 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,855 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,856 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,856 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,858 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,858 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,859 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,860 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,861 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,861 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,862 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,862 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,863 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,863 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,864 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,866 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless'}
2022-05-12 22:40:12,866 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,866 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,866 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,864 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,865 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,867 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,867 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,867 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless'}
2022-05-12 22:40:12,867 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless'}
2022-05-12 22:40:12,867 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless'}
2022-05-12 22:40:12,867 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,869 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,871 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,872 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,873 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,873 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,873 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:12,874 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,874 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:12,874 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,874 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,874 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:12,875 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:12,875 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
931b6507f65743fff69e8f397530ac96f0d9c566d3fe4f9ab1b72f687d6e6602
2022-05-12 22:40:12,875 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,875 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:12,875 botocore.auth DEBUG    Signature:
2048c742227af0ad78c3947a422ef8400db1686f8c25164987aa4d68e45f5c15
2022-05-12 22:40:12,875 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,875 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
8ddf8b999258dec69d85f918ebd7fd14024ae6a6ad82427129c9e3f781b11c2e
2022-05-12 22:40:12,875 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,875 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,876 botocore.auth DEBUG    Signature:
32ea8eb2a74cfd337d5b90148fc47c8399b9cc9d2ce750bc04c3734d1f2679eb
2022-05-12 22:40:12,876 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
8ddf8b999258dec69d85f918ebd7fd14024ae6a6ad82427129c9e3f781b11c2e
2022-05-12 22:40:12,876 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,876 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,876 botocore.auth DEBUG    Signature:
32ea8eb2a74cfd337d5b90148fc47c8399b9cc9d2ce750bc04c3734d1f2679eb
2022-05-12 22:40:12,877 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,877 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,877 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,878 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,881 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,881 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,881 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,881 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,881 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,881 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,881 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,881 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:12,881 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:12,881 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,881 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,881 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
6122cecc6278c389756c3deb6ef2ddac234447546ca233ce173a42dae49082ee
2022-05-12 22:40:12,881 botocore.auth DEBUG    Signature:
65348582d86be0c3f8b96658cee147134b93b34c0754548c90ad795ab7613f27
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,882 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,882 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,882 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:23,673 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,674 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCQQ1PMXP91CWH3', 'x-amz-id-2': 'a1GpqQtVr6FETNiH249syxaOK0EqLzx3GyZDYB2hPxp2LwtY3Z4EgeLfzeMy9mJdHr65zwC9nBU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,674 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,679 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,679 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,680 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,680 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,680 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,680 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,680 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,680 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,681 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,682 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,682 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,682 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,682 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,682 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,682 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,682 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,683 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,683 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,683 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,693 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,694 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCN7HSGASA3K2VB', 'x-amz-id-2': 'aDyCuFg8qdBdZnv0FFN3trSwGGikMaFDmfjsMqp5/LKpRXL5XTLBmHhXAtiFrYsfmdUPuHxnTyg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,695 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,697 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,697 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,697 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,697 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,697 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,697 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,697 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,697 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,698 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,698 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,698 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,698 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,698 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,699 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,699 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,699 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,699 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,699 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,700 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCN5XVHRZVY7SWF', 'x-amz-id-2': 'HSyFacNMCG3Gf8XjPjFwZnxED3cSPJk2ipX6RfXIjCrfBfbd+TdVeHYI9nKy2H3i0MyV/1aiGqo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,700 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,702 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,702 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,702 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,702 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,702 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,702 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,702 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,702 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,702 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,702 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,702 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,702 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,703 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,703 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,703 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,703 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,703 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,703 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,703 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,703 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,703 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,703 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,703 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,703 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,703 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,704 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,704 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,714 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,714 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCT16P6KPS8BW9Z', 'x-amz-id-2': '9C4ifeo9ix17cvCAKOjmoWcRaVWKekMrEHfKHhOkJmHHbzjyz8BGBaOgPIdu62q462C5D6OH/8w=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,714 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,716 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,716 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,716 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,717 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,717 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,717 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,717 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,717 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,717 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,717 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,717 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,717 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,717 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,717 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,717 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,717 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:24,706 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,707 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAGA1600PXK4HVKM', 'x-amz-id-2': 'VsLwbkQDsTkYtIXTVVuOsCWg6qT1UxBYbJIZz1/GdwXZ5mKPLoWyf09YEcrxYOCVv73YoCTidDE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,707 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,707 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,707 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,707 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,707 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,707 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,707 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,707 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,708 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,708 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAGCCJ28MFY5MBWF', 'x-amz-id-2': 'JRR8gNFSVFkW94JmaNOCI6zFtf6eCeHGhsVc2vCdTPwW5g8VEXOOL2g+zOhnUt69FoO9AtExcfo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,708 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAG4PHME1E5MME9J', 'x-amz-id-2': 'fVDsMUV+A2FgjWsIW8QVZdP+wDSfrDwfCpchfd7lRYd8sfKrHotIx9q3FifAbDniLTHfh7SwUN4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,708 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,708 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,709 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,709 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,709 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,709 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,709 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,709 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,709 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,709 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,709 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,709 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,709 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,709 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,710 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,710 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,710 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,710 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,710 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,710 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,711 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,711 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,711 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,711 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,711 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,711 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,711 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,711 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,711 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,711 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,711 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,711 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,711 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,712 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,712 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,712 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,712 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,712 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,712 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,712 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,713 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,713 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,713 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,713 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,713 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,713 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,713 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,713 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,713 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,713 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,713 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,714 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,714 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,714 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,714 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,714 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,715 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,715 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAG5AAFVQ5PCC2P4', 'x-amz-id-2': 'QkdC3W8hgIe38Cjdqof3Jle6/lPf4IsfLe1elMb4aEy1IoQZikGzZEufDU78uFWoIKzDuCN8Rpo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,715 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,715 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,715 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,715 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,715 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,715 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,715 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,716 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,716 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,716 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,716 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,716 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,716 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,716 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,716 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:30,023 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,024 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jAR8fERrYpgjMYxTj6x+ywjkeGBUdFX1f3kLPIvNPRUg9uCqbCPmJFGhKzNivjsTk1h2KjPoyJE=', 'x-amz-request-id': 'BAY4KEEN1YTBVAC9', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,024 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,024 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,024 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,024 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,024 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,025 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,025 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:30,025 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,025 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,025 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,025 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,025 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,025 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,026 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:30,026 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:30,026 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,026 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,026 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
1f379ce922fbfeaca957e544472e57f2676ee80e3d513217c9533773659e7189
2022-05-12 22:40:30,026 botocore.auth DEBUG    Signature:
834282c479e1818a16986368a111e515ba817f3d252e5af0f7e75626e7ccd732
2022-05-12 22:40:30,026 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,027 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,027 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,028 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,028 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'QOKBwoPKqEdq9NVmSDsVmD0dwYc41DeMkuEqzL+PjemFXqHZt7NkcBxr/n26Uj4Jo4mY8m6kaqY=', 'x-amz-request-id': 'BAY4PEQRRK7NA0AG', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,028 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,028 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,028 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,029 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,029 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,029 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,029 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:30,029 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,029 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,029 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,029 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,029 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,029 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,029 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:30,029 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless
2022-05-12 22:40:30,030 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,030 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,030 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
502534ab5f39426ffe46dacae8b55abe9957108b194ea8683126f1ef2e78de69
2022-05-12 22:40:30,030 botocore.auth DEBUG    Signature:
98b707e60d25d3eafcfd6501580a5b704b0078a59ad6104787a3e4f960f82d1d
2022-05-12 22:40:30,030 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,030 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,030 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,036 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,037 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'CPxCk+cDJHUfiQ6Gkiihy5oWTQ6FfeLz8y64Ms9dutZrrlODDwv9ojcc1Qv6K/QrFXHxxGWXqdY=', 'x-amz-request-id': 'BAYEK6JBAY37J3W3', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,037 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,037 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,037 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,037 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,037 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:30,037 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,037 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:30,037 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless
2022-05-12 22:40:30,038 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,038 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,038 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
1f379ce922fbfeaca957e544472e57f2676ee80e3d513217c9533773659e7189
2022-05-12 22:40:30,038 botocore.auth DEBUG    Signature:
834282c479e1818a16986368a111e515ba817f3d252e5af0f7e75626e7ccd732
2022-05-12 22:40:30,038 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,038 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,038 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,047 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,048 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UEbIyslu48V/X61cbUf05lSJCE/6saCUF6NzHHEoe/FNXN97n4Oy+nWmfwpqD8A8DbS+e6an084=', 'x-amz-request-id': 'BAY20GRGNV818QJ2', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,048 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,048 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,048 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,048 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,048 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,048 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,048 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:30,048 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,048 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,048 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,048 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,048 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,048 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,048 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:30,048 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless
2022-05-12 22:40:30,048 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,048 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,048 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
af2e14238ff46db4861b3ad293520c469be7f5442614b72b1e3ee1a07ac3a694
2022-05-12 22:40:30,048 botocore.auth DEBUG    Signature:
8141fbb8566bda7089b4c364dcd3b06b6dd42bb3b710fa6dc52cc04805ccf34a
2022-05-12 22:40:30,049 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,049 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,049 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,105 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,105 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTME6Z5VFR348DV', 'x-amz-id-2': 'oo8ddWQNyLYxNtblSy+Qyd7gmroYJCA4zB/0bKIiWPWZLEBn5sprZj4uLK9FiNMpPQiBiB57lws=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,105 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,106 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,106 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,106 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,107 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless/'}
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,107 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,107 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,107 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:30,107 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:30,108 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,108 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,108 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
e4c1dec39b3c8ffb126a9582a139550ca499e36c3ac15870233f86fb38b9b753
2022-05-12 22:40:30,108 botocore.auth DEBUG    Signature:
b326853ea5e4709a25164654c9c7c308bf0197383892340a797d61d05bbccc64
2022-05-12 22:40:30,108 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,108 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,108 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,109 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,109 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTKADR7X7AGD9J3', 'x-amz-id-2': '62dwH80K92LMLh58cFust5QQm0c1UqG2xC53zLEOdQsRAvTlm1utOE9BrA4Cb6IAUg2pPioRrP0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,109 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,109 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,109 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,109 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,109 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,109 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,110 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless/'}
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,110 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,111 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,111 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,111 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:30,111 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,111 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,111 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,111 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,111 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,111 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,111 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,111 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,111 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:30,111 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless/
2022-05-12 22:40:30,111 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,111 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,111 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
aa01aca312557bf70058c636d8f2b704423a44fa833eb50386f9b2bcdafd09bf
2022-05-12 22:40:30,111 botocore.auth DEBUG    Signature:
b24dd5cdec70bbbfdc0fa9ff58cc74bebf91d87baa006c51e7499eac1089d569
2022-05-12 22:40:30,111 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,112 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,112 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,118 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,118 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTR8B8TA2R7QHSH', 'x-amz-id-2': 'Xlp2jjNVnDL6arFL9qjYCwsjlT0IaE9MGp69hdYPeGcSH8NzJFho54OAPtFAJg4+BRrY3g8RABI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,119 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,119 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,119 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,120 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless/'}
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,121 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:30,121 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/
2022-05-12 22:40:30,121 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,121 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,121 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
e4c1dec39b3c8ffb126a9582a139550ca499e36c3ac15870233f86fb38b9b753
2022-05-12 22:40:30,122 botocore.auth DEBUG    Signature:
b326853ea5e4709a25164654c9c7c308bf0197383892340a797d61d05bbccc64
2022-05-12 22:40:30,122 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,122 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,122 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,130 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,130 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTKAQQ20YFTRDQ5', 'x-amz-id-2': '5qM7rpYdJi6qgYu9aZw2MpWyTGHvo+doMJCGI9dTiEuINYQANObd6oo6xXA24T+PIMhXB1npLQg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,130 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,130 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,130 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,131 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,131 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,131 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,131 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,131 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless/'}
2022-05-12 22:40:30,131 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,131 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,131 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,131 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,131 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,132 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,132 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,132 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:30,132 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,132 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,132 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,132 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,132 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,132 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,132 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,132 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,132 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:30,132 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless/
2022-05-12 22:40:30,132 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,132 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,132 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
ab9ea0d5fe318ba0994fa3e4f5248f532fdbea577ae1ce9891ac3c5b025d4b54
2022-05-12 22:40:30,133 botocore.auth DEBUG    Signature:
f4050715430cc54672a82d6a9b50c9af8ff7b13bd09aaba58536ecbb69c34dc2
2022-05-12 22:40:30,133 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,133 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,133 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,189 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,190 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qY/+E6xDWACb+LmboQUf1XJmH8DiZo2GsSFhcg29yQ89JwTNjRqz2zHbcFQK9E7uIgfmKSKweq4=', 'x-amz-request-id': 'EXTJ6JV9TMWKBKKK', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,190 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,191 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,191 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,191 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,191 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTJ6JV9TMWKBKKK', 'HostId': 'qY/+E6xDWACb+LmboQUf1XJmH8DiZo2GsSFhcg29yQ89JwTNjRqz2zHbcFQK9E7uIgfmKSKweq4=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'qY/+E6xDWACb+LmboQUf1XJmH8DiZo2GsSFhcg29yQ89JwTNjRqz2zHbcFQK9E7uIgfmKSKweq4=', 'x-amz-request-id': 'EXTJ6JV9TMWKBKKK', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,191 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,193 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,193 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy'}
2022-05-12 22:40:30,193 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,194 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,194 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'GG/v4zzLHsiiFbVTmB80bZ8BH76EZ3mpDtFWVkWjAVjq311EDJFEqB1Zo5b5V6nYBuwpRw1u3f8=', 'x-amz-request-id': 'EXTM0XQNQ8XGT6DP', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,194 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,195 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,195 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,195 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,196 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,196 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,196 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,196 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,197 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,197 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTM0XQNQ8XGT6DP', 'HostId': 'GG/v4zzLHsiiFbVTmB80bZ8BH76EZ3mpDtFWVkWjAVjq311EDJFEqB1Zo5b5V6nYBuwpRw1u3f8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'GG/v4zzLHsiiFbVTmB80bZ8BH76EZ3mpDtFWVkWjAVjq311EDJFEqB1Zo5b5V6nYBuwpRw1u3f8=', 'x-amz-request-id': 'EXTM0XQNQ8XGT6DP', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,197 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,197 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,198 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,198 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,198 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless/DISTANCE.npy'}
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,199 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,199 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,200 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,200 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
6cba69b0571c5ec910b69c6e93c86a1bcc06860b5d60652e6a51cdde81d2c4af
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.auth DEBUG    Signature:
8c1b56f07a1f6c7f242f017c6f860a851b611c60f5b3d83fc003a7e238244fb1
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,200 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,201 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,201 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,201 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,201 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
eb6bec2f1168219554c8ac46c8fde49d94cc2ac50102b6d991c824b41f8828e3
2022-05-12 22:40:30,201 botocore.auth DEBUG    Signature:
1f84342b9860f00987f49e7eb3455c8d0f44ef9450b8a3d03367ebe64f54215f
2022-05-12 22:40:30,201 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,201 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,201 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,203 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,204 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '0vmlonr8AJ18xMtljtrhLKbNLjgvX33HXl5DUI/r5V0GoFeXCBC8Ob1sxAtdO3PGB4b0jCyFQOU=', 'x-amz-request-id': 'EXTQQ20A67X0G0A6', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,204 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,204 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,204 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,204 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,204 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTQQ20A67X0G0A6', 'HostId': '0vmlonr8AJ18xMtljtrhLKbNLjgvX33HXl5DUI/r5V0GoFeXCBC8Ob1sxAtdO3PGB4b0jCyFQOU=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '0vmlonr8AJ18xMtljtrhLKbNLjgvX33HXl5DUI/r5V0GoFeXCBC8Ob1sxAtdO3PGB4b0jCyFQOU=', 'x-amz-request-id': 'EXTQQ20A67X0G0A6', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,204 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,205 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless/EXTENT.npy'}
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,205 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,206 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,206 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,206 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
38b35424d36c7b1a6e4fe241087248194894bd5ac69c08e797406b2771975d67
2022-05-12 22:40:30,206 botocore.auth DEBUG    Signature:
2848b11be93b2a2b67540c3c509f4877b51db52578d570cac9a68a7764671197
2022-05-12 22:40:30,206 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,206 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,206 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,237 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,238 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Nk21nqxXRyGfSAUVO/Zwib/bKjf9XjUPq9QSYtRZwCeSg8p6faz7mLYaV7N0UtiLFuWwpfI1ZIs=', 'x-amz-request-id': 'EXTT0TG0PKTZTYJ4', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,238 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,238 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,238 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,238 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,238 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTT0TG0PKTZTYJ4', 'HostId': 'Nk21nqxXRyGfSAUVO/Zwib/bKjf9XjUPq9QSYtRZwCeSg8p6faz7mLYaV7N0UtiLFuWwpfI1ZIs=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Nk21nqxXRyGfSAUVO/Zwib/bKjf9XjUPq9QSYtRZwCeSg8p6faz7mLYaV7N0UtiLFuWwpfI1ZIs=', 'x-amz-request-id': 'EXTT0TG0PKTZTYJ4', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,238 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,239 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,239 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl'}
2022-05-12 22:40:30,239 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,239 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,239 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,239 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,239 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,239 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,240 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,240 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,240 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,240 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,240 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,240 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,240 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,240 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,240 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,240 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,240 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,240 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,240 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,240 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,240 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
a48aa7656747f8c9227b4bcaa1b78ed79cbd9c0ae354b0045f0bcbd18948eae9
2022-05-12 22:40:30,240 botocore.auth DEBUG    Signature:
ae25ec94020a64075948c7ee21139008da2adfb8207a5f4fa1183156d5d0622e
2022-05-12 22:40:30,240 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,240 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,240 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,286 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,287 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTY6M0D8RZ44F29', 'x-amz-id-2': 'Wc03qC8NU87ul2Cwr9N+oN3a5G2/VX6O4ZEmWfuJp/R6q2EangrhzA2Y5EO1HYumxwdnobsWufk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,287 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,288 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless/DISTANCE.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,288 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,288 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTKE4R5GKD3YG1G', 'x-amz-id-2': 'QLgRNgNFQrYQ5SRoK3oc0PYWpq9Zazh546NnPURQTF39MpjGWsFLB3Obec60KyHg74rQHtrhe8k=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,289 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,289 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,289 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,289 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,290 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,290 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,295 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,296 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,296 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless/EXTENT.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,296 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,296 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy/'}
2022-05-12 22:40:30,297 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTQHCEX8MAFN449', 'x-amz-id-2': 'ol/hXItgNJifUR+/DBL8+ptCA+urXZyuOT6VF0Ti+IEoRw7A5O1XhJuuYQVIkawLjvIhKReZc1A=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,299 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,299 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,299 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,300 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/data_timeless/DISTANCE.npy/'}
2022-05-12 22:40:30,300 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,301 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,301 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,301 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,301 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,301 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,301 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,302 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,304 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,303 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,304 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,304 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/mask_timeless/EXTENT.npy/'}
2022-05-12 22:40:30,304 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,304 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,305 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,307 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,307 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,307 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,308 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,308 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,308 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
c4104feb1644dd22c76c28be9635c56b896b6bd331ad8acb0841aa5f9e3971f5
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,308 botocore.auth DEBUG    Signature:
d81b78763a5416cd6940d1b306da07bf879a4b82cc4856998e40bf9e2abf62dd
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,309 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,309 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,309 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,310 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,310 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,310 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
2f465135d40bc42c5c263cc07abd95d25ecd543f5786d0f7e80e46527f1508f3
2022-05-12 22:40:30,310 botocore.auth DEBUG    Signature:
5192c8d77087f0aaa0d21354ad5ed66eb387775e79b94158fb9e57e1bae0e5bb
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,311 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,309 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,311 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,311 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
76ef17dda054b692b5ac4cad43692e98b1af5467c3eee07b261bba695f2b8a97
2022-05-12 22:40:30,311 botocore.auth DEBUG    Signature:
6111fd951f90c24f736bfff58fb2f1d977ed4320cc9fc52860916432d83673ae
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,311 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,310 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,312 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,320 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 404 0
2022-05-12 22:40:30,320 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTYJBWQ5TCXKYWD', 'x-amz-id-2': 'jRByjdAjhj89pELRe9nMbBw7g7oJA67vSifyXZsKB19lg7hyldgKeYxzQoS+20fJ9em48BDiqo4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,320 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,320 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,320 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,320 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,321 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,321 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,322 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl/'}
2022-05-12 22:40:30,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,322 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,322 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,322 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,322 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,322 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,323 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,323 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,323 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,323 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,323 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,323 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,323 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,323 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
19dce04d6044d99bbeffbf9b604655b40c94bdb4e30627d3d8b2862310549b4b
2022-05-12 22:40:30,323 botocore.auth DEBUG    Signature:
b26c361727d24f36c9f09cffa3c77efedb0f20b889dda1cf3b3ac01d7e385d2f
2022-05-12 22:40:30,323 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,323 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,323 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,393 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless/EXTENT.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,394 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTYE3EN0CGFH7WQ', 'x-amz-id-2': 'mmTPC3tK5428pVXuZV9lRE/EMumfhhGf82Ka83LS3lxaNv0xjiCG4nitkrLxorgneOxn3VMFnA0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,394 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,394 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,394 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,394 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,395 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,397 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/data_timeless/DISTANCE.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,397 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,400 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTTWA0Q9ZBX7V2P', 'x-amz-id-2': 'KWDIGJnZfbiY2Unc1E3mIL1T6qeM/fwue4NoNmaarFnJn/sD0RmYcqE9pxgwDTDv+sOoaERzGD4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,400 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,400 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,400 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,400 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,399 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,398 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTKJECNWZTPDB98', 'x-amz-id-2': 'CFeh4TOh8/nkQrjh/SmSp38oEBkfsF12hhWcF3Gi+9t2orDggl+oCYgrV3ZFQkOm8rB1ysZUuNo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,402 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,402 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,402 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,402 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,404 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,407 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,407 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,407 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,408 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,409 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,411 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,412 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl/ HTTP/1.1" 404 0
2022-05-12 22:40:30,412 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,412 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,412 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,412 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTVHVYSBRQWDAQB', 'x-amz-id-2': 'xBn/p8mRlPE2gQ2qYU0llPp4Hsv6qPUqmTq1IXy5WhgQ/YIXrmq3A8By7XmNE6NCOfrbOmraQ/g=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,415 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,413 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,415 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,415 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,416 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,416 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,418 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,418 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,418 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,420 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,420 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,420 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,420 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,412 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,422 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,422 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,422 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,423 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,423 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,423 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,423 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,423 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,424 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,425 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,426 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,426 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,425 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,425 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,426 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,427 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,428 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,428 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,428 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,428 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,428 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,429 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,429 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,429 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,429 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,429 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,429 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,429 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,429 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,429 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,429 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,430 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,431 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,431 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,433 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,433 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,433 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,433 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'B0sS5nt7r9iMdSqG874dtg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,433 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,434 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,435 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,435 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,435 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,435 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,435 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,435 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
ba5c193d6e6ecabe3fe4baf3fc6c082ddf526f5346d2010ba1cb1e5f56a9e96d
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,436 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,436 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,436 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,436 botocore.auth DEBUG    Signature:
576b26a0b8a36071460017bd4e490b52d837dbdb180b6aa36e29d923425d093c
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,436 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
02c3a98543d48c50e5d01bcd3a7a64a583e3ad8ee332a2ddd5c3d23688fc10e3
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,437 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,436 botocore.auth DEBUG    Signature:
7d657b4245e9c14d08c4275d5e659f8d98e36ab281f7e2a8804756253f2b583b
2022-05-12 22:40:30,437 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,437 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,437 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,438 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,437 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,438 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,438 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,439 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,438 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,439 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,439 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
15e06ac24b3f3f8e4894dbf1427725e5c050d5356efce7b3a43b13dc95f7d6a0
2022-05-12 22:40:30,439 botocore.auth DEBUG    Signature:
5aa001f35f9e079dce5c7bdc8ebcb1950a31c4a4be4f4165032151ea9bc186f3
2022-05-12 22:40:30,439 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,439 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,439 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,439 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,439 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,439 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,440 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,440 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'S/Wz7xyo6r7KThbY4TUDPg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,440 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,440 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,440 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,440 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,440 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,440 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,440 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
41281c455b053b1f9a3bc160d8c36600d1ad43f35ae7038aa191d5c24f9242fc
2022-05-12 22:40:30,440 botocore.auth DEBUG    Signature:
5c428a4f768537b1f42beef3b3f265d805c13a216cc5c12e885498c891977180
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,441 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,441 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,441 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:31,568 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,572 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,577 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,579 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,643 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,644 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_4_2/mask_timeless/EXTENT.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,645 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK3E33202E1N1D2', 'x-amz-id-2': '1GAVQIGQRjTKsSNu0sSDDl10Srv2lvY2KS8ExkrLo2Qs/qa2vbVuSDwFB6g1Ye0DQ7ckTyH2F54=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,645 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK3E33202E1N1D21GAVQIGQRjTKsSNu0sSDDl10Srv2lvY2KS8ExkrLo2Qs/qa2vbVuSDwFB6g1Ye0DQ7ckTyH2F54='
2022-05-12 22:40:31,650 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,650 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,650 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,650 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,650 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,651 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,651 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,651 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,651 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,651 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK7NQKNM00Z9F3Z', 'x-amz-id-2': '6241u0h1QTcY8c3akRbEJqtoemqLmAo++SIoPXMCus62lGkFIFNuWdWR2222wKQL1RJjKMGKzrs=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,651 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK7NQKNM00Z9F3Z6241u0h1QTcY8c3akRbEJqtoemqLmAo++SIoPXMCus62lGkFIFNuWdWR2222wKQL1RJjKMGKzrs='
2022-05-12 22:40:31,651 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,652 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,653 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,653 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,653 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,653 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,653 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,653 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,653 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,653 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,653 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,653 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,653 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,653 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_4_2/data_timeless/DISTANCE.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,653 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,654 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,654 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,654 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK51TP6MBQ90JRN', 'x-amz-id-2': 'x1TxkLdVekEyxe5WMlNxlsFq3y/hTmqN73RyIg25MLORf3twKAwBhpAYgrW0hVCFveUv2iPge44=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,654 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,654 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,654 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK51TP6MBQ90JRNx1TxkLdVekEyxe5WMlNxlsFq3y/hTmqN73RyIg25MLORf3twKAwBhpAYgrW0hVCFveUv2iPge44='
2022-05-12 22:40:31,654 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,654 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_2/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,656 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
e3daa9a6a2b807ad582faadebf0d99cd05d898bcbb3b94665da564036d73a11a
2022-05-12 22:40:31,656 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,656 botocore.auth DEBUG    Signature:
abfa5b9409d354e733404655210748290948f7119161e1bfb4c53f943fa8de01
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,656 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,656 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,657 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,657 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,657 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,657 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,657 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,657 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,657 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,657 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,657 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,658 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,658 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,658 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,658 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,658 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 400 None
2022-05-12 22:40:31,658 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK40FYT73PTVS2X', 'x-amz-id-2': '9LxjgSUdUq47hCRp6TEzq/0FXxYrWoPiTmj99uRTm4kVJNZZSI4KSb/utP2GhqpgGv0aLZGgdAI=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,658 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
527b16425b0989fa497faeda8652978b9478b7048ce1b7a30c6a23f4a4c0be6e
2022-05-12 22:40:31,658 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK40FYT73PTVS2X9LxjgSUdUq47hCRp6TEzq/0FXxYrWoPiTmj99uRTm4kVJNZZSI4KSb/utP2GhqpgGv0aLZGgdAI='
2022-05-12 22:40:31,658 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,659 botocore.auth DEBUG    Signature:
83bd6020cbae4c98e96950721fcb4b51b6f80fa2ca4d708f56167c11499b930a
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,660 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,660 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,660 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,661 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,660 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,661 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,661 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,661 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,661 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,661 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,661 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_2/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,661 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
5f83a1ea0b58a36be56ce58888c5489986f67e674dcb3139660bdda9fb4d1992
2022-05-12 22:40:31,661 botocore.auth DEBUG    Signature:
3da6af4abeec6f57962ba3464cbd12062f38d836e86aa1a2853ec959449742dc
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,662 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,662 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,662 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,661 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,662 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,662 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,663 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,663 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,663 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
da9e0ad06960a00db26fd4eee51b7d830310d296d719b103cde991792e0c8387
2022-05-12 22:40:31,663 botocore.auth DEBUG    Signature:
9547ab6bd30826219804b4f720781d25901051a64911d203e83950e5795b52bf
2022-05-12 22:40:31,663 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,663 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,663 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,663 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,663 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:34,559 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,566 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,566 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,568 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,649 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,652 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,659 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,664 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,748 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_2/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 200 0
2022-05-12 22:40:34,749 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '/3TobFWCQfepb5H3iiHYbGBDJ/gP0LZUGYtruB5vXxnRIY5I4OC+LyaZxypUDZvMSL25GymO1sc=', 'x-amz-request-id': '7896R1NWWSR5KK2W', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"074b12e67b7bafd88c752a86f3be1db6"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:34,750 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:34,750 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:34,750 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:34,750 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:34,750 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:34,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:13,904 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_2/mask_timeless/BOUNDARY.npy HTTP/1.1" 200 0
2022-05-12 22:41:13,905 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Xb8+LLvHB3teIQa28Bpzwwsn44WjAQ1EvMsIy1K8MO6HTJGS5SePGPcPGwnF9P1p/QgdTKQ+Fbk=', 'x-amz-request-id': '7895TYQGY2CG4MSR', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:13,905 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:13,905 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:13,905 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:13,905 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:13,906 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:13,906 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:16,341 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_2/mask_timeless/EXTENT.npy HTTP/1.1" 200 0
2022-05-12 22:41:16,341 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HjlIJCFI6vCkV/mo7IKPbnWdsPmnbj8EYvCEEUs+xivuYtpApt83D0/n0NEA3PMgiRqHZexuNs8=', 'x-amz-request-id': '789FTFGFWNYZ4J4D', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:16,342 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:16,342 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:16,342 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:16,342 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:16,342 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:16,342 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:38,224 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_2/data_timeless/DISTANCE.npy HTTP/1.1" 200 0
2022-05-12 22:41:38,225 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'IePXL8jdSdAJe4T0riOgcRVlZB4cVyozQg0U6cFwkMlWto7de+3EsOMW4PNXcBgaMrpOuJQ6WcU=', 'x-amz-request-id': '7891J85D22Q3NFXM', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"4bf5b3ef1ca8eabeca4e16d8e135033e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:38,225 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:38,225 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:38,225 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:38,225 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:38,225 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:38,226 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:38,240 eolearn.core.eoworkflow DEBUG    Removing intermediate result for SaveTask
2022-05-12 22:41:38,241 eolearn.core.eoworkflow DEBUG    Workflow finished with WorkflowResults(
  Dependency(SaveTask):
    EOPatch(
      data: {
        BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
        CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
      }
      mask: {
        CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
        IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
      }
      scalar: {}
      label: {}
      vector: {}
      data_timeless: {
        DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
      }
      mask_timeless: {
        BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
        EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
      }
      scalar_timeless: {}
      label_timeless: {}
      vector_timeless: {
        GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
      }
      meta_info: {}
      bbox: BBox(((239500.0, 1369500.0), (250500.0, 1380500.0)), crs=CRS('32630'))
      timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
    )
)
2022-05-12 22:41:38,241 root         DEBUG    EOWorkflow execution finished

Execution 5

Statistics
2022-05-12 22:21:52,342 eolearn.core.eoworkflow DEBUG    Computing LoadTask(*[], **{'eopatch_folder': '30PTU_4_1'})
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:52,346 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,346 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:52,346 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,349 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:52,350 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:52,352 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,353 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,353 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,353 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,353 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,353 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,353 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:52,353 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,353 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,354 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_1/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:52,354 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:52,354 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,354 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,354 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:52,354 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:52,354 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:52,354 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,354 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,355 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:52,355 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_1%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222152Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:52,355 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222152Z
20220512/us-east-1/s3/aws4_request
9bf34e9a381c423a1745d577ee88b4df560aa9cb17b7c78a8cb3ff92baf36dab
2022-05-12 22:21:52,355 botocore.auth DEBUG    Signature:
4e50c5e9823145908ef544235f298a5d24f494a38a2296d33e0d3b5c0ed38238
2022-05-12 22:21:52,355 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:52,355 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:52,356 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:52,356 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:53,700 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:21:53,701 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'W6EKK75B9509SKCN', 'x-amz-id-2': 'ghFHMWfP9vumqtWDIzOXH0lYkZskR0P5dYqQatuiW4NAT0Tzlg0h+7S7tQvgAZZc9RYApqpVEmQ=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:21:53 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:53,701 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1W6EKK75B9509SKCNghFHMWfP9vumqtWDIzOXH0lYkZskR0P5dYqQatuiW4NAT0Tzlg0h+7S7tQvgAZZc9RYApqpVEmQ='
2022-05-12 22:21:53,704 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:53,704 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:53,704 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:53,704 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:53,704 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,704 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:53,707 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:53,707 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,707 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,707 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:53,708 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:53,708 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,708 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,708 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:53,708 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_1%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222153Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:53,708 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222153Z
20220512/eu-central-1/s3/aws4_request
6d1797b0fffa39b70b108972587242adcc0b1ae2f411abb5054302c5a43f7778
2022-05-12 22:21:53,708 botocore.auth DEBUG    Signature:
55d4f454da17cb1b0c5aa1846e875144abfc15134e8baf3b7cb1b495164ab17e
2022-05-12 22:21:53,708 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:53,709 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:53,709 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:53,709 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:54,651 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,652 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'FIfhDGQN1M7HTjzZYdZoK7MX92TG59JS+CyxtHz07jfelinfeW82PsMgtjGQUK+xEpmStyvMp/Q=', 'x-amz-request-id': 'XNTRBF8VAZ6DC5V1', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,652 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_1/1000/urlfalseeopatches/30PTU_4_1/2022-05-12T11:04:08.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/bbox.pkl2022-05-12T11:04:28.000Z"09910e3b3960fda433df8b6a88f6c3ec"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/timestamp.pkl2022-05-12T11:04:27.000Z"d20f57f9b0299badcdaec2f120421aa8"2089e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/data/eopatches/30PTU_4_1/mask/'
2022-05-12 22:21:54,654 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,654 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,654 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,655 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,655 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,656 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,656 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_1/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,656 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,656 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,656 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,656 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_1%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,656 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
41c91e7a7fb575ad28613c4885ee248841be0712b59f596dd0c06d51d4bc6009
2022-05-12 22:21:54,657 botocore.auth DEBUG    Signature:
b4da1f24f6b05258c0c18d28ce4be8ef383c23c04b2c65a07f738442da99d9de
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,657 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,657 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,746 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,746 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'vT7a+uZPPxRoxksIgnrt+E8vt2iOg7YBV/G1qLSEUahTG2yUqt57lqYPgOMkMIVWmVAFzGb5Qr8=', 'x-amz-request-id': 'XNTX4MZT79R53ZXC', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,746 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_1/data/1000/urlfalseeopatches/30PTU_4_1/data/2022-05-12T11:04:14.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/data/BANDS.npy2022-05-12T11:04:29.000Z"d1e0eecf7a3c8a1323d909fce184cee5-29"242000128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/data/CLP.npy2022-05-12T11:04:27.000Z"665cd73a89ce4f97e412b101790e74a0-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,747 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,748 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,748 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_1/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,749 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,749 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,749 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,749 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,749 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,749 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_1%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,749 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
33c3d1a874e856285df74d5bd0e455d9dbfb853c914f3dbbfbd0976268b2e122
2022-05-12 22:21:54,749 botocore.auth DEBUG    Signature:
3266e958c89017c5e473a7959b271bd83947efd79fdea8dee32b5dba1b574206
2022-05-12 22:21:54,749 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,749 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,749 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,839 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,839 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Pun+prrflujy4/raHOEOw7cLwucxWjMdeLmav7BOAPkDSgqTLfQRRNrvUp/AZKySW/nf52YR0GU=', 'x-amz-request-id': 'XNTXG6KEPACPS0T2', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,840 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_1/mask/1000/urlfalseeopatches/30PTU_4_1/mask/2022-05-12T11:04:19.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/mask/CLM.npy2022-05-12T11:04:28.000Z"cb187bde723884c68a8b21c0a0703b4f-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/mask/IS_DATA.npy2022-05-12T11:04:28.000Z"bfae081011ff5f449d5d875d74e3b33e-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,840 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,840 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,842 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,843 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,843 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,843 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,843 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,847 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,848 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,852 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,852 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,851 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,852 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,855 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,856 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,854 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,858 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,857 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,862 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,854 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,862 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,864 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,862 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,864 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,860 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,852 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,864 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,868 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,865 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,866 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,871 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,854 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,873 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,869 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,876 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,877 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,877 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:54,877 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:54,878 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,878 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask/CLM.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,878 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
dafe5f4c8c8af6685ba21eca1257077add9ac77d1145a2b8d012cd3009820bb2
2022-05-12 22:21:54,878 botocore.auth DEBUG    Signature:
67b9c3470e30f9771bdaec967f4aa5e6bf2a3021c956629b7a484cd39a854167
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,878 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,878 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,878 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,874 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,869 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,882 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,888 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,888 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,890 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:54,890 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:54,891 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,891 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,891 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
177438b09ef0cdff3891ddf5cf9038fb1533760d762b7e51cc1d9ee10f0683f4
2022-05-12 22:21:54,891 botocore.auth DEBUG    Signature:
180881569accedf6e164ef9ee0679c10d62a2f6ecf52524c703986cd0b7df695
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,891 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,892 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/timestamp.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,894 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/timestamp.pkl
2022-05-12 22:21:54,894 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/timestamp.pkl
2022-05-12 22:21:54,894 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,894 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/timestamp.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,894 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
13fb968bd23cfdb03c41118d1ee6e7509bd3e3a7433fb5394a725a12419e2474
2022-05-12 22:21:54,894 botocore.auth DEBUG    Signature:
93ae10b306bb9f9b48ec9b5cadc255abbfce829ba3e608705fbc4ed1322aa1aa
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,895 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,895 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,896 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,888 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,898 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,898 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,898 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,906 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,906 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,906 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,906 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,906 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,907 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,907 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,907 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask/IS_DATA.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,907 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,907 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,907 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
1dcb67a5e0497dd860be5896c73dc99b12956c942032d8f5dc7c94433fdc8fa6
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,908 botocore.auth DEBUG    Signature:
d292b76606c0e20e9bf26a7f68a7f7bf24a4c6f9971ba17ee7ad9e8f2ba21461
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,909 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/bbox.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,908 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,909 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,910 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,910 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,909 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,911 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,911 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/bbox.pkl
2022-05-12 22:21:54,911 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/bbox.pkl
2022-05-12 22:21:54,911 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,911 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/bbox.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,911 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
1dd1ac3bfdeb405c7e98d286b1d044b8c0c1a6c295c6045013635afa7e6abdee
2022-05-12 22:21:54,911 botocore.auth DEBUG    Signature:
9ac687a3b33c13fe58eb7e8ec09f8b785e81392614685f42a1c4df41fe1b5e6a
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,912 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,912 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,912 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:54,912 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:54,913 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,913 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data/CLP.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,913 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
863c113dd1f5af831a4533156fd3bc6bcde337d5dc2e56c58a7b9e56da4d0e4b
2022-05-12 22:21:54,913 botocore.auth DEBUG    Signature:
6f84e6263bf5e3a39f3e748cb25ab2c76b80019f889e21e41ddcc84b7d4ecea1
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,913 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,914 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,914 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:55,597 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask/CLM.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,597 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K0M7T9B1SC2JCN', 'x-amz-id-2': 'CKJ+5JEIT0D9bXp+PcxkZYnrLBTF4ch5FGCsTVSu8Z9/2TCZzAySQF/KIrmHiOIFK5ukCz7R2t4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,597 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,599 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,599 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,599 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,600 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,600 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,600 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,600 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,600 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,600 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,600 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,600 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,600 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,600 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,600 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,600 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,600 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,600 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,600 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,606 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,607 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KFPZ07FPQTK4E5', 'x-amz-id-2': 'dMJbBYtdyBfLQlzKFr4nN0oecIU2xxIWJPWsAYnKujg9u9h+A4Bza88JChRfjwGmvmHBxmyBG8w=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,607 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,609 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,609 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,609 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,609 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,609 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,609 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,609 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,610 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,610 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,610 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,610 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,610 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,610 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,610 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,610 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,611 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,611 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,611 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,611 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,611 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,611 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,611 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/timestamp.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,612 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KFPRGR8BWRDMP9', 'x-amz-id-2': 'gCSNOoRp8cA3M+cp5brdV+zwzSeiNQNhMzDKGCgAad/EA4i4cRQHsYnVMldKeher+Jgmxw899xY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,612 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,614 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,615 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,616 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,616 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,616 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,616 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data/CLP.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,617 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K9B7ZYCKN8VKPH', 'x-amz-id-2': '3ZMk8ON6VYgpb1OwIMYA0VVraAAMz0g/WkWMhiePy8URhqcWYEmVqs8jRwxLcou8npZCZhphnlg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,617 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,619 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,619 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,619 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,619 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,619 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,619 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,619 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,620 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,620 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,620 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,621 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,621 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,621 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,621 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,621 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,621 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,621 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,616 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/bbox.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,622 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K7YWSX71TK11AR', 'x-amz-id-2': 'QHEkXAnh+eYPlgAVEeUQC4q2WHZ3maIyfgGAWEHNDyK1xmHGD2OYPvKf8bjaEFoeZf7ne0Z7ZDs=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,622 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,624 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,624 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,624 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,624 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,624 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,624 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,626 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,626 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,626 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,626 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,626 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,626 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,626 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,626 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,616 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,627 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,627 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,629 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,630 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask/IS_DATA.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,630 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K30YZ9DHV9Z9BK', 'x-amz-id-2': 'DsFR+zYKGe8aCu73FOaHI8hnqMilzdb41dx9E2SUchOtrEdkTqJ/lhL4hEojtS5AENv+gdq0HI0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,630 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,633 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,634 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,634 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,634 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,634 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,634 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,634 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,635 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,635 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,635 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,635 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,630 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,635 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,635 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,636 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,636 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,611 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,636 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,636 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,637 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,637 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,637 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:56,646 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,646 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,646 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JTZX6E75RNGZYC', 'x-amz-id-2': 'J24NKOZQtQl81NyeqqsmXsGSwGJB1rkyrYovDuh0c0Xh6a0ug1PhUbJB3SQL8KeDDWaE+8rqr8Y=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,646 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JG6N8HHJMB8SFB', 'x-amz-id-2': 'MLLbCqqtcTAqX7/F1MONhjdM6HuzR86s9vX8uu/NxtYOWQs66HBJ87mq8updUOjXaISjftshXyA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,646 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,647 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,647 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,647 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,647 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,647 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,647 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,647 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,647 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,648 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,648 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,648 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,648 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JJPRJK32JX397Q', 'x-amz-id-2': 'eyjXGggUT8IJP3VgG4yXhhaTqNcdYCua+n1WScnjrbi+x3mV27HHGtdwVgERWFIPg6BTSZcfMko=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,648 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,648 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,648 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,648 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,650 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,650 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,650 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,650 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,651 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,651 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,651 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,651 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,651 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,652 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,652 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,652 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,652 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,652 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,652 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,652 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,653 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,652 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,653 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,652 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,653 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,653 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,653 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,653 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,654 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,654 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,654 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,654 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,654 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,655 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,655 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JR5K3DMKBFKQYH', 'x-amz-id-2': '0gSrb5brlv4SJ6ywmCRt5w90o1pfp3vGCNyNDYUySxAPEoRPQ4e6+AVb8UDROdX62Zt3asQHob8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,655 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,656 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,656 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,656 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,656 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,656 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,656 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,656 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,656 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,656 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,656 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,656 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,656 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,657 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,657 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,657 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,657 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,657 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,657 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JGTP453974GXVB', 'x-amz-id-2': 'a/vH0V8Hm8IWU4pD5OQVDuvDMa+BOP6mWp06PTHlTi4hFVdWfCl40L8udGCjfLApJeRUyQA82yQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,657 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,658 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,658 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,658 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,658 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,658 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,658 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,659 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JXTZZ0CDKN5JFQ', 'x-amz-id-2': '1EQNHO1lxYsUmw084FC8zhtqqyGSi5UfclznA7xihgV8S3OpGa8pNcmnh8kXVCY4E25QpEN/egA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,659 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,659 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,659 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,659 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,659 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,659 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,659 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,660 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,660 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,660 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,660 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,660 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,660 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,660 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,661 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,661 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,659 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,661 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,661 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,661 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,661 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,661 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,661 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,661 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,661 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,662 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,662 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,662 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,662 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,662 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,662 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,662 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,662 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,666 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,586 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,587 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'FDSEy+pH1AAi/th4jqtFQ4nzQMTb6LCP9UjQ+58t7KBUg9OB4yj6xtz+IH4mIwoezQ4X3nYl7GQ=', 'x-amz-request-id': '4P7NGWJ8GTJSWJXD', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,587 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,587 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,587 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,587 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,587 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,587 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,587 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/bbox.pkl
2022-05-12 22:21:57,588 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,588 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,588 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/bbox.pkl
2022-05-12 22:21:57,588 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/bbox.pkl
2022-05-12 22:21:57,588 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,589 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,589 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
962b5fa5c856d315b4bc3b6b041dc2556cc39d4dbe152a3ac0c7aca61f930f69
2022-05-12 22:21:57,589 botocore.auth DEBUG    Signature:
ea4ba7b04037b38d8af3ec14f2266cca848b79e708272d24acb45401ef0cc2c0
2022-05-12 22:21:57,589 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,589 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,589 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,589 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,596 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,597 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1r6FOyuVTttQXATTA8u+XMPnWKPp7pPIkio/ywA6OrCLBD079tB///AARH94Cjf2hgToOijc7mQ=', 'x-amz-request-id': '4P7XYRBP7RPDAHEV', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,597 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,597 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,597 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,597 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,597 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,597 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,598 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,598 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,598 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,598 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,598 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,599 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,599 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,599 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d69463a6749503afe4ca87b82da0a5c8213d959c1ec0c095380f40377e38f594
2022-05-12 22:21:57,599 botocore.auth DEBUG    Signature:
8da2f6cdbfcf289fced3d253d3dd09be4b2a162bbd4d07878d20a53265567f25
2022-05-12 22:21:57,599 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,599 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,599 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,600 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,599 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'oTMbUAf/lqF7KKbNpDFJciedgnG+t3Je1gR7Cw8htsstvN8AO2hHmvSsOxc2w2XbKz59r2beFcM=', 'x-amz-request-id': '4P7JQT9JNWWM52WV', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,600 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,600 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,600 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,600 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,600 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,600 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,601 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/timestamp.pkl
2022-05-12 22:21:57,601 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,601 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/timestamp.pkl
2022-05-12 22:21:57,601 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/timestamp.pkl
2022-05-12 22:21:57,601 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,602 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,602 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
4ba83c421c2e1c829aee2033ba71b33028e7ee44abe10e16bcc25c2551628aa2
2022-05-12 22:21:57,602 botocore.auth DEBUG    Signature:
408933e1528369906e4ddbda3f5525267fba2fdfc123b37b7b1d0839f83748d0
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,602 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,602 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,602 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,603 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HqmjMss3rOERpNOBv7MqPc1SrrM8IZHX/LgWf1MX9AboyseahSpE6wiBuPuOOZeyC3SKKFmpavM=', 'x-amz-request-id': '4P7X2W680JKA824R', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,603 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,603 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,603 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,603 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,603 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,603 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,604 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,604 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,604 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,604 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,604 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,604 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,604 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,604 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,604 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,604 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,604 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
2b567940098a1f74f3708d22622ae3b2c44d16d2af09010b0029f64c8a899901
2022-05-12 22:21:57,605 botocore.auth DEBUG    Signature:
268079e953bf239aec69a805ec6821d58846015f83a8a44da2d400ba478ab1c0
2022-05-12 22:21:57,605 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,605 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,605 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,605 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,609 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,610 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'w4+csUMU+/lH+3UEsdRGBhPK05z4nWmqy81DuZ3km9xEVMKZo8+mHFG68rNLV9FDyWYc7xaXx8U=', 'x-amz-request-id': '4P7QGKX5KXFYFVZ5', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,610 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,610 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,610 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,610 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,610 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,610 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,610 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,610 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,610 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,610 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,610 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,611 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,611 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,611 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,611 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,611 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,611 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,611 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,611 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
ab13077ce066e7168afa8205076a5ce2672b89e7a30581256a78c72d45bf0c23
2022-05-12 22:21:57,611 botocore.auth DEBUG    Signature:
63e14c7975f596bed41bd1643779f6828f3355b3ec709281e5400feed21f03d7
2022-05-12 22:21:57,611 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,611 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,611 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,612 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,623 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,623 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'wTFPWW0qZdMYJNQr6cM5RcnUU8sR9x+dxGMNLHFE+cXck2f1fDMHVuDeD7Gai7iLPc8cuoXclL0=', 'x-amz-request-id': '4P7HPPJ1GKTYTBZH', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,624 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,624 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,624 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,624 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,624 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,624 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,625 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,625 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,625 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,625 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,625 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
243a6a7b903b2da32df44cd02bd4b6d4856c1d1c32ac36ee7ed1d6b304f9aa12
2022-05-12 22:21:57,625 botocore.auth DEBUG    Signature:
bdbace7f74dcded814a63f2383fe15763c90167cb434c1ec9de6ed46145f84e8
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,626 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,626 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,672 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/bbox.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,673 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'DYmGD3xUR/+XoVESJLH3LoDVrJTJL3VfLdza324jfX9myxubXDpLAVhPCk1+DURtrLnkZaU5tm8=', 'x-amz-request-id': '4P7G8GP4YWSE7KWE', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"09910e3b3960fda433df8b6a88f6c3ec"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,673 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,674 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,674 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,674 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/bbox.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,674 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,674 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/bbox.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,674 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/bbox.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,675 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/bbox.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/bbox.pkl', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,676 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/bbox.pkl
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,676 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/bbox.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,676 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/bbox.pkl
2022-05-12 22:21:57,677 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/bbox.pkl
2022-05-12 22:21:57,677 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,677 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,677 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
c7a001672d4ba6f5fafa01537711081081abe4fbc8556c9a05da4b5c02201d35
2022-05-12 22:21:57,677 botocore.auth DEBUG    Signature:
95e0a443da8187d2cd3aa6ac5f898ded6e4d2cdf7654978084e7fae541d426a8
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,677 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,678 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,684 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,685 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '4m59LHYMN5G276f943W8y8rN/TbcMjLsoIszqKeVETbjI6YckTtV0/Qlt05z/ZYEgkydFOHu/lI=', 'x-amz-request-id': '4P7G6R78V424PSKK', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '242000128'}
2022-05-12 22:21:57,685 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,685 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,685 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,686 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,686 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/timestamp.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,686 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,686 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,686 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'eFd+VKAWl3EldfPBtfGodQ0gKfQUdiMqqQUcaq9f8oJ8oCTyJTjN0Fwda8R+6fjS3wxbrz68J9M=', 'x-amz-request-id': '4P7J8ZP57RXA8BHY', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:27 GMT', 'ETag': '"d20f57f9b0299badcdaec2f120421aa8"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '2089'}
2022-05-12 22:21:57,687 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,687 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,687 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,687 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,688 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,688 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,689 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,688 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,689 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,689 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,689 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,689 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,690 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,690 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,690 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/timestamp.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,691 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,692 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,692 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,692 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,692 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,692 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) about to wait for the following futures []
2022-05-12 22:21:57,693 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/timestamp.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,693 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) done waiting for dependent futures
2022-05-12 22:21:57,694 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=33554432-41943039'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 33554432, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,693 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,693 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data/CLP.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,695 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ILiNpN4yUClMXN48KJRJnwThOIEvCsZb8jEie0HBbHC3edPUQTCFqZeg7RiyqujlfoUHaVkOTEY=', 'x-amz-request-id': '4P7Q1QSNRJWN9TDR', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:27 GMT', 'ETag': '"665cd73a89ce4f97e412b101790e74a0-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,695 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,691 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) about to wait for the following futures []
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,693 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/timestamp.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,696 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) done waiting for dependent futures
2022-05-12 22:21:57,696 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask/IS_DATA.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,697 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'CNegbWqcZO7GHZ8m82WKUTeReVoEdBuGBkYxMCZrMhYgRo28nte9ltVE0T4zWrd8gnfmD6OFZCM=', 'x-amz-request-id': '4P7PRCWAJ3DWV25T', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"bfae081011ff5f449d5d875d74e3b33e-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,697 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,696 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,698 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,698 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,698 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,699 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,699 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,699 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,699 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,697 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=25165824-33554431'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,697 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/timestamp.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/timestamp.pkl', 'fileobj': <_io.BufferedRandom name=35>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,702 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) about to wait for the following futures []
2022-05-12 22:21:57,703 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,715 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,713 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,713 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,717 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=33554432-41943039', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,712 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,716 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) about to wait for the following futures []
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,715 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,715 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask/CLM.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,719 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,718 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,719 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,719 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1aP5Hr376hDJf1Drt7cO5wfedqgOKXtWkv96OkhUBRsGltTNpVO4od19j9jCBvQRkp1qjbn3Kxo=', 'x-amz-request-id': '4P7XM8AAMNGYBESN', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"cb187bde723884c68a8b21c0a0703b4f-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,720 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,719 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,721 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,719 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,715 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) done waiting for dependent futures
2022-05-12 22:21:57,722 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=41943040-50331647'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 41943040, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,720 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,720 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,718 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,723 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,718 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) done waiting for dependent futures
2022-05-12 22:21:57,724 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=50331648-58720255'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 50331648, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,724 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,724 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-33554431', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,714 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,723 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=33>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,723 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,721 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,726 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/timestamp.pkl
2022-05-12 22:21:57,723 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,720 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) about to wait for the following futures []
2022-05-12 22:21:57,727 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) done waiting for dependent futures
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,725 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,725 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,699 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,729 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,729 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,729 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,725 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,725 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,732 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/timestamp.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,727 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=31>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,729 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,730 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,731 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,735 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=33>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,723 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,735 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,735 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=31>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,730 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,734 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,734 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=31>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,727 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=58720256-67108863'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 58720256, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,733 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,742 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,742 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=33>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,733 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,743 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,743 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,733 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,742 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,743 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,736 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,743 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,746 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,746 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
fe654370122093fb8ed6f87a7ce3d2f15bbde317ec217e31fb071de2928e1d71
2022-05-12 22:21:57,746 botocore.auth DEBUG    Signature:
64b40de9e023f157e35021380dd1e840c1566398bd85cd5b0912194fee842ec8
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,741 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,729 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,750 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,746 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,746 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,745 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) about to wait for the following futures []
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,753 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,753 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,753 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=31>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=58720256-67108863', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,755 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,751 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,750 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
267f616ff6c4173b26e5151d2ea654b6ebf3ab239def925df5165967215f5d7c
2022-05-12 22:21:57,756 botocore.auth DEBUG    Signature:
f49f72538d22eccb64e75f632fc75b804f96631f9ff9bf4bc5223dc728c86b10
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,756 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,733 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,758 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,759 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,755 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,761 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,750 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,761 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,761 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,751 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,762 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,762 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,760 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,763 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,760 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,761 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,757 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/timestamp.pkl
2022-05-12 22:21:57,749 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,762 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,762 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,764 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,762 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,765 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,765 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
f86cfbf0629303764e69212f7c42e272f821d51c39616418e09eb26da7a35bef
2022-05-12 22:21:57,765 botocore.auth DEBUG    Signature:
6a210db87094efa268cbf9c69997b279348d58af7bb4ade2283fd0bb9030dd8a
2022-05-12 22:21:57,753 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,760 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=41943040-50331647', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=50331648-58720255', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,768 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,764 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,758 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) about to wait for the following futures []
2022-05-12 22:21:57,769 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) done waiting for dependent futures
2022-05-12 22:21:57,769 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=75497472-83886079'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 75497472, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=75497472-83886079', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,771 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,771 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,752 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) done waiting for dependent futures
2022-05-12 22:21:57,771 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=67108864-75497471'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 67108864, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,773 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,774 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,765 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,768 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,774 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,764 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-33554431
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,763 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,774 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=58720256-67108863
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,771 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,775 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
2cfaea0b0f22899c7850a98605e7ba9c53961a42bdf7210bf7633ff76db0c6fa
2022-05-12 22:21:57,775 botocore.auth DEBUG    Signature:
733479dc235f659f6d758ed3537bf1c1fa17f7e88f0ff6c30ca13face5bf6713
2022-05-12 22:21:57,768 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,775 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=50331648-58720255
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,776 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
0b2016746ea911904e88c64097b3a8d068c93dd4f097e737cdfa2772f2b1c84b
2022-05-12 22:21:57,776 botocore.auth DEBUG    Signature:
5d251d69f48e33d315b800dc5aa37ec1568da5996ac04a1ecd4d6e622295d8d9
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,774 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,764 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/timestamp.pkl
2022-05-12 22:21:57,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,750 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=33554432-41943039
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,777 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
3b94ac992b8f2583d1b08a58d6cfae7bc61b50664f89878ae3795893e9a5d543
2022-05-12 22:21:57,778 botocore.auth DEBUG    Signature:
fe2210e52f2e2adae295dcbd4bc6859af885cb9eb0f03ace55cafba6e6248f9f
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,779 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,779 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,779 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,779 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,779 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,776 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/bbox.pkl HTTP/1.1" 200 184
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,774 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,782 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,782 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,775 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
85585a9ff82e2f151e5c4f60c566ff9e5b40c77169552b0114f3dc4e7e485440
2022-05-12 22:21:57,782 botocore.auth DEBUG    Signature:
f3c2d911f350e552554bf2386d6ab26413dd3d554c6b1834adc21a77f3255503
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,764 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,774 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,764 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,774 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
596f0f8f95d263d9101f87f0b33c5773195b3721313e47907fb0e4c39dbaffcf
2022-05-12 22:21:57,785 botocore.auth DEBUG    Signature:
4891ceecc40d03f4c79190e2a03da69b544a2102a4c2b67aca03178953d05053
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
e54ccef5ebb5ab821b4cb601e3057876368e98ea800ec739d19776904edc5ed7
2022-05-12 22:21:57,785 botocore.auth DEBUG    Signature:
63a4a81e9b17ff1357dff9b3358aa90083827133886a90eebfceaf28dc91ba08
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,764 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,786 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,784 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,787 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,788 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,788 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,782 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,785 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,785 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
bc7f0d025d57e77d2f53c48b0d289566735944148af4ac5d925d2839137cc3a1
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,776 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
915f65be83e4df76e71830203b39c7dacf2cbe1184d8ce5b45bf64e6431bea0d
2022-05-12 22:21:57,786 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,790 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,784 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,787 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,790 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,787 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,788 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,788 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,791 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,781 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'VF4OprF5n9k4hXoUVI/8shCkBEjo/t/yj0P9j8DYYogWfrtWYR9VQRHnM+D1l2biFpODo6PJLp8=', 'x-amz-request-id': '4P7X5D4G3WZFMFRH', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"09910e3b3960fda433df8b6a88f6c3ec"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,789 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=67108864-75497471', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,792 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,789 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,789 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,792 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,790 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,793 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,789 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,791 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,790 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,777 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,794 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,794 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
6654541c069ae41cd97229f409cc4c3f6d623dcd7de58af6646ef52aec977f28
2022-05-12 22:21:57,794 botocore.auth DEBUG    Signature:
80bea136e738e6c3e954f2267557be50bb9ff192211a89ff0a16c552d716e4e4
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,790 botocore.auth DEBUG    Signature:
30206d8f5e1feafebd9f3a40db0d6c58b2fd9128165377145437522b94a46f3e
2022-05-12 22:21:57,792 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=75497472-83886079
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,791 urllib3.connectionpool DEBUG    Starting new HTTPS connection (5): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,793 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,791 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,795 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d4a4a4cfe2e91b4a9086e0d559fa72fea14d30710ef34458dc5a7d35706d30ed
2022-05-12 22:21:57,795 botocore.auth DEBUG    Signature:
4e2d382d89c30073bf903fe86dee217b69bcb11f1967e46c32254413e7c4fbf4
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d431023782fb0d77cc1d3eec4fb3c71e8aaeb01c6502d8becb97cf1c553f622b
2022-05-12 22:21:57,792 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,795 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,795 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=41943040-50331647
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,797 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b9654b8f0e9f0758cc2145c0a716dff41c4df55de72638fed2c7ea6c5e11af0f
2022-05-12 22:21:57,793 urllib3.connectionpool DEBUG    Starting new HTTPS connection (6): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,778 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,798 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 0}
2022-05-12 22:21:57,789 botocore.auth DEBUG    Signature:
8c3942eb904145f4b4bd32bc8c8f1f5d17580816c179e0532d088977c36debea
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,798 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 botocore.auth DEBUG    Signature:
0eafe1d2f544b9df1bcc4eb663e95ab726d1e91a32d83104af2238abc417590b
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,799 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,797 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,799 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
208305da2fa7017644a23277e1df76feb47aaa6df53240e978e5a1864327b811
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,800 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,800 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,801 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,798 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,797 botocore.auth DEBUG    Signature:
a953f993b3b9f2494a446cd028e9faddc36661e14bc1b787a85e52d5411f9933
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,803 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,803 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,798 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,803 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=33>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,803 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,801 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,805 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,805 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,799 urllib3.connectionpool DEBUG    Starting new HTTPS connection (7): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,805 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,804 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,806 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,806 urllib3.connectionpool DEBUG    Starting new HTTPS connection (8): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,805 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,803 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.auth DEBUG    Signature:
456c601878104fa48a7353abe5943533e850dd2ef31d44e624d28feff2994132
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,806 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d3281bd0a5f030e8591b1969d8088ece9c85ca85096d0c9ae377c7e5f5ec172d
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,802 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,807 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,807 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,807 botocore.auth DEBUG    Signature:
45085130759aab82cd37c5fde2619b8a94b9da033fc30aebd14f0da7fe4b565b
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
c8806e1a430e3826d07bff897d096c3b9fab0e8d9d209fc62488aad7cd8efeac
2022-05-12 22:21:57,808 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,809 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,809 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,810 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:21:57,810 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,810 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,810 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,811 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,812 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,812 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,812 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,811 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 botocore.auth DEBUG    Signature:
966bb09f348a2e1df6865870b78c12d361457b3318f003c461265d12e0b6a028
2022-05-12 22:21:57,811 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,810 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,813 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=67108864-75497471
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,811 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d412b9e254e49abaa62151810dc742aae297142d89b3557424de012aff94eff8
2022-05-12 22:21:57,813 botocore.auth DEBUG    Signature:
49a4e952bc2f5819a7fd760373a7cd019af995de3b71bba83d305ae0a521cfeb
2022-05-12 22:21:57,812 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,813 urllib3.connectionpool DEBUG    Starting new HTTPS connection (9): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,813 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
a2bc4cffe0410ada56f7a26e0aec0097b2740d92a4f047c5ac45aedd3defa40c
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,812 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,813 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,813 botocore.auth DEBUG    Signature:
a790837028fffbe984277f672b19f31fe5d2bb751af9f6b77d0e0da85abe53e1
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,814 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,814 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,812 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,814 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,815 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,814 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask/CLM.npy
2022-05-12 22:21:57,815 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,815 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,815 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,815 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,815 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
c78f5a132a076199a3c39383db7e102edf696fc4670043e5fee61c808532be34
2022-05-12 22:21:57,814 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d93272f2f089013af52a13e0f6dd8648ae927560e82e65434e960c8e4df3f599
2022-05-12 22:21:57,816 botocore.auth DEBUG    Signature:
ac65ed4d2f61d3cbdaec0a32d1942f740e5a6e9a5ead6df531fe72db3b766af7
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,816 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,815 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,816 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,817 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.auth DEBUG    Signature:
21e38315aa653098705b9e8395ffca8fe41488cadca6638ead37ea2e78a57d2f
2022-05-12 22:21:57,817 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,817 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,817 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,818 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 urllib3.connectionpool DEBUG    Starting new HTTPS connection (10): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,818 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,817 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,818 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,819 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,820 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,820 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,820 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,820 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,820 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask/IS_DATA.npy
2022-05-12 22:21:57,820 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,820 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,820 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
190ab898df099a77006660cc54c6b1eeb7d4e748e82b58c2c99ad7b1325282ae
2022-05-12 22:21:57,820 botocore.auth DEBUG    Signature:
9283c1358947073d28873bc285944f21c1d92ad4ac4a6d8708974f3a84dfdf24
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,821 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,821 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,821 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,821 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,819 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,821 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,821 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,966 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,967 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'H5WoEVxIi6onzX8oKC27kuaCFA4u6KKy+OopENfWG4aC/bBleh3nYMqt0xrUVXqKP6QtOsC4bgo=', 'x-amz-request-id': '4P7WWX4M7P5JYV0K', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,967 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,967 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,967 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,967 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,976 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,976 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'KCRzFsoJ9CFcZeD7zNprxGKZL/3gn52xSRt7pNq5Lvw+vVOVaIQDKS+nYNrtTN4nHxEdILKb9Ck=', 'x-amz-request-id': '4P7GAWGS719GXQ48', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:27 GMT', 'ETag': '"665cd73a89ce4f97e412b101790e74a0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,976 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,977 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,977 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,977 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,984 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/timestamp.pkl HTTP/1.1" 200 2089
2022-05-12 22:21:57,984 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Cohmf+1j/S/OqtRs1raCNt7/o6xmokgCH7KEXm30xrZdB6E7mGCyhyC6rQCm+2ViSxJvnS7pwT4=', 'x-amz-request-id': '4P7SB9B6ZNTVYESY', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:27 GMT', 'ETag': '"d20f57f9b0299badcdaec2f120421aa8"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '2089'}
2022-05-12 22:21:57,984 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,985 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,985 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,985 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 0}
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,986 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:58,003 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:58,003 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '9rNuwG9CrFF92iq99WEvD7fI0r3mbNq2ZotbPztJ0hR7FS8ojrd0TUY15cm2CxeO4Weh547PWGY=', 'x-amz-request-id': '4P7JA3SNT9H5ZPRR', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"bfae081011ff5f449d5d875d74e3b33e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:58,003 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:58,005 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:58,005 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:58,005 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:58,067 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:58,068 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Cbj18E2pgR0K9/2knyVkGtLlVj6iDpYTzEXHCH8vMxqKeM8EU7KiewW8K4q38Ii39V0Xctkv208=', 'x-amz-request-id': '4P7Q4N6S57AW802F', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"cb187bde723884c68a8b21c0a0703b4f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:58,068 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:58,069 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:58,069 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:58,069 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:00,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:00,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:00,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:00,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:00,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 16777216}
2022-05-12 22:22:00,328 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:00,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:00,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:00,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:00,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:00,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 0}
2022-05-12 22:22:00,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:01,269 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:01,269 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:01,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:01,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:01,270 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 8388608}
2022-05-12 22:22:01,271 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:02,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:02,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:02,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:02,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:02,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 8388608}
2022-05-12 22:22:02,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:05,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:05,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:05,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:05,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:05,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 262144}
2022-05-12 22:22:05,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:06,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:06,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:06,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:06,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:06,628 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 8650752}
2022-05-12 22:22:06,628 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,562 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:07,562 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:07,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:07,563 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 17039360}
2022-05-12 22:22:07,563 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,784 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/mask/IS_DATA.npy HTTP/1.1" 206 5084304
2022-05-12 22:22:08,785 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Jmusly9ltxImtfzfoi/vnnSJJ2bzq1SFgv/SV+Z+nUE6XXvJfLeLyl9abP0uLkbWn/7vKaGtAeM=', 'x-amz-request-id': '8ZJVQF30DYBJ69CW', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"bfae081011ff5f449d5d875d74e3b33e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:22:08,785 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,786 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,786 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,786 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,979 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,979 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'lbTfzZRUrp8n02FZHtIqueBviDtBlfE48yPlTY3gGdckFhICkOjTpdqxfA2ahXLfbw8o3rNlFrU=', 'x-amz-request-id': '8ZJSPHREN6SJWS2H', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-33554431/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,979 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,980 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,980 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,980 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,051 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,052 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'k7MTSDuReN52ClHWFFaNfg3s/Pe47WGK4eqNj0iRDZsoM607xRYc2qhMoYri3Mo90FS9d9gIFww=', 'x-amz-request-id': '8ZJXY0QTQXFJBK3F', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"bfae081011ff5f449d5d875d74e3b33e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,052 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,053 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,053 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,053 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,077 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,078 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HHvhLYdUUr9R6CiqNISo61Bu43hdf+moY4RaG92+g3tEJkn6iExA3kk0hyVjtq4uvr3LhhG7krA=', 'x-amz-request-id': '8ZJWF4KXJNN339SN', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:27 GMT', 'ETag': '"665cd73a89ce4f97e412b101790e74a0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,078 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,078 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,078 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,078 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,081 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,081 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SmjvIrgtwYRDBmB63nZhyVdowVToKql5zlhbTdL4iLFjFQDIaii5k9wfJxsYwLz+373zA+AW2QM=', 'x-amz-request-id': '8ZJYW5CCHPH99KZC', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,081 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,082 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,082 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,082 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,093 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,093 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Nzf2pjFASil22COUi5zKnW2b4TFKyPkf4Pds3VYXZmF4Hpa7jcrUP8hW/vtQg2dzY3RPV+qPhGw=', 'x-amz-request-id': '8ZJXM5ZW9XJEGNFR', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 33554432-41943039/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,093 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,094 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,094 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,094 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,169 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,169 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1mRiv2J9Nb7q3rvjniU1zgT67cE76vszbvXr43FrMjiv2uOaajohh90Qbyc7+HIQFAfilJRwUY8=', 'x-amz-request-id': '8ZJV5N338MCEFGJ2', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 75497472-83886079/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,170 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,170 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,170 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,170 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,272 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,273 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'iLFshHuLqDZyA5eoS3PiIxp/5LdaKXcQXE07qX+bYh9K3GoHlf6Ren1SkHbXUgF1UDxFYdcBmqk=', 'x-amz-request-id': 'MCAWN40TGB3YDZ1A', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"cb187bde723884c68a8b21c0a0703b4f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,273 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,274 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,274 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,274 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,280 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,281 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '32GLNOMXHSXxsO149juZGMW/JFjen6MyDPHZqwSf1Vie+kLktLYi9N1/pBcUEKQ0HW5PtTShsvY=', 'x-amz-request-id': 'MCAGGJ573ZE0VYXW', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:27 GMT', 'ETag': '"665cd73a89ce4f97e412b101790e74a0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,281 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,281 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,281 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,281 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,292 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,292 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jvwFVyxViIOEzOgUirYQf8BE4NWL20iT5Y5E6QJuIAyf9HFZYRDc84alhS8Mx+IK+Z1Qzmbtwlo=', 'x-amz-request-id': 'MCAR61XMSHERHXGG', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"bfae081011ff5f449d5d875d74e3b33e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,292 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,293 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,293 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,293 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,336 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,336 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'xgG42PLP4ySxW9rdVPF7LEvYLF237qleujhKz5BWRV4zwnath90GKqgO7/cb8XxhdwC/TeYTeE0=', 'x-amz-request-id': 'MCANK9GBV3JHRKDB', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,337 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,337 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,337 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,337 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,381 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/CLP.npy HTTP/1.1" 206 5084304
2022-05-12 22:22:09,381 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'j932/puLoKXCv96HhBc2kTeNPm5HgCtLc/5k2GJstTPUgcZbiP6k1BiguYpiZKVYD8Wyd2N7/NU=', 'x-amz-request-id': 'MCAWRVAGQYPCJN1A', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:27 GMT', 'ETag': '"665cd73a89ce4f97e412b101790e74a0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:22:09,381 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,382 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,382 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,382 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,471 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,471 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Vg1H9QhoNJbW8clb2QJvtNt1CDLqBTK1ow+rDjLEbCRm3C4O1Ce6dECLGeBtMBHG0sTn7hUyqbU=', 'x-amz-request-id': 'MCAK4R2DR8JY6CWH', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 67108864-75497471/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,471 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,471 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,471 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,471 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,643 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,644 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'zdroRyMeKqQQacvs11L6AJLWW7pckYYjL5YI/Qu5z5k+xJRZ3WqPHWxCR3Q/ahazPlg1VsN7vNM=', 'x-amz-request-id': 'MCAX8C16GQ9FWSD6', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"cb187bde723884c68a8b21c0a0703b4f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,644 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,645 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,645 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,645 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:09,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:09,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:09,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:09,709 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 524288}
2022-05-12 22:22:09,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:09,780 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:09,780 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:09,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:09,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:09,781 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 8650752}
2022-05-12 22:22:09,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:09,805 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/mask/CLM.npy HTTP/1.1" 206 5084304
2022-05-12 22:22:09,806 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'okBV5hfKqu89okItDREEdSj4VTcpU+58wiHpuxM5nr0RrMwh81M0eWVW49B3mwrwhsvP6sSZQBE=', 'x-amz-request-id': 'MCARW7D7SCAQ48H5', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:28 GMT', 'ETag': '"cb187bde723884c68a8b21c0a0703b4f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:22:09,806 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,807 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,807 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,807 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:10,052 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:10,052 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'CIoNLHJGywg73E43iG0RuBb6tLQx/2973PBT28ppEY4Vy8/XNXUt1FgPRPo9TrOmoMlzR5lckaw=', 'x-amz-request-id': 'MCARKG7RFH1T1V8M', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 50331648-58720255/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:10,052 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:10,053 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:10,053 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:10,053 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:10,762 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:10,762 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'uJAOC7+roGdr5SM51VLY4Q/6g2uUDN9ZNsFxtJkMlJfGkD5uGYwFU6vn+MYoTa4NHmKO37CHsgw=', 'x-amz-request-id': 'YV0Y2AXAN6FH8F1D', 'Date': 'Thu, 12 May 2022 22:22:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 58720256-67108863/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:10,763 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:10,764 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:10,764 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:10,764 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:12,821 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:12,822 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NJxU/rl9GMMzjC5AHorhpLjHPHwmSGxePmDu6b0wmAzv0yB0ZANWgxaH58kDME2x+NpasE8i8hw=', 'x-amz-request-id': '8B7DP8M8Y27G45VN', 'Date': 'Thu, 12 May 2022 22:22:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 41943040-50331647/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:12,822 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:12,822 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:12,822 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:12,822 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:16,822 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:16,822 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:16,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:16,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:16,823 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 8912896}
2022-05-12 22:22:16,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:19,115 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67108864}) to executor  for transfer request: 0.
2022-05-12 22:22:19,115 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:19,115 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) about to wait for the following futures []
2022-05-12 22:22:19,115 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) done waiting for dependent futures
2022-05-12 22:22:19,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67108864}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 67108864}
2022-05-12 22:22:19,116 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:22,966 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:22,966 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:22,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:22,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:22,967 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 8912896}
2022-05-12 22:22:22,967 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75497472}) to executor  for transfer request: 0.
2022-05-12 22:22:23,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) about to wait for the following futures []
2022-05-12 22:22:23,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) done waiting for dependent futures
2022-05-12 22:22:23,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75497472}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 75497472}
2022-05-12 22:22:23,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,256 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:23,256 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,257 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:23,257 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:23,257 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 0}
2022-05-12 22:22:23,257 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:23,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:23,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:23,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 0}
2022-05-12 22:22:23,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,995 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:23,995 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:23,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:23,995 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 25165824}
2022-05-12 22:22:23,996 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:24,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:24,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:24,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 25165824}
2022-05-12 22:22:24,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,523 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:24,523 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:24,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:24,524 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 0}
2022-05-12 22:22:24,525 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:25,883 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:25,883 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:25,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:25,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:25,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 25165824}
2022-05-12 22:22:25,884 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:26,780 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:26,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:26,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:26,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:26,781 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 16777216}
2022-05-12 22:22:26,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,205 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:27,206 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:27,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:27,206 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 786432}
2022-05-12 22:22:27,206 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,366 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:27,367 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:27,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:27,367 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 8388608}
2022-05-12 22:22:27,368 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,955 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50331648}) to executor  for transfer request: 0.
2022-05-12 22:22:27,955 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) about to wait for the following futures []
2022-05-12 22:22:27,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) done waiting for dependent futures
2022-05-12 22:22:27,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50331648}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 50331648}
2022-05-12 22:22:27,956 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:29,344 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:29,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:29,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:29,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:29,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 25165824}
2022-05-12 22:22:29,345 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:30,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33554432}) to executor  for transfer request: 0.
2022-05-12 22:22:30,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:30,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) about to wait for the following futures []
2022-05-12 22:22:30,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) done waiting for dependent futures
2022-05-12 22:22:30,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33554432}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 33554432}
2022-05-12 22:22:30,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:31,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41943040}) to executor  for transfer request: 0.
2022-05-12 22:22:31,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:31,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) about to wait for the following futures []
2022-05-12 22:22:31,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) done waiting for dependent futures
2022-05-12 22:22:31,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41943040}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 41943040}
2022-05-12 22:22:31,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:31,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:31,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:31,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:31,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:31,740 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 16777216}
2022-05-12 22:22:31,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:34,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:34,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:34,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 8388608}
2022-05-12 22:22:34,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:35,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:22:35,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:35,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:22:35,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:22:35,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 9175040}
2022-05-12 22:22:35,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,054 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:36,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:36,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:36,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 262144}
2022-05-12 22:22:36,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:37,102 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:37,102 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:37,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:37,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:37,102 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 262144}
2022-05-12 22:22:37,103 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:37,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58720256}) to executor  for transfer request: 0.
2022-05-12 22:22:37,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:37,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) about to wait for the following futures []
2022-05-12 22:22:37,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) done waiting for dependent futures
2022-05-12 22:22:37,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58720256}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 58720256}
2022-05-12 22:22:37,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:38,455 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:38,455 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:38,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:38,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:38,456 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 25427968}
2022-05-12 22:22:38,456 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:39,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:39,208 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:39,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:39,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:39,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 17039360}
2022-05-12 22:22:39,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:39,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67371008}) to executor  for transfer request: 0.
2022-05-12 22:22:39,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:39,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) about to wait for the following futures []
2022-05-12 22:22:39,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) done waiting for dependent futures
2022-05-12 22:22:39,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67371008}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 67371008}
2022-05-12 22:22:39,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:41,367 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50593792}) to executor  for transfer request: 0.
2022-05-12 22:22:41,367 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:41,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) about to wait for the following futures []
2022-05-12 22:22:41,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) done waiting for dependent futures
2022-05-12 22:22:41,368 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50593792}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 50593792}
2022-05-12 22:22:41,368 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:41,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:41,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:41,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:41,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:41,663 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 17301504}
2022-05-12 22:22:41,663 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:42,190 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:42,190 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:42,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:42,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:42,190 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 262144}
2022-05-12 22:22:42,190 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:42,878 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:42,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:42,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:42,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:42,879 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 25427968}
2022-05-12 22:22:42,880 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:43,798 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:43,798 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:43,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:43,799 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:43,799 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 25427968}
2022-05-12 22:22:43,799 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:44,361 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33816576}) to executor  for transfer request: 0.
2022-05-12 22:22:44,361 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:44,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) about to wait for the following futures []
2022-05-12 22:22:44,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) done waiting for dependent futures
2022-05-12 22:22:44,363 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33816576}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 33816576}
2022-05-12 22:22:44,363 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:46,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:46,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:46,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:46,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:46,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 8650752}
2022-05-12 22:22:46,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:22:47,412 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:22:47,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:22:47,413 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 9437184}
2022-05-12 22:22:47,414 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,878 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:47,878 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:47,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:47,879 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 8650752}
2022-05-12 22:22:47,879 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:48,584 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75759616}) to executor  for transfer request: 0.
2022-05-12 22:22:48,584 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:48,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) about to wait for the following futures []
2022-05-12 22:22:48,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) done waiting for dependent futures
2022-05-12 22:22:48,585 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75759616}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 75759616}
2022-05-12 22:22:48,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:48,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42205184}) to executor  for transfer request: 0.
2022-05-12 22:22:48,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:48,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) about to wait for the following futures []
2022-05-12 22:22:48,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) done waiting for dependent futures
2022-05-12 22:22:48,628 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42205184}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 42205184}
2022-05-12 22:22:48,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,358 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:49,358 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:49,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:49,359 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 25427968}
2022-05-12 22:22:49,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,431 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:49,432 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:49,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:49,432 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 524288}
2022-05-12 22:22:49,433 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:52,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:52,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:52,982 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 524288}
2022-05-12 22:22:52,983 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:53,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:53,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:53,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 524288}
2022-05-12 22:22:53,117 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,569 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50855936}) to executor  for transfer request: 0.
2022-05-12 22:22:53,570 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) about to wait for the following futures []
2022-05-12 22:22:53,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) done waiting for dependent futures
2022-05-12 22:22:53,570 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50855936}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 50855936}
2022-05-12 22:22:53,570 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:56,067 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58982400}) to executor  for transfer request: 0.
2022-05-12 22:22:56,067 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:56,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) about to wait for the following futures []
2022-05-12 22:22:56,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) done waiting for dependent futures
2022-05-12 22:22:56,067 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58982400}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 58982400}
2022-05-12 22:22:56,068 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:56,660 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:22:56,660 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:56,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:22:56,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:22:56,660 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 1048576}
2022-05-12 22:22:56,661 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:56,925 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:56,925 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:56,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:56,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:56,926 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 17039360}
2022-05-12 22:22:56,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:57,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34078720}) to executor  for transfer request: 0.
2022-05-12 22:22:57,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:57,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) about to wait for the following futures []
2022-05-12 22:22:57,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) done waiting for dependent futures
2022-05-12 22:22:57,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34078720}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 34078720}
2022-05-12 22:22:57,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:57,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:57,317 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:57,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:57,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:57,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 8912896}
2022-05-12 22:22:57,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:59,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:22:59,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:59,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:22:59,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:22:59,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 25690112}
2022-05-12 22:22:59,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:00,253 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:00,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:00,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 17563648}
2022-05-12 22:23:00,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:03,212 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:03,212 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:03,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:03,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:03,213 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 786432}
2022-05-12 22:23:03,213 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:03,280 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:03,280 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:03,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:03,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:03,281 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 25690112}
2022-05-12 22:23:03,281 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,344 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:05,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:05,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:05,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 786432}
2022-05-12 22:23:05,345 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:05,917 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:05,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:05,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 17301504}
2022-05-12 22:23:05,918 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,895 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67633152}) to executor  for transfer request: 0.
2022-05-12 22:23:07,895 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) about to wait for the following futures []
2022-05-12 22:23:07,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) done waiting for dependent futures
2022-05-12 22:23:07,895 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67633152}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 67633152}
2022-05-12 22:23:07,895 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:08,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:08,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:08,166 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 786432}
2022-05-12 22:23:08,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,484 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51118080}) to executor  for transfer request: 0.
2022-05-12 22:23:08,484 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) about to wait for the following futures []
2022-05-12 22:23:08,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) done waiting for dependent futures
2022-05-12 22:23:08,485 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51118080}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 51118080}
2022-05-12 22:23:08,485 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:09,204 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:09,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:09,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:09,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:09,205 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 9699328}
2022-05-12 22:23:09,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:10,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:23:10,102 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:10,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:23:10,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:23:10,102 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 8912896}
2022-05-12 22:23:10,103 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:10,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:10,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:10,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:10,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:10,597 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 1310720}
2022-05-12 22:23:10,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:10,698 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34340864}) to executor  for transfer request: 0.
2022-05-12 22:23:10,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:10,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) about to wait for the following futures []
2022-05-12 22:23:10,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) done waiting for dependent futures
2022-05-12 22:23:10,699 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34340864}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 34340864}
2022-05-12 22:23:10,699 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:11,580 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:11,580 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:11,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:11,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:11,581 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 25690112}
2022-05-12 22:23:11,581 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:11,962 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42467328}) to executor  for transfer request: 0.
2022-05-12 22:23:11,962 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:11,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) about to wait for the following futures []
2022-05-12 22:23:11,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) done waiting for dependent futures
2022-05-12 22:23:11,963 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42467328}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 42467328}
2022-05-12 22:23:11,963 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:14,506 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:14,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:14,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:14,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:14,507 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 25952256}
2022-05-12 22:23:14,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:14,859 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:14,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:14,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:14,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:14,860 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 1048576}
2022-05-12 22:23:14,860 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:15,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76021760}) to executor  for transfer request: 0.
2022-05-12 22:23:15,222 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:15,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) about to wait for the following futures []
2022-05-12 22:23:15,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) done waiting for dependent futures
2022-05-12 22:23:15,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76021760}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 76021760}
2022-05-12 22:23:15,223 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:15,862 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:15,862 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:15,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:15,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:15,863 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 1048576}
2022-05-12 22:23:15,863 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:16,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:16,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:16,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:16,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:16,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 9175040}
2022-05-12 22:23:16,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:18,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51380224}) to executor  for transfer request: 0.
2022-05-12 22:23:18,875 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:18,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) about to wait for the following futures []
2022-05-12 22:23:18,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) done waiting for dependent futures
2022-05-12 22:23:18,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51380224}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 51380224}
2022-05-12 22:23:18,876 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:18,937 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:18,937 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:18,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:18,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:18,938 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 25690112}
2022-05-12 22:23:18,939 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:20,356 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:20,356 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:20,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:20,357 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 25952256}
2022-05-12 22:23:20,357 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:20,403 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:20,403 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:20,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:20,403 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 17825792}
2022-05-12 22:23:20,404 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:21,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:21,639 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:21,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:21,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:21,640 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 1572864}
2022-05-12 22:23:21,640 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:22,937 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:22,937 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:22,937 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:22,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:22,938 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 1048576}
2022-05-12 22:23:22,938 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,775 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:23,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:23,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:23,776 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 17301504}
2022-05-12 22:23:23,777 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,783 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:23,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:23,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:23,784 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 17563648}
2022-05-12 22:23:23,784 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,969 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:25,969 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:25,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:25,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 9175040}
2022-05-12 22:23:25,970 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,198 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42729472}) to executor  for transfer request: 0.
2022-05-12 22:23:27,198 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) about to wait for the following futures []
2022-05-12 22:23:27,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) done waiting for dependent futures
2022-05-12 22:23:27,199 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42729472}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 42729472}
2022-05-12 22:23:27,199 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:27,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:27,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:27,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 1310720}
2022-05-12 22:23:27,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34603008}) to executor  for transfer request: 0.
2022-05-12 22:23:27,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) about to wait for the following futures []
2022-05-12 22:23:27,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) done waiting for dependent futures
2022-05-12 22:23:27,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34603008}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 34603008}
2022-05-12 22:23:27,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,882 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:27,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:27,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:27,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 9961472}
2022-05-12 22:23:27,883 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:28,312 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:28,312 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:28,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:28,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:28,313 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9175040}
2022-05-12 22:23:28,313 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:28,461 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59244544}) to executor  for transfer request: 0.
2022-05-12 22:23:28,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:28,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) about to wait for the following futures []
2022-05-12 22:23:28,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) done waiting for dependent futures
2022-05-12 22:23:28,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59244544}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 59244544}
2022-05-12 22:23:28,463 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:28,784 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:28,784 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:28,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:28,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:28,785 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 26214400}
2022-05-12 22:23:28,785 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:29,308 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:29,308 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:29,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:29,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:29,309 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 26214400}
2022-05-12 22:23:29,309 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:31,581 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67895296}) to executor  for transfer request: 0.
2022-05-12 22:23:31,581 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:31,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) about to wait for the following futures []
2022-05-12 22:23:31,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) done waiting for dependent futures
2022-05-12 22:23:31,582 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67895296}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 67895296}
2022-05-12 22:23:31,582 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:32,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:32,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:32,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:32,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:32,109 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 1310720}
2022-05-12 22:23:32,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:33,989 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:33,989 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:33,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:33,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:33,989 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 1835008}
2022-05-12 22:23:33,990 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:35,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:35,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:35,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 18087936}
2022-05-12 22:23:35,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:37,096 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:37,096 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:37,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:37,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:37,097 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 26476544}
2022-05-12 22:23:37,097 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:37,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51642368}) to executor  for transfer request: 0.
2022-05-12 22:23:37,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:37,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) about to wait for the following futures []
2022-05-12 22:23:37,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) done waiting for dependent futures
2022-05-12 22:23:37,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51642368}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 51642368}
2022-05-12 22:23:37,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,113 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34865152}) to executor  for transfer request: 0.
2022-05-12 22:23:38,113 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) about to wait for the following futures []
2022-05-12 22:23:38,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) done waiting for dependent futures
2022-05-12 22:23:38,114 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34865152}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 34865152}
2022-05-12 22:23:38,114 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,117 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:38,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:38,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:38,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 10223616}
2022-05-12 22:23:38,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,510 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:38,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:38,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:38,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 25952256}
2022-05-12 22:23:38,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:38,685 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:38,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:38,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 1310720}
2022-05-12 22:23:38,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:39,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:39,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:39,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 1572864}
2022-05-12 22:23:39,516 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:41,303 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:41,303 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:41,303 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:41,303 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:41,303 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 17563648}
2022-05-12 22:23:41,304 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:41,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:41,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:41,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:41,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:41,616 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 17825792}
2022-05-12 22:23:41,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:43,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:43,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:43,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:43,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:43,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 26476544}
2022-05-12 22:23:43,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,653 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:44,653 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:44,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:44,653 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 1572864}
2022-05-12 22:23:44,654 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,890 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:44,890 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:44,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:44,891 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9437184}
2022-05-12 22:23:44,891 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:45,354 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68157440}) to executor  for transfer request: 0.
2022-05-12 22:23:45,354 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:45,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) about to wait for the following futures []
2022-05-12 22:23:45,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) done waiting for dependent futures
2022-05-12 22:23:45,355 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68157440}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 68157440}
2022-05-12 22:23:45,355 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:47,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35127296}) to executor  for transfer request: 0.
2022-05-12 22:23:47,921 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:47,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) about to wait for the following futures []
2022-05-12 22:23:47,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) done waiting for dependent futures
2022-05-12 22:23:47,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35127296}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 35127296}
2022-05-12 22:23:47,922 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:49,155 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51904512}) to executor  for transfer request: 0.
2022-05-12 22:23:49,155 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:49,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) about to wait for the following futures []
2022-05-12 22:23:49,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) done waiting for dependent futures
2022-05-12 22:23:49,156 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51904512}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 51904512}
2022-05-12 22:23:49,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:49,272 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:23:49,272 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:49,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:23:49,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:23:49,273 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 10485760}
2022-05-12 22:23:49,273 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,499 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:23:50,499 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:23:50,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:23:50,500 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 2097152}
2022-05-12 22:23:50,500 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,559 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42991616}) to executor  for transfer request: 0.
2022-05-12 22:23:50,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) about to wait for the following futures []
2022-05-12 22:23:50,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) done waiting for dependent futures
2022-05-12 22:23:50,560 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42991616}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 42991616}
2022-05-12 22:23:50,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:51,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:51,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:51,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:51,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:51,927 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 9437184}
2022-05-12 22:23:51,927 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:53,819 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:53,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:53,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:53,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:53,820 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 18350080}
2022-05-12 22:23:53,820 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:54,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68419584}) to executor  for transfer request: 0.
2022-05-12 22:23:54,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:54,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) about to wait for the following futures []
2022-05-12 22:23:54,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) done waiting for dependent futures
2022-05-12 22:23:54,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68419584}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 68419584}
2022-05-12 22:23:54,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,854 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:23:55,854 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:23:55,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:23:55,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 26738688}
2022-05-12 22:23:55,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:56,499 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:23:56,499 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:56,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:23:56,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:23:56,500 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 26738688}
2022-05-12 22:23:56,500 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:56,937 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:56,938 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:56,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:56,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:56,938 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 26214400}
2022-05-12 22:23:56,939 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:57,072 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:57,072 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:57,072 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:57,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:57,073 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 18087936}
2022-05-12 22:23:57,073 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:57,550 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:57,550 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:57,550 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:57,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:57,551 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 17825792}
2022-05-12 22:23:57,551 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,215 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:58,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:58,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:58,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 1835008}
2022-05-12 22:23:58,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:58,758 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:58,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:58,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 1572864}
2022-05-12 22:23:58,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:00,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35389440}) to executor  for transfer request: 0.
2022-05-12 22:24:00,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:00,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) about to wait for the following futures []
2022-05-12 22:24:00,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) done waiting for dependent futures
2022-05-12 22:24:00,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35389440}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 35389440}
2022-05-12 22:24:00,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:01,211 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43253760}) to executor  for transfer request: 0.
2022-05-12 22:24:01,211 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:01,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) about to wait for the following futures []
2022-05-12 22:24:01,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) done waiting for dependent futures
2022-05-12 22:24:01,212 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43253760}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 43253760}
2022-05-12 22:24:01,212 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:01,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:24:01,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:01,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:24:01,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:24:01,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 9437184}
2022-05-12 22:24:01,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:03,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59506688}) to executor  for transfer request: 0.
2022-05-12 22:24:03,395 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:03,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) about to wait for the following futures []
2022-05-12 22:24:03,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) done waiting for dependent futures
2022-05-12 22:24:03,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59506688}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 59506688}
2022-05-12 22:24:03,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:03,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:03,792 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:03,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:03,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:03,792 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 10747904}
2022-05-12 22:24:03,793 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:06,522 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:24:06,523 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:06,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:24:06,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:24:06,523 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 25952256}
2022-05-12 22:24:06,523 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:06,652 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:24:06,652 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:06,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:24:06,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:24:06,653 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 27000832}
2022-05-12 22:24:06,653 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:07,344 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:24:07,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:07,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:24:07,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:24:07,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 18612224}
2022-05-12 22:24:07,345 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:07,860 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:07,860 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:07,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:07,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:07,861 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 2359296}
2022-05-12 22:24:07,861 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:08,382 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52166656}) to executor  for transfer request: 0.
2022-05-12 22:24:08,382 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:08,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) about to wait for the following futures []
2022-05-12 22:24:08,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) done waiting for dependent futures
2022-05-12 22:24:08,383 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52166656}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 52166656}
2022-05-12 22:24:08,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:24:09,132 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:24:09,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:24:09,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 1835008}
2022-05-12 22:24:09,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,351 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68681728}) to executor  for transfer request: 0.
2022-05-12 22:24:09,351 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) about to wait for the following futures []
2022-05-12 22:24:09,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) done waiting for dependent futures
2022-05-12 22:24:09,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68681728}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 68681728}
2022-05-12 22:24:09,352 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:11,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:24:11,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:11,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:24:11,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:24:11,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 18087936}
2022-05-12 22:24:11,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:11,680 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:11,680 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:11,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:11,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:11,681 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 2097152}
2022-05-12 22:24:11,681 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:24:12,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:24:12,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:24:12,515 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 18350080}
2022-05-12 22:24:12,516 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,703 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:24:12,703 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:24:12,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:24:12,704 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 1835008}
2022-05-12 22:24:12,705 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35651584}) to executor  for transfer request: 0.
2022-05-12 22:24:12,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) about to wait for the following futures []
2022-05-12 22:24:12,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) done waiting for dependent futures
2022-05-12 22:24:12,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35651584}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 35651584}
2022-05-12 22:24:12,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:24:13,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:24:13,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:24:13,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 27000832}
2022-05-12 22:24:13,694 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:16,072 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:24:16,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:16,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:24:16,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:24:16,073 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 26476544}
2022-05-12 22:24:16,074 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:17,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43515904}) to executor  for transfer request: 0.
2022-05-12 22:24:17,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:17,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) about to wait for the following futures []
2022-05-12 22:24:17,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) done waiting for dependent futures
2022-05-12 22:24:17,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43515904}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 43515904}
2022-05-12 22:24:17,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:18,361 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:18,361 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:18,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:18,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:18,362 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 11010048}
2022-05-12 22:24:18,362 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:18,865 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76283904}) to executor  for transfer request: 0.
2022-05-12 22:24:18,865 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:18,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) about to wait for the following futures []
2022-05-12 22:24:18,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) done waiting for dependent futures
2022-05-12 22:24:18,866 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76283904}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 76283904}
2022-05-12 22:24:18,867 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,415 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:20,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:20,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:20,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 2621440}
2022-05-12 22:24:20,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:22,197 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:22,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:22,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:22,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:22,198 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 2359296}
2022-05-12 22:24:22,198 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:22,441 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52428800}) to executor  for transfer request: 0.
2022-05-12 22:24:22,441 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:22,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) about to wait for the following futures []
2022-05-12 22:24:22,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) done waiting for dependent futures
2022-05-12 22:24:22,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52428800}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 52428800}
2022-05-12 22:24:22,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:22,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35913728}) to executor  for transfer request: 0.
2022-05-12 22:24:22,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:22,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) about to wait for the following futures []
2022-05-12 22:24:22,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) done waiting for dependent futures
2022-05-12 22:24:22,709 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35913728}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 35913728}
2022-05-12 22:24:22,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:23,582 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68943872}) to executor  for transfer request: 0.
2022-05-12 22:24:23,582 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:23,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) about to wait for the following futures []
2022-05-12 22:24:23,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) done waiting for dependent futures
2022-05-12 22:24:23,582 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68943872}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 68943872}
2022-05-12 22:24:23,583 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,007 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:24:24,007 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:24:24,008 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:24:24,008 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9699328}
2022-05-12 22:24:24,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:24:24,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:24:24,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:24:24,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 27262976}
2022-05-12 22:24:24,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:25,106 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:25,106 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:25,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:25,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:25,107 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 18874368}
2022-05-12 22:24:25,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:25,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:24:25,758 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:25,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:24:25,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:24:25,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 18612224}
2022-05-12 22:24:25,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:24:26,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:24:26,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:24:26,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 18350080}
2022-05-12 22:24:26,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:26,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:26,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:26,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 2097152}
2022-05-12 22:24:26,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:27,573 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:24:27,573 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:27,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:24:27,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:24:27,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 27262976}
2022-05-12 22:24:27,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59768832}) to executor  for transfer request: 0.
2022-05-12 22:24:28,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) about to wait for the following futures []
2022-05-12 22:24:28,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) done waiting for dependent futures
2022-05-12 22:24:28,849 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59768832}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 59768832}
2022-05-12 22:24:28,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:24:30,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:24:30,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:24:30,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 11272192}
2022-05-12 22:24:30,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:31,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69206016}) to executor  for transfer request: 0.
2022-05-12 22:24:31,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:31,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) about to wait for the following futures []
2022-05-12 22:24:31,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) done waiting for dependent futures
2022-05-12 22:24:31,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69206016}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 69206016}
2022-05-12 22:24:31,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:32,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:32,318 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:32,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:32,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:32,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 2097152}
2022-05-12 22:24:32,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:34,255 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43778048}) to executor  for transfer request: 0.
2022-05-12 22:24:34,255 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:34,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) about to wait for the following futures []
2022-05-12 22:24:34,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) done waiting for dependent futures
2022-05-12 22:24:34,255 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43778048}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 43778048}
2022-05-12 22:24:34,256 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:35,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:35,154 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:35,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:35,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:35,155 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 2621440}
2022-05-12 22:24:35,155 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:35,904 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52690944}) to executor  for transfer request: 0.
2022-05-12 22:24:35,904 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:35,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) about to wait for the following futures []
2022-05-12 22:24:35,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) done waiting for dependent futures
2022-05-12 22:24:35,905 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52690944}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 52690944}
2022-05-12 22:24:35,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:35,931 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:24:35,932 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:35,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:24:35,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:24:35,932 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 9699328}
2022-05-12 22:24:35,932 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,118 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36175872}) to executor  for transfer request: 0.
2022-05-12 22:24:36,119 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,119 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) about to wait for the following futures []
2022-05-12 22:24:36,119 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) done waiting for dependent futures
2022-05-12 22:24:36,120 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36175872}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 36175872}
2022-05-12 22:24:36,120 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:24:36,150 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:24:36,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:24:36,151 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 27525120}
2022-05-12 22:24:36,151 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:24:36,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:24:36,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:24:36,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 2883584}
2022-05-12 22:24:36,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:37,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:24:37,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:37,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:24:37,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:24:37,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 26738688}
2022-05-12 22:24:37,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:38,039 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:38,039 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:38,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:38,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:38,040 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 19136512}
2022-05-12 22:24:38,040 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:38,626 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:38,626 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:38,627 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:38,627 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:38,627 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 18874368}
2022-05-12 22:24:38,627 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:40,207 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:40,207 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:40,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:40,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:40,208 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 2359296}
2022-05-12 22:24:40,208 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:40,664 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:24:40,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:40,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:24:40,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:24:40,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 11534336}
2022-05-12 22:24:40,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:41,428 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:24:41,429 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:41,429 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:24:41,429 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:24:41,429 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 27525120}
2022-05-12 22:24:41,430 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:44,664 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36438016}) to executor  for transfer request: 0.
2022-05-12 22:24:44,664 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:44,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) about to wait for the following futures []
2022-05-12 22:24:44,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) done waiting for dependent futures
2022-05-12 22:24:44,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36438016}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 36438016}
2022-05-12 22:24:44,665 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:44,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69468160}) to executor  for transfer request: 0.
2022-05-12 22:24:44,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:44,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) about to wait for the following futures []
2022-05-12 22:24:44,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) done waiting for dependent futures
2022-05-12 22:24:44,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69468160}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 69468160}
2022-05-12 22:24:44,854 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:46,591 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:24:46,591 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:46,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:24:46,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:24:46,591 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 27787264}
2022-05-12 22:24:46,592 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:46,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:46,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:46,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:46,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:46,767 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 2359296}
2022-05-12 22:24:46,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:47,703 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44040192}) to executor  for transfer request: 0.
2022-05-12 22:24:47,703 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:47,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) about to wait for the following futures []
2022-05-12 22:24:47,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) done waiting for dependent futures
2022-05-12 22:24:47,704 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44040192}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 44040192}
2022-05-12 22:24:47,704 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:47,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52953088}) to executor  for transfer request: 0.
2022-05-12 22:24:47,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:47,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) about to wait for the following futures []
2022-05-12 22:24:47,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) done waiting for dependent futures
2022-05-12 22:24:47,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52953088}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 52953088}
2022-05-12 22:24:47,722 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:24:47,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:47,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:47,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:24:47,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:24:47,724 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 2883584}
2022-05-12 22:24:47,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:48,825 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:24:48,826 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:48,826 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:24:48,826 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:24:48,826 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 9699328}
2022-05-12 22:24:48,826 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:49,432 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:24:49,432 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:49,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:24:49,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:24:49,433 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 3145728}
2022-05-12 22:24:49,434 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:50,783 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:50,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:50,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:50,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:50,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 19136512}
2022-05-12 22:24:50,784 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,862 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:52,862 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:52,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:52,863 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 2621440}
2022-05-12 22:24:52,863 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,204 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:24:53,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:24:53,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:24:53,205 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 11796480}
2022-05-12 22:24:53,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:54,097 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:54,097 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:54,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:54,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:54,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 19398656}
2022-05-12 22:24:54,098 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:54,710 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:24:54,710 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:54,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:24:54,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:24:54,711 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 27787264}
2022-05-12 22:24:54,711 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:55,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36700160}) to executor  for transfer request: 0.
2022-05-12 22:24:55,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:55,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) about to wait for the following futures []
2022-05-12 22:24:55,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) done waiting for dependent futures
2022-05-12 22:24:55,909 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36700160}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 36700160}
2022-05-12 22:24:55,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:56,169 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69730304}) to executor  for transfer request: 0.
2022-05-12 22:24:56,170 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:56,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) about to wait for the following futures []
2022-05-12 22:24:56,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) done waiting for dependent futures
2022-05-12 22:24:56,170 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69730304}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 69730304}
2022-05-12 22:24:56,171 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:56,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:24:56,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:56,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:24:56,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:24:56,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 27000832}
2022-05-12 22:24:56,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:56,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:24:56,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:56,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:24:56,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:24:56,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 18612224}
2022-05-12 22:24:56,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53215232}) to executor  for transfer request: 0.
2022-05-12 22:24:58,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) about to wait for the following futures []
2022-05-12 22:24:58,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) done waiting for dependent futures
2022-05-12 22:24:58,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53215232}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 53215232}
2022-05-12 22:24:58,268 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,879 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:58,880 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:58,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:58,880 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 2621440}
2022-05-12 22:24:58,881 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:00,421 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:25:00,421 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:00,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:25:00,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:25:00,422 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 28049408}
2022-05-12 22:25:00,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:01,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:25:01,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:01,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:25:01,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:25:01,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 3145728}
2022-05-12 22:25:01,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,839 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60030976}) to executor  for transfer request: 0.
2022-05-12 22:25:02,839 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) about to wait for the following futures []
2022-05-12 22:25:02,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) done waiting for dependent futures
2022-05-12 22:25:02,840 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60030976}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 60030976}
2022-05-12 22:25:02,840 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:03,169 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:03,169 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:03,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:03,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:03,170 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 12058624}
2022-05-12 22:25:03,170 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:05,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:25:05,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:05,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:25:05,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:25:05,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 2883584}
2022-05-12 22:25:05,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:06,207 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:25:06,207 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:06,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:25:06,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:25:06,207 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 19398656}
2022-05-12 22:25:06,208 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:06,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:06,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:06,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:06,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:06,393 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 3407872}
2022-05-12 22:25:06,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:06,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69992448}) to executor  for transfer request: 0.
2022-05-12 22:25:06,637 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:06,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) about to wait for the following futures []
2022-05-12 22:25:06,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) done waiting for dependent futures
2022-05-12 22:25:06,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69992448}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 69992448}
2022-05-12 22:25:06,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:06,709 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:25:06,709 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:06,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:25:06,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:25:06,710 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 19660800}
2022-05-12 22:25:06,711 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:07,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44302336}) to executor  for transfer request: 0.
2022-05-12 22:25:07,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:07,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) about to wait for the following futures []
2022-05-12 22:25:07,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) done waiting for dependent futures
2022-05-12 22:25:07,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44302336}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 44302336}
2022-05-12 22:25:07,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:07,182 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36962304}) to executor  for transfer request: 0.
2022-05-12 22:25:07,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:07,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) about to wait for the following futures []
2022-05-12 22:25:07,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) done waiting for dependent futures
2022-05-12 22:25:07,183 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36962304}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 36962304}
2022-05-12 22:25:07,184 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:08,262 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:25:08,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:08,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:25:08,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:25:08,262 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 28049408}
2022-05-12 22:25:08,263 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,279 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:25:09,279 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:25:09,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:25:09,280 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 18874368}
2022-05-12 22:25:09,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:10,280 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:25:10,280 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:10,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:25:10,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:25:10,281 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 26214400}
2022-05-12 22:25:10,282 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:10,324 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53477376}) to executor  for transfer request: 0.
2022-05-12 22:25:10,324 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:10,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) about to wait for the following futures []
2022-05-12 22:25:10,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) done waiting for dependent futures
2022-05-12 22:25:10,324 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53477376}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 53477376}
2022-05-12 22:25:10,324 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:11,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:25:11,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:11,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:25:11,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:25:11,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 28311552}
2022-05-12 22:25:11,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,456 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76546048}) to executor  for transfer request: 0.
2022-05-12 22:25:12,456 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) about to wait for the following futures []
2022-05-12 22:25:12,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) done waiting for dependent futures
2022-05-12 22:25:12,457 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76546048}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 76546048}
2022-05-12 22:25:12,457 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,579 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:12,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:12,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:12,580 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 3407872}
2022-05-12 22:25:12,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:14,087 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:25:14,088 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:14,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:25:14,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:25:14,088 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 2883584}
2022-05-12 22:25:14,089 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:14,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:14,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:14,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:14,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:14,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 12320768}
2022-05-12 22:25:14,746 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:16,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37224448}) to executor  for transfer request: 0.
2022-05-12 22:25:16,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:16,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) about to wait for the following futures []
2022-05-12 22:25:16,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) done waiting for dependent futures
2022-05-12 22:25:16,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37224448}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 37224448}
2022-05-12 22:25:16,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,272 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:25:18,272 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:25:18,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:25:18,273 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 28311552}
2022-05-12 22:25:18,273 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,406 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:25:18,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:25:18,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:25:18,407 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 27262976}
2022-05-12 22:25:18,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:25:18,990 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:25:18,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:25:18,991 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 19660800}
2022-05-12 22:25:18,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:20,180 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:25:20,180 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:20,181 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:25:20,181 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:25:20,181 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 28573696}
2022-05-12 22:25:20,181 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:20,871 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70254592}) to executor  for transfer request: 0.
2022-05-12 22:25:20,871 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:20,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) about to wait for the following futures []
2022-05-12 22:25:20,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) done waiting for dependent futures
2022-05-12 22:25:20,871 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70254592}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 70254592}
2022-05-12 22:25:20,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:20,871 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:25:20,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:20,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:25:20,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:25:20,872 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9961472}
2022-05-12 22:25:20,872 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:22,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:25:22,024 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:22,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:25:22,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:25:22,024 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 3145728}
2022-05-12 22:25:22,025 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:22,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44564480}) to executor  for transfer request: 0.
2022-05-12 22:25:22,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:22,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) about to wait for the following futures []
2022-05-12 22:25:22,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) done waiting for dependent futures
2022-05-12 22:25:22,253 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44564480}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 44564480}
2022-05-12 22:25:22,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:22,331 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53739520}) to executor  for transfer request: 0.
2022-05-12 22:25:22,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:22,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) about to wait for the following futures []
2022-05-12 22:25:22,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) done waiting for dependent futures
2022-05-12 22:25:22,332 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53739520}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 53739520}
2022-05-12 22:25:22,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,327 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:24,327 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:24,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:24,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 12582912}
2022-05-12 22:25:24,328 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37486592}) to executor  for transfer request: 0.
2022-05-12 22:25:24,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) about to wait for the following futures []
2022-05-12 22:25:24,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) done waiting for dependent futures
2022-05-12 22:25:24,389 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37486592}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 37486592}
2022-05-12 22:25:24,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:25:24,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:25:24,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:25:24,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 3670016}
2022-05-12 22:25:24,543 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,801 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:25:24,801 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:25:24,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:25:24,802 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 3670016}
2022-05-12 22:25:24,802 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:25,075 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:25:25,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:25,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:25:25,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:25:25,076 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 19922944}
2022-05-12 22:25:25,076 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:27,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:25:27,315 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:27,315 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:25:27,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:25:27,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 19136512}
2022-05-12 22:25:27,316 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:27,713 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60293120}) to executor  for transfer request: 0.
2022-05-12 22:25:27,713 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:27,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) about to wait for the following futures []
2022-05-12 22:25:27,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) done waiting for dependent futures
2022-05-12 22:25:27,714 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60293120}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 60293120}
2022-05-12 22:25:27,714 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:28,850 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:25:28,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:28,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:25:28,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:25:28,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 3145728}
2022-05-12 22:25:28,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:31,032 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:25:31,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:31,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:25:31,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:25:31,032 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 28835840}
2022-05-12 22:25:31,033 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:31,119 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:25:31,119 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:31,120 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:25:31,120 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:25:31,120 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 19922944}
2022-05-12 22:25:31,120 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:31,567 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:25:31,567 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:31,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:25:31,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:25:31,567 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 28573696}
2022-05-12 22:25:31,568 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:33,347 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:25:33,347 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:33,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:25:33,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:25:33,348 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 27525120}
2022-05-12 22:25:33,348 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:34,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70516736}) to executor  for transfer request: 0.
2022-05-12 22:25:34,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:34,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) about to wait for the following futures []
2022-05-12 22:25:34,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) done waiting for dependent futures
2022-05-12 22:25:34,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70516736}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 70516736}
2022-05-12 22:25:34,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:34,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:25:34,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:34,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:25:34,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:25:34,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 3932160}
2022-05-12 22:25:34,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:34,955 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37748736}) to executor  for transfer request: 0.
2022-05-12 22:25:34,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:34,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) about to wait for the following futures []
2022-05-12 22:25:34,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) done waiting for dependent futures
2022-05-12 22:25:34,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37748736}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 37748736}
2022-05-12 22:25:34,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:35,456 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:25:35,456 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:35,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:25:35,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:25:35,457 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 12845056}
2022-05-12 22:25:35,457 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:35,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:35,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:35,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:35,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:35,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 3407872}
2022-05-12 22:25:35,694 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,114 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44826624}) to executor  for transfer request: 0.
2022-05-12 22:25:36,114 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) about to wait for the following futures []
2022-05-12 22:25:36,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) done waiting for dependent futures
2022-05-12 22:25:36,115 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44826624}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 44826624}
2022-05-12 22:25:36,115 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:37,645 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:25:37,645 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:37,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:25:37,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:25:37,646 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 29097984}
2022-05-12 22:25:37,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:25:37,646 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:37,646 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:37,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:25:37,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:25:37,647 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 9961472}
2022-05-12 22:25:37,647 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:39,863 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:25:39,863 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:39,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:25:39,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:25:39,864 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 20185088}
2022-05-12 22:25:39,864 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:41,737 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:25:41,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:41,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:25:41,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:25:41,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 20185088}
2022-05-12 22:25:41,738 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:42,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54001664}) to executor  for transfer request: 0.
2022-05-12 22:25:42,302 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:42,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) about to wait for the following futures []
2022-05-12 22:25:42,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) done waiting for dependent futures
2022-05-12 22:25:42,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54001664}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 54001664}
2022-05-12 22:25:42,303 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:42,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:25:42,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:42,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:25:42,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:25:42,417 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 19398656}
2022-05-12 22:25:42,418 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:42,751 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38010880}) to executor  for transfer request: 0.
2022-05-12 22:25:42,752 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:42,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) about to wait for the following futures []
2022-05-12 22:25:42,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) done waiting for dependent futures
2022-05-12 22:25:42,752 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38010880}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 38010880}
2022-05-12 22:25:42,753 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:42,824 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:42,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:42,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:42,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:42,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 3407872}
2022-05-12 22:25:42,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,185 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:25:44,185 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:25:44,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:25:44,186 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 3932160}
2022-05-12 22:25:44,186 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70778880}) to executor  for transfer request: 0.
2022-05-12 22:25:44,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) about to wait for the following futures []
2022-05-12 22:25:44,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) done waiting for dependent futures
2022-05-12 22:25:44,784 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70778880}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 70778880}
2022-05-12 22:25:44,784 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:46,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:25:46,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:46,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:25:46,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:25:46,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 10223616}
2022-05-12 22:25:46,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:46,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:25:46,702 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:46,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:25:46,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:25:46,703 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 28835840}
2022-05-12 22:25:46,703 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,080 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:25:50,080 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:25:50,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:25:50,081 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 29360128}
2022-05-12 22:25:50,081 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,320 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:25:50,320 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:25:50,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:25:50,321 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 4194304}
2022-05-12 22:25:50,321 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,973 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:25:50,973 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:25:50,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:25:50,973 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 27787264}
2022-05-12 22:25:50,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:51,839 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:25:51,839 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:51,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:25:51,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:25:51,840 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 13107200}
2022-05-12 22:25:51,840 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:52,429 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45088768}) to executor  for transfer request: 0.
2022-05-12 22:25:52,429 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:52,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) about to wait for the following futures []
2022-05-12 22:25:52,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) done waiting for dependent futures
2022-05-12 22:25:52,430 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45088768}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 45088768}
2022-05-12 22:25:52,430 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:52,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:52,685 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:52,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:52,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:52,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 20447232}
2022-05-12 22:25:52,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:53,263 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:53,263 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:53,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:53,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:53,264 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 20447232}
2022-05-12 22:25:53,264 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:53,622 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60555264}) to executor  for transfer request: 0.
2022-05-12 22:25:53,622 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:53,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) about to wait for the following futures []
2022-05-12 22:25:53,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) done waiting for dependent futures
2022-05-12 22:25:53,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60555264}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 60555264}
2022-05-12 22:25:53,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:53,755 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38273024}) to executor  for transfer request: 0.
2022-05-12 22:25:53,755 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:53,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) about to wait for the following futures []
2022-05-12 22:25:53,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) done waiting for dependent futures
2022-05-12 22:25:53,755 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38273024}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 38273024}
2022-05-12 22:25:53,755 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:54,104 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:25:54,104 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:54,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:25:54,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:25:54,105 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 3670016}
2022-05-12 22:25:54,105 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:55,900 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71041024}) to executor  for transfer request: 0.
2022-05-12 22:25:55,900 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:55,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) about to wait for the following futures []
2022-05-12 22:25:55,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) done waiting for dependent futures
2022-05-12 22:25:55,900 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71041024}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 71041024}
2022-05-12 22:25:55,901 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:56,107 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54263808}) to executor  for transfer request: 0.
2022-05-12 22:25:56,107 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:56,108 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) about to wait for the following futures []
2022-05-12 22:25:56,108 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) done waiting for dependent futures
2022-05-12 22:25:56,108 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54263808}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 54263808}
2022-05-12 22:25:56,109 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:58,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:25:58,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:58,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:25:58,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:25:58,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 29097984}
2022-05-12 22:25:58,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:58,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:25:58,621 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:58,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:25:58,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:25:58,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 3670016}
2022-05-12 22:25:58,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:58,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:25:58,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:58,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:25:58,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:25:58,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 4194304}
2022-05-12 22:25:58,887 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:59,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:25:59,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:59,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:25:59,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:25:59,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 29622272}
2022-05-12 22:25:59,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:59,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:25:59,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:59,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:25:59,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:25:59,908 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 9961472}
2022-05-12 22:25:59,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:00,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:26:00,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:00,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:26:00,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:26:00,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 19660800}
2022-05-12 22:26:00,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:00,333 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:26:00,333 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:00,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:26:00,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:26:00,334 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 4456448}
2022-05-12 22:26:00,334 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:01,264 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38535168}) to executor  for transfer request: 0.
2022-05-12 22:26:01,264 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:01,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) about to wait for the following futures []
2022-05-12 22:26:01,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) done waiting for dependent futures
2022-05-12 22:26:01,265 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38535168}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 38535168}
2022-05-12 22:26:01,265 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:02,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54525952}) to executor  for transfer request: 0.
2022-05-12 22:26:02,702 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:02,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) about to wait for the following futures []
2022-05-12 22:26:02,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) done waiting for dependent futures
2022-05-12 22:26:02,702 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54525952}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 54525952}
2022-05-12 22:26:02,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,081 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45350912}) to executor  for transfer request: 0.
2022-05-12 22:26:04,082 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) about to wait for the following futures []
2022-05-12 22:26:04,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) done waiting for dependent futures
2022-05-12 22:26:04,082 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45350912}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 45350912}
2022-05-12 22:26:04,082 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:05,704 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:05,705 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:05,705 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:05,705 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:05,705 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 13369344}
2022-05-12 22:26:05,706 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:06,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71303168}) to executor  for transfer request: 0.
2022-05-12 22:26:06,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:06,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) about to wait for the following futures []
2022-05-12 22:26:06,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) done waiting for dependent futures
2022-05-12 22:26:06,269 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71303168}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 71303168}
2022-05-12 22:26:06,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:07,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:26:07,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:07,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:26:07,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:26:07,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 28049408}
2022-05-12 22:26:07,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:07,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:26:07,208 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:07,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:26:07,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:26:07,208 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 20709376}
2022-05-12 22:26:07,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:07,791 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:26:07,791 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:07,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:26:07,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:26:07,792 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 3932160}
2022-05-12 22:26:07,792 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:07,991 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:26:07,991 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:07,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:26:07,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:26:07,991 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 20709376}
2022-05-12 22:26:07,992 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,217 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:26:08,218 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:26:08,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:26:08,218 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 29884416}
2022-05-12 22:26:08,219 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,313 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60817408}) to executor  for transfer request: 0.
2022-05-12 22:26:08,314 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) about to wait for the following futures []
2022-05-12 22:26:08,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) done waiting for dependent futures
2022-05-12 22:26:08,314 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60817408}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 60817408}
2022-05-12 22:26:08,315 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38797312}) to executor  for transfer request: 0.
2022-05-12 22:26:09,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) about to wait for the following futures []
2022-05-12 22:26:09,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) done waiting for dependent futures
2022-05-12 22:26:09,248 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38797312}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 38797312}
2022-05-12 22:26:09,248 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,490 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:09,490 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:09,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:09,491 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 4718592}
2022-05-12 22:26:09,491 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:26:10,365 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:10,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:26:10,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:26:10,366 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 29360128}
2022-05-12 22:26:10,367 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:26:10,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:10,730 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:26:10,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:26:10,730 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 30146560}
2022-05-12 22:26:10,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:11,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:26:11,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:11,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:26:11,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:26:11,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 3932160}
2022-05-12 22:26:11,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:11,567 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:26:11,567 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:11,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:26:11,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:26:11,567 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 4456448}
2022-05-12 22:26:11,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:16,218 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71565312}) to executor  for transfer request: 0.
2022-05-12 22:26:16,219 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:16,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) about to wait for the following futures []
2022-05-12 22:26:16,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) done waiting for dependent futures
2022-05-12 22:26:16,219 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71565312}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 71565312}
2022-05-12 22:26:16,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:17,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45613056}) to executor  for transfer request: 0.
2022-05-12 22:26:17,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:17,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) about to wait for the following futures []
2022-05-12 22:26:17,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) done waiting for dependent futures
2022-05-12 22:26:17,463 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45613056}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 45613056}
2022-05-12 22:26:17,463 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:18,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:18,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:18,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:18,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:18,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 13631488}
2022-05-12 22:26:18,679 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:19,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54788096}) to executor  for transfer request: 0.
2022-05-12 22:26:19,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:19,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) about to wait for the following futures []
2022-05-12 22:26:19,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) done waiting for dependent futures
2022-05-12 22:26:19,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54788096}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 54788096}
2022-05-12 22:26:19,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:19,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:26:19,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:19,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:26:19,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:26:19,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 19922944}
2022-05-12 22:26:19,102 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:26:20,132 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:26:20,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:26:20,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 4980736}
2022-05-12 22:26:20,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,352 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:26:20,353 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:26:20,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:26:20,353 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 4194304}
2022-05-12 22:26:20,354 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:22,106 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:26:22,107 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:22,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:26:22,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:26:22,107 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 29622272}
2022-05-12 22:26:22,108 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:22,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39059456}) to executor  for transfer request: 0.
2022-05-12 22:26:22,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:22,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) about to wait for the following futures []
2022-05-12 22:26:22,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) done waiting for dependent futures
2022-05-12 22:26:22,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39059456}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 39059456}
2022-05-12 22:26:22,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:23,187 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:26:23,187 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:23,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:26:23,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:26:23,188 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 4194304}
2022-05-12 22:26:23,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:24,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:26:24,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:24,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:26:24,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:26:24,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 20971520}
2022-05-12 22:26:24,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:25,464 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76808192}) to executor  for transfer request: 0.
2022-05-12 22:26:25,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:25,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) about to wait for the following futures []
2022-05-12 22:26:25,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) done waiting for dependent futures
2022-05-12 22:26:25,465 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76808192}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 76808192}
2022-05-12 22:26:25,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:26,774 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:26,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:26,775 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:26,775 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:26,775 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 4718592}
2022-05-12 22:26:26,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:26:27,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:26:27,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:26:27,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 20971520}
2022-05-12 22:26:27,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71827456}) to executor  for transfer request: 0.
2022-05-12 22:26:27,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) about to wait for the following futures []
2022-05-12 22:26:27,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) done waiting for dependent futures
2022-05-12 22:26:27,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71827456}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 71827456}
2022-05-12 22:26:27,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:28,503 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:28,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:28,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:28,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:28,504 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 13893632}
2022-05-12 22:26:28,504 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:26:30,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:26:30,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:26:30,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 28311552}
2022-05-12 22:26:30,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,112 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45875200}) to executor  for transfer request: 0.
2022-05-12 22:26:31,112 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) about to wait for the following futures []
2022-05-12 22:26:31,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) done waiting for dependent futures
2022-05-12 22:26:31,113 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45875200}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 45875200}
2022-05-12 22:26:31,113 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,603 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39321600}) to executor  for transfer request: 0.
2022-05-12 22:26:31,604 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) about to wait for the following futures []
2022-05-12 22:26:31,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) done waiting for dependent futures
2022-05-12 22:26:31,604 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39321600}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 39321600}
2022-05-12 22:26:31,605 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,978 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55050240}) to executor  for transfer request: 0.
2022-05-12 22:26:31,979 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) about to wait for the following futures []
2022-05-12 22:26:31,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) done waiting for dependent futures
2022-05-12 22:26:31,979 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55050240}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 55050240}
2022-05-12 22:26:31,980 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:26:32,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:26:32,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:26:32,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 4456448}
2022-05-12 22:26:32,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,871 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:26:32,871 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:26:32,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:26:32,872 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 5242880}
2022-05-12 22:26:32,872 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:34,837 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:26:34,837 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:34,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:26:34,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:26:34,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 29884416}
2022-05-12 22:26:34,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:35,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:26:35,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:35,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:26:35,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:26:35,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 4456448}
2022-05-12 22:26:35,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:36,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61079552}) to executor  for transfer request: 0.
2022-05-12 22:26:36,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:36,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) about to wait for the following futures []
2022-05-12 22:26:36,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) done waiting for dependent futures
2022-05-12 22:26:36,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61079552}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 61079552}
2022-05-12 22:26:36,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:26:37,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:37,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:26:37,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:26:37,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 20185088}
2022-05-12 22:26:37,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:38,088 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:26:38,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:38,089 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:38,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:26:38,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:26:38,089 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 30146560}
2022-05-12 22:26:38,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:38,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:26:38,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:38,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:26:38,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:26:38,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 10223616}
2022-05-12 22:26:38,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,625 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:26:39,626 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:26:39,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:26:39,626 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 21233664}
2022-05-12 22:26:39,627 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,728 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72089600}) to executor  for transfer request: 0.
2022-05-12 22:26:39,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) about to wait for the following futures []
2022-05-12 22:26:39,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) done waiting for dependent futures
2022-05-12 22:26:39,729 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72089600}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 72089600}
2022-05-12 22:26:39,729 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,937 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39583744}) to executor  for transfer request: 0.
2022-05-12 22:26:39,937 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,937 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) about to wait for the following futures []
2022-05-12 22:26:39,937 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) done waiting for dependent futures
2022-05-12 22:26:39,938 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39583744}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 39583744}
2022-05-12 22:26:39,938 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,338 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:26:41,338 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:26:41,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:26:41,338 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 14155776}
2022-05-12 22:26:41,339 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,675 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:26:41,676 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,676 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:26:41,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:26:41,677 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 4980736}
2022-05-12 22:26:41,677 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:44,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55312384}) to executor  for transfer request: 0.
2022-05-12 22:26:44,076 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:44,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) about to wait for the following futures []
2022-05-12 22:26:44,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) done waiting for dependent futures
2022-05-12 22:26:44,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55312384}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 55312384}
2022-05-12 22:26:44,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:45,334 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:26:45,334 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:45,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:26:45,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:26:45,335 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 5505024}
2022-05-12 22:26:45,336 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:47,142 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:47,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:47,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:47,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:47,143 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 4718592}
2022-05-12 22:26:47,144 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:47,457 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:47,457 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:47,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:47,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:47,458 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 4718592}
2022-05-12 22:26:47,458 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:48,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72351744}) to executor  for transfer request: 0.
2022-05-12 22:26:48,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:48,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) about to wait for the following futures []
2022-05-12 22:26:48,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) done waiting for dependent futures
2022-05-12 22:26:48,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72351744}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 72351744}
2022-05-12 22:26:48,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:49,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39845888}) to executor  for transfer request: 0.
2022-05-12 22:26:49,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:49,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) about to wait for the following futures []
2022-05-12 22:26:49,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) done waiting for dependent futures
2022-05-12 22:26:49,140 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39845888}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 39845888}
2022-05-12 22:26:49,141 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:51,191 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:26:51,191 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:51,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:26:51,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:26:51,192 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 5242880}
2022-05-12 22:26:51,192 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:51,533 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:26:51,534 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:51,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:26:51,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:26:51,534 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 21495808}
2022-05-12 22:26:51,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:51,762 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:26:51,762 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:51,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:26:51,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:26:51,763 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 21233664}
2022-05-12 22:26:51,763 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:51,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:26:51,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:51,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:26:51,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:26:51,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 28573696}
2022-05-12 22:26:51,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:52,595 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:26:52,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:52,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:26:52,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:26:52,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 14417920}
2022-05-12 22:26:52,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:53,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:26:53,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:53,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:26:53,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:26:53,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 16777216}
2022-05-12 22:26:53,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:53,290 s3transfer.download DEBUG    Retrying exception caught (Read timeout on endpoint URL: "None"), retrying request, (attempt 0 / 5)
Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 436, in _error_catcher
    yield
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 518, in read
    data = self._fp.read(amt) if not fp_closed else b""
  File "/usr/lib/python3.8/http/client.py", line 459, in read
    n = self.readinto(b)
  File "/usr/lib/python3.8/http/client.py", line 503, in readinto
    n = self.fp.readinto(b)
  File "/usr/lib/python3.8/socket.py", line 669, in readinto
    return self._sock.recv_into(b)
  File "/usr/lib/python3.8/ssl.py", line 1241, in recv_into
    return self.read(nbytes, buffer)
  File "/usr/lib/python3.8/ssl.py", line 1099, in read
    return self._sslobj.read(len, buffer)
socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 99, in read
    chunk = self._raw_stream.read(amt)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 540, in read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__
    self.gen.throw(type, value, traceback)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 441, in _error_catcher
    raise ReadTimeoutError(self._pool, None, "Read timed out.")
urllib3.exceptions.ReadTimeoutError: AWSHTTPSConnectionPool(host='plot-delineation.s3.eu-central-1.amazonaws.com', port=443): Read timed out.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 583, in _main
    for chunk in chunks:
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 728, in __next__
    chunk = self._body.read(self._chunksize)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/utils.py", line 599, in read
    value = self._stream.read(*args, **kwargs)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 102, in read
    raise ReadTimeoutError(endpoint_url=e.url, error=e)
botocore.exceptions.ReadTimeoutError: Read timeout on endpoint URL: "None"
2022-05-12 22:26:53,293 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:26:53,293 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:26:53,293 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:26:53,293 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:26:53,293 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:26:53,294 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:26:53,294 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:26:53,294 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:26:53,294 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:26:53,294 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:26:53,294 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:26:53,294 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:26:53,294 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:26:53,295 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:26:53,295 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:26:53,295 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:26:53,295 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:26:53,295 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:26:53,295 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/CLP.npy
2022-05-12 22:26:53,295 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:26:53,296 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222653Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:26:53,296 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222653Z
20220512/eu-central-1/s3/aws4_request
22c5eb6a438b3b7ec696a19e7e12f8b711ca3f8d11aab4fd62961702336a106c
2022-05-12 22:26:53,296 botocore.auth DEBUG    Signature:
3d1ac08dc7ec1d84331835ab9d0cab14183252a2c442ef06f584f2c8d0df438b
2022-05-12 22:26:53,296 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:26:53,296 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:26:53,296 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:26:53,297 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:26:53,297 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:26:53,525 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46137344}) to executor  for transfer request: 0.
2022-05-12 22:26:53,525 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:53,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) about to wait for the following futures []
2022-05-12 22:26:53,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) done waiting for dependent futures
2022-05-12 22:26:53,526 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46137344}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 46137344}
2022-05-12 22:26:53,526 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:54,275 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:26:54,276 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:54,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:26:54,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:26:54,276 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 20447232}
2022-05-12 22:26:54,277 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:54,677 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:26:54,678 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'DhFXvrdMTOX7uRRrbmbcQNK5nZhjSy0iAQhyTHB6wLVCbdHU/bI+Uj4uaEFuGANo/j5JPZyxZAA=', 'x-amz-request-id': 'C3WWQ6NNJDHWRDHZ', 'Date': 'Thu, 12 May 2022 22:26:55 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:27 GMT', 'ETag': '"665cd73a89ce4f97e412b101790e74a0-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:26:54,678 botocore.parsers DEBUG    Response body:

2022-05-12 22:26:54,679 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:26:54,679 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:26:54,679 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:26:55,785 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:26:55,785 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:55,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:26:55,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:26:55,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 5767168}
2022-05-12 22:26:55,786 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:57,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40108032}) to executor  for transfer request: 0.
2022-05-12 22:26:57,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:57,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) about to wait for the following futures []
2022-05-12 22:26:57,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) done waiting for dependent futures
2022-05-12 22:26:57,036 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40108032}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 40108032}
2022-05-12 22:26:57,036 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:57,418 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55574528}) to executor  for transfer request: 0.
2022-05-12 22:26:57,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:57,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) about to wait for the following futures []
2022-05-12 22:26:57,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) done waiting for dependent futures
2022-05-12 22:26:57,418 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55574528}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 55574528}
2022-05-12 22:26:57,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:59,593 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72613888}) to executor  for transfer request: 0.
2022-05-12 22:26:59,593 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:59,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) about to wait for the following futures []
2022-05-12 22:26:59,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) done waiting for dependent futures
2022-05-12 22:26:59,594 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72613888}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 72613888}
2022-05-12 22:26:59,594 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,891 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:27:01,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:27:01,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:27:01,892 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 4980736}
2022-05-12 22:27:01,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:02,879 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:27:02,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:02,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:27:02,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:27:02,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 4980736}
2022-05-12 22:27:02,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:03,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:27:03,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:03,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:27:03,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:27:03,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 8388608}
2022-05-12 22:27:03,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:05,845 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:27:05,846 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:05,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:27:05,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:27:05,846 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 5505024}
2022-05-12 22:27:05,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:05,863 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:27:05,863 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:05,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:27:05,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:27:05,863 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 14680064}
2022-05-12 22:27:05,864 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:05,905 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:27:05,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:05,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:27:05,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:27:05,906 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 10223616}
2022-05-12 22:27:05,906 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:06,065 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:27:06,066 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:06,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:27:06,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:27:06,066 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 21757952}
2022-05-12 22:27:06,067 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:08,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40370176}) to executor  for transfer request: 0.
2022-05-12 22:27:08,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:08,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) about to wait for the following futures []
2022-05-12 22:27:08,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) done waiting for dependent futures
2022-05-12 22:27:08,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40370176}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 40370176}
2022-05-12 22:27:08,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:09,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:27:09,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:09,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:27:09,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:27:09,576 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 6029312}
2022-05-12 22:27:09,576 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:09,882 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55836672}) to executor  for transfer request: 0.
2022-05-12 22:27:09,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:09,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) about to wait for the following futures []
2022-05-12 22:27:09,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) done waiting for dependent futures
2022-05-12 22:27:09,883 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55836672}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 55836672}
2022-05-12 22:27:09,883 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:09,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72876032}) to executor  for transfer request: 0.
2022-05-12 22:27:09,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:09,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) about to wait for the following futures []
2022-05-12 22:27:09,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) done waiting for dependent futures
2022-05-12 22:27:09,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72876032}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 72876032}
2022-05-12 22:27:09,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:12,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:27:12,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:12,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:27:12,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:27:12,163 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 26476544}
2022-05-12 22:27:12,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:12,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:27:12,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:12,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:27:12,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:27:12,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 8650752}
2022-05-12 22:27:12,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:27:13,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:27:13,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:27:13,102 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 20709376}
2022-05-12 22:27:13,103 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:27:13,221 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:27:13,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:27:13,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 28835840}
2022-05-12 22:27:13,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:27:13,981 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:27:13,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:27:13,982 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 17039360}
2022-05-12 22:27:13,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:15,210 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:27:15,210 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:15,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:27:15,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:27:15,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 5242880}
2022-05-12 22:27:15,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:15,342 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61341696}) to executor  for transfer request: 0.
2022-05-12 22:27:15,342 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:15,342 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) about to wait for the following futures []
2022-05-12 22:27:15,342 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) done waiting for dependent futures
2022-05-12 22:27:15,342 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61341696}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 61341696}
2022-05-12 22:27:15,342 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:27:16,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:27:16,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:27:16,807 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 14942208}
2022-05-12 22:27:16,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:27:17,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:27:17,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:27:17,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 21495808}
2022-05-12 22:27:17,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,767 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46399488}) to executor  for transfer request: 0.
2022-05-12 22:27:17,768 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,768 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) about to wait for the following futures []
2022-05-12 22:27:17,768 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) done waiting for dependent futures
2022-05-12 22:27:17,768 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46399488}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 46399488}
2022-05-12 22:27:17,769 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,941 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40632320}) to executor  for transfer request: 0.
2022-05-12 22:27:17,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) about to wait for the following futures []
2022-05-12 22:27:17,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) done waiting for dependent futures
2022-05-12 22:27:17,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40632320}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 40632320}
2022-05-12 22:27:17,942 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:18,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:27:18,380 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:18,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:27:18,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:27:18,381 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 6291456}
2022-05-12 22:27:18,381 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:18,536 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:27:18,536 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:18,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:27:18,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:27:18,536 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 5242880}
2022-05-12 22:27:18,537 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:19,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:27:19,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:19,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:27:19,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:27:19,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 22020096}
2022-05-12 22:27:19,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:20,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:27:20,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:20,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:27:20,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:27:20,414 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 5767168}
2022-05-12 22:27:20,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:21,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73138176}) to executor  for transfer request: 0.
2022-05-12 22:27:21,380 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:21,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) about to wait for the following futures []
2022-05-12 22:27:21,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) done waiting for dependent futures
2022-05-12 22:27:21,381 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73138176}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 73138176}
2022-05-12 22:27:21,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:23,625 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:27:23,625 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:23,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:27:23,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:27:23,625 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 8912896}
2022-05-12 22:27:23,626 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:23,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56098816}) to executor  for transfer request: 0.
2022-05-12 22:27:23,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:23,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) about to wait for the following futures []
2022-05-12 22:27:23,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) done waiting for dependent futures
2022-05-12 22:27:23,953 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56098816}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 56098816}
2022-05-12 22:27:23,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,874 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:27:24,875 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:24,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:27:24,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:27:24,875 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 6553600}
2022-05-12 22:27:24,875 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:27:25,163 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:27:25,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:27:25,163 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 15204352}
2022-05-12 22:27:25,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:26,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:27:26,324 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:26,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:27:26,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:27:26,324 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 5505024}
2022-05-12 22:27:26,324 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:26,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:27:26,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:26,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:27:26,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:27:26,463 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 5505024}
2022-05-12 22:27:26,463 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40894464}) to executor  for transfer request: 0.
2022-05-12 22:27:28,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) about to wait for the following futures []
2022-05-12 22:27:28,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) done waiting for dependent futures
2022-05-12 22:27:28,250 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40894464}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 40894464}
2022-05-12 22:27:28,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:32,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:27:32,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:32,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:27:32,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:27:32,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 6029312}
2022-05-12 22:27:32,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:27:34,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:27:34,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:27:34,048 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 29097984}
2022-05-12 22:27:34,048 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:27:34,110 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:27:34,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:27:34,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 15466496}
2022-05-12 22:27:34,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:27:34,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:27:34,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:27:34,179 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 6815744}
2022-05-12 22:27:34,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,280 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:27:34,280 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:27:34,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:27:34,280 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 22282240}
2022-05-12 22:27:34,281 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,745 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:27:34,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:27:34,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:27:34,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 20971520}
2022-05-12 22:27:34,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:35,618 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73400320}) to executor  for transfer request: 0.
2022-05-12 22:27:35,618 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:35,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) about to wait for the following futures []
2022-05-12 22:27:35,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) done waiting for dependent futures
2022-05-12 22:27:35,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73400320}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 73400320}
2022-05-12 22:27:35,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:36,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:27:36,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:36,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:27:36,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:27:36,069 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 17301504}
2022-05-12 22:27:36,069 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:36,264 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41156608}) to executor  for transfer request: 0.
2022-05-12 22:27:36,264 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:36,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) about to wait for the following futures []
2022-05-12 22:27:36,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) done waiting for dependent futures
2022-05-12 22:27:36,265 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41156608}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 41156608}
2022-05-12 22:27:36,265 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:36,812 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:27:36,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:36,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:27:36,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:27:36,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 5767168}
2022-05-12 22:27:36,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:27:37,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:27:37,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:27:37,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 5767168}
2022-05-12 22:27:37,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:39,856 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:27:39,857 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:39,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:27:39,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:27:39,857 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 21757952}
2022-05-12 22:27:39,857 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,626 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56360960}) to executor  for transfer request: 0.
2022-05-12 22:27:41,626 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,627 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) about to wait for the following futures []
2022-05-12 22:27:41,627 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) done waiting for dependent futures
2022-05-12 22:27:41,627 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56360960}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 56360960}
2022-05-12 22:27:41,628 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:42,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46661632}) to executor  for transfer request: 0.
2022-05-12 22:27:42,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:42,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) about to wait for the following futures []
2022-05-12 22:27:42,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) done waiting for dependent futures
2022-05-12 22:27:42,360 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46661632}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 46661632}
2022-05-12 22:27:42,360 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:44,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:27:44,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:44,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:27:44,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:27:44,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 7077888}
2022-05-12 22:27:44,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:27:45,132 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:45,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:27:45,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41418752}) to executor  for transfer request: 0.
2022-05-12 22:27:45,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:27:45,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:45,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 22544384}
2022-05-12 22:27:45,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) about to wait for the following futures []
2022-05-12 22:27:45,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) done waiting for dependent futures
2022-05-12 22:27:45,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41418752}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 41418752}
2022-05-12 22:27:45,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:46,200 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:27:46,200 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:46,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:27:46,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:27:46,201 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 26738688}
2022-05-12 22:27:46,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:46,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:27:46,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:46,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:27:46,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:27:46,948 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 15728640}
2022-05-12 22:27:46,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:47,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:27:47,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:47,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:27:47,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:27:47,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 6291456}
2022-05-12 22:27:47,266 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:47,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73662464}) to executor  for transfer request: 0.
2022-05-12 22:27:47,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:47,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) about to wait for the following futures []
2022-05-12 22:27:47,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) done waiting for dependent futures
2022-05-12 22:27:47,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73662464}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 73662464}
2022-05-12 22:27:47,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:48,367 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:27:48,367 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:48,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:27:48,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:27:48,368 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 6029312}
2022-05-12 22:27:48,368 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:51,420 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:27:51,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:51,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:27:51,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:27:51,421 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 21233664}
2022-05-12 22:27:51,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:52,200 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:27:52,200 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:52,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:27:52,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:27:52,201 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 6029312}
2022-05-12 22:27:52,201 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:54,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56623104}) to executor  for transfer request: 0.
2022-05-12 22:27:54,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:54,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) about to wait for the following futures []
2022-05-12 22:27:54,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) done waiting for dependent futures
2022-05-12 22:27:54,326 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56623104}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 56623104}
2022-05-12 22:27:54,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:54,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41680896}) to executor  for transfer request: 0.
2022-05-12 22:27:54,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:54,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:54,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) about to wait for the following futures []
2022-05-12 22:27:54,424 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) about to wait for the following futures []
2022-05-12 22:27:54,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) done waiting for dependent futures
2022-05-12 22:27:54,424 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) done waiting for dependent futures
2022-05-12 22:27:54,425 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41680896}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 41680896}
2022-05-12 22:27:54,425 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=83886080-92274687'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 83886080, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:27:54,425 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:54,425 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:54,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:54,425 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:54,426 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:54,426 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:54,426 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:54,426 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:27:54,426 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:27:54,427 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:54,427 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:54,427 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=83886080-92274687', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:27:54,427 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:54,427 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:27:54,427 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:54,427 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:54,427 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:27:54,427 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:27:54,427 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:27:54,427 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:27:54,428 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:27:54,428 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=83886080-92274687
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222754Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:27:54,428 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222754Z
20220512/eu-central-1/s3/aws4_request
dd9cb6fb44316628dad2fe7cc84612bbccb2107616ca27e4ff055c49bb1949f7
2022-05-12 22:27:54,428 botocore.auth DEBUG    Signature:
ffeba825346d42c059d440459a57a4d6dc6ff136ec70b464845ee549bfde6920
2022-05-12 22:27:54,428 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:54,428 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:54,429 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:27:54,429 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:27:54,627 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:27:54,628 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '19r3De3nSsrMyY5RS5aqOnJvrZb/R/yezNuL6WZStYkekVdI5c7GjGimSTc+BFfU6UM6i6/o6uw=', 'x-amz-request-id': 'W760C3A85S7YCW5V', 'Date': 'Thu, 12 May 2022 22:27:55 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 83886080-92274687/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:27:54,628 botocore.parsers DEBUG    Response body:

2022-05-12 22:27:54,630 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:27:54,630 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:27:54,630 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:27:54,864 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:27:54,864 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:54,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:27:54,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:27:54,865 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 29360128}
2022-05-12 22:27:54,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73924608}) to executor  for transfer request: 0.
2022-05-12 22:27:55,202 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) about to wait for the following futures []
2022-05-12 22:27:55,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) done waiting for dependent futures
2022-05-12 22:27:55,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73924608}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 73924608}
2022-05-12 22:27:55,203 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,599 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:27:55,599 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:27:55,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:27:55,600 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9175040}
2022-05-12 22:27:55,600 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,362 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:27:56,362 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:27:56,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:27:56,363 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 7340032}
2022-05-12 22:27:56,363 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:57,676 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:27:57,677 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:57,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:27:57,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:27:57,677 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 17563648}
2022-05-12 22:27:57,678 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:57,963 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:27:57,963 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:57,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:27:57,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:27:57,964 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 15990784}
2022-05-12 22:27:57,964 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:58,443 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:27:58,443 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:58,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:27:58,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:27:58,444 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 22806528}
2022-05-12 22:27:58,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:59,623 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61603840}) to executor  for transfer request: 0.
2022-05-12 22:27:59,623 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:59,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) about to wait for the following futures []
2022-05-12 22:27:59,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) done waiting for dependent futures
2022-05-12 22:27:59,624 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61603840}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 61603840}
2022-05-12 22:27:59,624 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:59,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:27:59,646 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:59,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:27:59,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:27:59,646 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 6291456}
2022-05-12 22:27:59,646 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:02,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:28:02,310 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:02,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:28:02,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:28:02,311 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 6553600}
2022-05-12 22:28:02,311 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:02,460 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:28:02,460 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:02,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:28:02,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:28:02,461 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 27000832}
2022-05-12 22:28:02,461 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:02,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83886080}) to executor  for transfer request: 0.
2022-05-12 22:28:02,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:02,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) about to wait for the following futures []
2022-05-12 22:28:02,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) done waiting for dependent futures
2022-05-12 22:28:02,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83886080}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 83886080}
2022-05-12 22:28:02,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:03,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:28:03,876 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:03,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:28:03,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:28:03,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 21495808}
2022-05-12 22:28:03,877 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:04,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:28:04,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:04,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:28:04,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:28:04,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 22020096}
2022-05-12 22:28:04,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,015 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:28:05,015 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:28:05,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:28:05,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 7602176}
2022-05-12 22:28:05,016 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,954 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74186752}) to executor  for transfer request: 0.
2022-05-12 22:28:05,954 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) about to wait for the following futures []
2022-05-12 22:28:05,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) done waiting for dependent futures
2022-05-12 22:28:05,955 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74186752}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 74186752}
2022-05-12 22:28:05,955 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:07,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56885248}) to executor  for transfer request: 0.
2022-05-12 22:28:07,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:07,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) about to wait for the following futures []
2022-05-12 22:28:07,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) done waiting for dependent futures
2022-05-12 22:28:07,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56885248}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 56885248}
2022-05-12 22:28:07,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:28:08,834 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:08,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:28:08,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:28:08,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 16252928}
2022-05-12 22:28:08,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:09,096 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46923776}) to executor  for transfer request: 0.
2022-05-12 22:28:09,096 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:09,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) about to wait for the following futures []
2022-05-12 22:28:09,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) done waiting for dependent futures
2022-05-12 22:28:09,097 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46923776}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 46923776}
2022-05-12 22:28:09,097 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:09,832 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:28:09,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:09,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:28:09,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:28:09,832 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 6553600}
2022-05-12 22:28:09,833 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:10,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:28:10,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:10,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:28:10,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:28:10,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 6291456}
2022-05-12 22:28:10,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:10,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:28:10,796 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:10,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:28:10,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:28:10,797 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 29622272}
2022-05-12 22:28:10,797 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:11,846 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84148224}) to executor  for transfer request: 0.
2022-05-12 22:28:11,846 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:11,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) about to wait for the following futures []
2022-05-12 22:28:11,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) done waiting for dependent futures
2022-05-12 22:28:11,847 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84148224}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 84148224}
2022-05-12 22:28:11,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,344 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:28:12,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:12,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:28:12,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:28:12,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 23068672}
2022-05-12 22:28:12,345 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:13,996 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:28:13,996 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:13,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:28:13,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:28:13,997 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 6815744}
2022-05-12 22:28:13,997 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:14,351 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74448896}) to executor  for transfer request: 0.
2022-05-12 22:28:14,351 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:14,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) about to wait for the following futures []
2022-05-12 22:28:14,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) done waiting for dependent futures
2022-05-12 22:28:14,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74448896}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 74448896}
2022-05-12 22:28:14,352 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:14,657 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:28:14,657 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:14,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:28:14,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:28:14,658 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 7864320}
2022-05-12 22:28:14,658 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:14,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:28:14,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:14,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:28:14,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:28:14,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 21757952}
2022-05-12 22:28:14,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,227 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:28:16,227 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:28:16,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:28:16,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 27262976}
2022-05-12 22:28:16,228 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:17,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:28:17,186 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:17,187 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:17,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:28:17,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:28:17,187 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 16515072}
2022-05-12 22:28:17,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,200 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57147392}) to executor  for transfer request: 0.
2022-05-12 22:28:19,200 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) about to wait for the following futures []
2022-05-12 22:28:19,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) done waiting for dependent futures
2022-05-12 22:28:19,201 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57147392}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 57147392}
2022-05-12 22:28:19,201 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,528 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:28:19,528 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:28:19,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:28:19,529 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 6553600}
2022-05-12 22:28:19,529 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,657 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:28:19,657 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:28:19,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:28:19,659 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 17825792}
2022-05-12 22:28:19,659 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:20,506 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:28:20,506 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:20,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:28:20,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:28:20,506 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 10485760}
2022-05-12 22:28:20,507 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:20,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:28:20,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:20,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:28:20,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:28:20,744 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 6815744}
2022-05-12 22:28:20,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:21,210 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:28:21,210 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:21,211 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:28:21,211 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:28:21,211 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 23330816}
2022-05-12 22:28:21,212 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:28:22,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:22,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:28:22,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:28:22,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 10485760}
2022-05-12 22:28:22,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:23,195 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:28:23,196 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:23,196 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:28:23,196 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:28:23,196 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 22282240}
2022-05-12 22:28:23,196 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:24,313 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:28:24,314 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:24,314 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:24,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:28:24,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:28:24,315 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 8126464}
2022-05-12 22:28:24,315 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:24,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:28:24,933 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:24,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:28:24,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:28:24,934 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 29884416}
2022-05-12 22:28:24,934 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,347 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74711040}) to executor  for transfer request: 0.
2022-05-12 22:28:25,347 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) about to wait for the following futures []
2022-05-12 22:28:25,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) done waiting for dependent futures
2022-05-12 22:28:25,348 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74711040}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 74711040}
2022-05-12 22:28:25,348 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:27,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:28:27,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:27,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:28:27,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:28:27,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 23592960}
2022-05-12 22:28:27,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:29,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:28:29,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:28:29,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:28:29,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 7077888}
2022-05-12 22:28:29,051 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:29,800 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:28:29,800 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:28:29,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:28:29,801 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 7077888}
2022-05-12 22:28:29,801 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:29,961 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:28:29,961 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:28:29,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:28:29,962 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 22020096}
2022-05-12 22:28:29,963 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:30,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47185920}) to executor  for transfer request: 0.
2022-05-12 22:28:30,242 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:30,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) about to wait for the following futures []
2022-05-12 22:28:30,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) done waiting for dependent futures
2022-05-12 22:28:30,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47185920}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 47185920}
2022-05-12 22:28:30,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:31,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:28:31,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:31,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:31,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:28:31,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:28:31,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 30146560}
2022-05-12 22:28:31,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:32,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:28:32,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:32,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:28:32,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:28:32,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 6815744}
2022-05-12 22:28:32,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:32,446 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57409536}) to executor  for transfer request: 0.
2022-05-12 22:28:32,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:32,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) about to wait for the following futures []
2022-05-12 22:28:32,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) done waiting for dependent futures
2022-05-12 22:28:32,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57409536}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 57409536}
2022-05-12 22:28:32,447 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:32,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84410368}) to executor  for transfer request: 0.
2022-05-12 22:28:32,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:32,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) about to wait for the following futures []
2022-05-12 22:28:32,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) done waiting for dependent futures
2022-05-12 22:28:32,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84410368}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 84410368}
2022-05-12 22:28:32,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77070336}) to executor  for transfer request: 0.
2022-05-12 22:28:34,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) about to wait for the following futures []
2022-05-12 22:28:34,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) done waiting for dependent futures
2022-05-12 22:28:34,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77070336}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 77070336}
2022-05-12 22:28:34,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,318 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:28:35,318 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:28:35,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:28:35,319 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 27525120}
2022-05-12 22:28:35,319 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,425 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:28:35,426 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:28:35,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:28:35,426 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9437184}
2022-05-12 22:28:35,427 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:37,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:37,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:37,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:37,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:37,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 7340032}
2022-05-12 22:28:37,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:37,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74973184}) to executor  for transfer request: 0.
2022-05-12 22:28:37,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:37,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) about to wait for the following futures []
2022-05-12 22:28:37,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) done waiting for dependent futures
2022-05-12 22:28:37,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74973184}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 74973184}
2022-05-12 22:28:37,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:28:40,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:28:40,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:28:40,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 18087936}
2022-05-12 22:28:40,045 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61865984}) to executor  for transfer request: 0.
2022-05-12 22:28:40,187 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) about to wait for the following futures []
2022-05-12 22:28:40,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) done waiting for dependent futures
2022-05-12 22:28:40,187 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61865984}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 61865984}
2022-05-12 22:28:40,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,872 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:40,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:40,873 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:40,873 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 7340032}
2022-05-12 22:28:40,873 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:41,543 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:28:41,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:41,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:28:41,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:28:41,544 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 23855104}
2022-05-12 22:28:41,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57671680}) to executor  for transfer request: 0.
2022-05-12 22:28:44,254 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) about to wait for the following futures []
2022-05-12 22:28:44,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) done waiting for dependent futures
2022-05-12 22:28:44,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57671680}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 57671680}
2022-05-12 22:28:44,255 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84672512}) to executor  for transfer request: 0.
2022-05-12 22:28:44,310 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) about to wait for the following futures []
2022-05-12 22:28:44,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) done waiting for dependent futures
2022-05-12 22:28:44,311 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84672512}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 84672512}
2022-05-12 22:28:44,311 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:45,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:28:45,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:45,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:28:45,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:28:45,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 22544384}
2022-05-12 22:28:45,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:46,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:28:46,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:46,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:28:46,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:28:46,173 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 22282240}
2022-05-12 22:28:46,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:46,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:28:46,208 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:46,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:28:46,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:28:46,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 7077888}
2022-05-12 22:28:46,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:49,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:28:49,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:49,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:28:49,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:28:49,126 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 27787264}
2022-05-12 22:28:49,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:49,862 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:28:49,862 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:49,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:28:49,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:28:49,862 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 7602176}
2022-05-12 22:28:49,863 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,150 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75235328}) to executor  for transfer request: 0.
2022-05-12 22:28:50,150 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:50,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,151 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) about to wait for the following futures []
2022-05-12 22:28:50,151 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) done waiting for dependent futures
2022-05-12 22:28:50,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) about to wait for the following futures []
2022-05-12 22:28:50,151 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=92274688-100663295'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 92274688, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:28:50,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) done waiting for dependent futures
2022-05-12 22:28:50,152 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:50,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75235328}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 75235328}
2022-05-12 22:28:50,152 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:50,152 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:50,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,153 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:50,153 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:50,153 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:50,153 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:28:50,153 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:28:50,153 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:50,154 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:50,154 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=92274688-100663295', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:28:50,154 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:50,154 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:28:50,154 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:50,154 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:50,154 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:28:50,154 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:28:50,154 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:28:50,154 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:28:50,155 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:28:50,155 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=92274688-100663295
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222850Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:28:50,155 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222850Z
20220512/eu-central-1/s3/aws4_request
f9132d6acba6a2629f86363cb541277cc47f2e3dc00e4d323ca9726046b93809
2022-05-12 22:28:50,155 botocore.auth DEBUG    Signature:
a8724e3d4489090b89e2f024bf8f6874c5ab8cc6f4655beb418ed690a7330b94
2022-05-12 22:28:50,155 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:50,155 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:50,155 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:28:50,156 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:28:50,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47448064}) to executor  for transfer request: 0.
2022-05-12 22:28:50,323 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:50,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) about to wait for the following futures []
2022-05-12 22:28:50,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) done waiting for dependent futures
2022-05-12 22:28:50,324 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47448064}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 47448064}
2022-05-12 22:28:50,324 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,387 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:28:50,388 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Ev2spyArrXUdqkW4DMaIBA/xbcr94pgL04s4H2ZO/uAvpuiYHpR1qvephTeKcsh/P31trIT9eBY=', 'x-amz-request-id': 'QRR94YA9REG5ZC7X', 'Date': 'Thu, 12 May 2022 22:28:51 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 92274688-100663295/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:28:50,388 botocore.parsers DEBUG    Response body:

2022-05-12 22:28:50,389 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:28:50,389 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:28:50,389 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:28:52,899 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:28:52,899 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:52,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:28:52,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:28:52,900 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 7602176}
2022-05-12 22:28:52,900 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,379 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77332480}) to executor  for transfer request: 0.
2022-05-12 22:28:53,379 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:53,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) about to wait for the following futures []
2022-05-12 22:28:53,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) done waiting for dependent futures
2022-05-12 22:28:53,380 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77332480}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 77332480}
2022-05-12 22:28:53,380 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,440 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84934656}) to executor  for transfer request: 0.
2022-05-12 22:28:53,440 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:53,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) about to wait for the following futures []
2022-05-12 22:28:53,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) done waiting for dependent futures
2022-05-12 22:28:53,441 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84934656}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 84934656}
2022-05-12 22:28:53,441 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,608 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:28:53,608 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:53,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:28:53,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:28:53,609 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 24117248}
2022-05-12 22:28:53,610 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:55,983 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92274688}) to executor  for transfer request: 0.
2022-05-12 22:28:55,983 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:55,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) about to wait for the following futures []
2022-05-12 22:28:55,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) done waiting for dependent futures
2022-05-12 22:28:55,984 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92274688}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 92274688}
2022-05-12 22:28:55,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,654 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57933824}) to executor  for transfer request: 0.
2022-05-12 22:28:56,654 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) about to wait for the following futures []
2022-05-12 22:28:56,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) done waiting for dependent futures
2022-05-12 22:28:56,654 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57933824}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 57933824}
2022-05-12 22:28:56,655 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:58,700 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:28:58,700 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:58,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:28:58,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:28:58,701 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 18350080}
2022-05-12 22:28:58,701 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:58,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:58,787 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:58,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:58,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:58,787 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 7340032}
2022-05-12 22:28:58,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:29:02,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:02,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:29:02,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:29:02,741 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 7864320}
2022-05-12 22:29:02,741 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:03,312 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92536832}) to executor  for transfer request: 0.
2022-05-12 22:29:03,312 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:03,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) about to wait for the following futures []
2022-05-12 22:29:03,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) done waiting for dependent futures
2022-05-12 22:29:03,313 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92536832}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 92536832}
2022-05-12 22:29:03,313 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:03,988 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:29:03,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:03,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:29:03,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:29:03,989 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9699328}
2022-05-12 22:29:03,989 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:04,223 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:29:04,223 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:04,223 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:29:04,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:29:04,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 7864320}
2022-05-12 22:29:04,224 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:04,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:29:04,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:04,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:29:04,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:29:04,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 22544384}
2022-05-12 22:29:04,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:05,898 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85196800}) to executor  for transfer request: 0.
2022-05-12 22:29:05,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:05,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) about to wait for the following futures []
2022-05-12 22:29:05,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) done waiting for dependent futures
2022-05-12 22:29:05,898 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85196800}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 85196800}
2022-05-12 22:29:05,898 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:06,018 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:29:06,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:06,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:29:06,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:29:06,019 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 22806528}
2022-05-12 22:29:06,019 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,111 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:29:09,112 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:29:09,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:29:09,112 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 24379392}
2022-05-12 22:29:09,113 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,212 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58195968}) to executor  for transfer request: 0.
2022-05-12 22:29:09,212 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) about to wait for the following futures []
2022-05-12 22:29:09,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) done waiting for dependent futures
2022-05-12 22:29:09,213 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58195968}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 58195968}
2022-05-12 22:29:09,213 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:11,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:29:11,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:11,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:29:11,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:29:11,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 7602176}
2022-05-12 22:29:11,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:12,181 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:29:12,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:12,182 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:12,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:29:12,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:29:12,183 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 8126464}
2022-05-12 22:29:12,183 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47710208}) to executor  for transfer request: 0.
2022-05-12 22:29:14,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) about to wait for the following futures []
2022-05-12 22:29:14,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) done waiting for dependent futures
2022-05-12 22:29:14,743 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47710208}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 47710208}
2022-05-12 22:29:14,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,975 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77594624}) to executor  for transfer request: 0.
2022-05-12 22:29:14,975 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) about to wait for the following futures []
2022-05-12 22:29:14,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) done waiting for dependent futures
2022-05-12 22:29:14,976 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77594624}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 77594624}
2022-05-12 22:29:14,976 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:16,016 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92798976}) to executor  for transfer request: 0.
2022-05-12 22:29:16,017 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:16,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) about to wait for the following futures []
2022-05-12 22:29:16,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) done waiting for dependent futures
2022-05-12 22:29:16,017 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92798976}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 92798976}
2022-05-12 22:29:16,018 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:16,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:29:16,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:16,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:29:16,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:29:16,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 18612224}
2022-05-12 22:29:16,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:16,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:29:16,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:16,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:16,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:29:16,420 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) about to wait for the following futures []
2022-05-12 22:29:16,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:29:16,420 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) done waiting for dependent futures
2022-05-12 22:29:16,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 8126464}
2022-05-12 22:29:16,420 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=100663296-109051903'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 100663296, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:16,420 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:16,420 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:16,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:16,420 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:16,420 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:16,420 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:16,420 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:16,420 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:16,420 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:29:16,420 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:16,420 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:16,420 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=100663296-109051903', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:16,421 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:16,421 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:16,421 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:16,421 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:16,421 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:16,421 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:16,421 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:29:16,421 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:29:16,421 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:16,421 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=100663296-109051903
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222916Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:16,421 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222916Z
20220512/eu-central-1/s3/aws4_request
05fb585d1f2b4d84d6e3717f7519d5c90ea494bf7c344f6445260b0b71e20ece
2022-05-12 22:29:16,421 botocore.auth DEBUG    Signature:
d5865e1b686ae7718511e0581f5b192c09213bfaf34e7770e2aaf34fd4fb8019
2022-05-12 22:29:16,421 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:16,421 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:16,422 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:16,422 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:16,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85458944}) to executor  for transfer request: 0.
2022-05-12 22:29:16,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:16,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) about to wait for the following futures []
2022-05-12 22:29:16,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) done waiting for dependent futures
2022-05-12 22:29:16,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85458944}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 85458944}
2022-05-12 22:29:16,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:16,627 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:16,628 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'MfGx2hcF5gSI4Dg1t2Ybpzt7IeoRLNUhZFAHMrsVVTixyfJaYe8Aa88Hvfb0GGSrJ5gFLPE1BP0=', 'x-amz-request-id': 'TXW4EYY8WZHDNYVD', 'Date': 'Thu, 12 May 2022 22:29:17 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 100663296-109051903/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:16,628 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:16,629 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:16,630 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:16,630 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:17,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62128128}) to executor  for transfer request: 0.
2022-05-12 22:29:17,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:17,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) about to wait for the following futures []
2022-05-12 22:29:17,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) done waiting for dependent futures
2022-05-12 22:29:17,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62128128}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 62128128}
2022-05-12 22:29:17,051 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:17,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:29:17,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:17,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:29:17,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:29:17,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 28049408}
2022-05-12 22:29:17,543 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:19,629 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:29:19,629 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:19,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:29:19,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:29:19,630 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 22806528}
2022-05-12 22:29:19,630 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:20,021 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:29:20,021 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:20,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:29:20,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:29:20,022 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 9961472}
2022-05-12 22:29:20,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:29:21,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:21,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:29:21,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:29:21,790 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 24641536}
2022-05-12 22:29:21,790 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:22,597 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58458112}) to executor  for transfer request: 0.
2022-05-12 22:29:22,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:22,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:22,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) about to wait for the following futures []
2022-05-12 22:29:22,597 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) about to wait for the following futures []
2022-05-12 22:29:22,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) done waiting for dependent futures
2022-05-12 22:29:22,598 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) done waiting for dependent futures
2022-05-12 22:29:22,598 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58458112}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 58458112}
2022-05-12 22:29:22,598 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=109051904-117440511'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 109051904, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:22,599 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:22,599 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:22,599 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:22,599 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:22,599 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:22,599 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:22,599 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:22,599 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:22,599 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:29:22,599 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:22,600 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:22,600 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=109051904-117440511', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:22,600 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:22,600 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:22,600 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:22,600 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:22,600 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:22,600 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:22,600 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:29:22,600 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:29:22,601 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:22,601 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=109051904-117440511
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222922Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:22,601 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222922Z
20220512/eu-central-1/s3/aws4_request
b3f59ae4a048369776c0d040f552a64d32152fd1cb5294c6e3caeb558b184659
2022-05-12 22:29:22,601 botocore.auth DEBUG    Signature:
8b5e53b4a4293627d143547935e2e9cb4e298d80b672549ee0dbc9e4902aa193
2022-05-12 22:29:22,601 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:22,601 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:22,601 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:22,601 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:22,811 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:22,811 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2JxooTzMe21Yjs38IWh4ozQxU5ICa0SNlaV5k3tUUk9xmyR4qGgxkqnocN76Csylufn4tAsqpIg=', 'x-amz-request-id': 'N34XNSG35TWR4C6T', 'Date': 'Thu, 12 May 2022 22:29:23 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 109051904-117440511/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:22,812 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:22,812 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:22,812 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:22,813 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:24,183 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:29:24,183 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:24,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:29:24,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:29:24,184 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 7864320}
2022-05-12 22:29:24,184 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:25,702 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85721088}) to executor  for transfer request: 0.
2022-05-12 22:29:25,702 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:25,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) about to wait for the following futures []
2022-05-12 22:29:25,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) done waiting for dependent futures
2022-05-12 22:29:25,703 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85721088}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 85721088}
2022-05-12 22:29:25,703 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:26,461 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93061120}) to executor  for transfer request: 0.
2022-05-12 22:29:26,461 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:26,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) about to wait for the following futures []
2022-05-12 22:29:26,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) done waiting for dependent futures
2022-05-12 22:29:26,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93061120}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 93061120}
2022-05-12 22:29:26,462 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:29:27,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:27,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:29:27,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:29:27,854 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 28311552}
2022-05-12 22:29:27,854 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:28,632 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:29:28,632 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:28,632 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:29:28,632 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:29:28,633 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 23068672}
2022-05-12 22:29:28,633 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:29,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100663296}) to executor  for transfer request: 0.
2022-05-12 22:29:29,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:29,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) about to wait for the following futures []
2022-05-12 22:29:29,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) done waiting for dependent futures
2022-05-12 22:29:29,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100663296}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 100663296}
2022-05-12 22:29:29,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:30,125 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:29:30,125 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:30,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:29:30,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:29:30,126 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 18874368}
2022-05-12 22:29:30,126 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:31,588 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77856768}) to executor  for transfer request: 0.
2022-05-12 22:29:31,588 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:31,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) about to wait for the following futures []
2022-05-12 22:29:31,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) done waiting for dependent futures
2022-05-12 22:29:31,589 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77856768}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 77856768}
2022-05-12 22:29:31,589 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:31,904 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47972352}) to executor  for transfer request: 0.
2022-05-12 22:29:31,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:31,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) about to wait for the following futures []
2022-05-12 22:29:31,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) done waiting for dependent futures
2022-05-12 22:29:31,905 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47972352}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 47972352}
2022-05-12 22:29:31,906 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:32,234 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:29:32,234 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:32,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:29:32,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:29:32,235 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 23068672}
2022-05-12 22:29:32,235 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:32,494 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:29:32,494 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:32,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:29:32,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:29:32,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 10223616}
2022-05-12 22:29:32,495 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:33,448 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:29:33,449 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:33,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:29:33,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:29:33,449 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 28573696}
2022-05-12 22:29:33,450 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:33,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:29:33,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:33,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:33,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:29:33,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:29:33,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 8126464}
2022-05-12 22:29:33,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:33,864 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85983232}) to executor  for transfer request: 0.
2022-05-12 22:29:33,865 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:33,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) about to wait for the following futures []
2022-05-12 22:29:33,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) done waiting for dependent futures
2022-05-12 22:29:33,865 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85983232}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 85983232}
2022-05-12 22:29:33,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:34,124 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:29:34,124 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:34,124 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:29:34,124 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:34,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:34,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:29:34,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:29:34,125 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 24903680}
2022-05-12 22:29:34,126 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:34,126 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:29:34,126 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:29:34,126 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:29:34,126 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:36,727 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109051904}) to executor  for transfer request: 0.
2022-05-12 22:29:36,727 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:36,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) about to wait for the following futures []
2022-05-12 22:29:36,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) done waiting for dependent futures
2022-05-12 22:29:36,727 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109051904}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 109051904}
2022-05-12 22:29:36,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,618 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:29:37,618 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:29:37,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:29:37,619 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 10747904}
2022-05-12 22:29:37,619 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,728 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100925440}) to executor  for transfer request: 0.
2022-05-12 22:29:37,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) about to wait for the following futures []
2022-05-12 22:29:37,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) done waiting for dependent futures
2022-05-12 22:29:37,728 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100925440}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 100925440}
2022-05-12 22:29:37,729 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:39,477 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93323264}) to executor  for transfer request: 0.
2022-05-12 22:29:39,477 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:39,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) about to wait for the following futures []
2022-05-12 22:29:39,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) done waiting for dependent futures
2022-05-12 22:29:39,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93323264}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 93323264}
2022-05-12 22:29:39,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,654 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86245376}) to executor  for transfer request: 0.
2022-05-12 22:29:41,655 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,655 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) about to wait for the following futures []
2022-05-12 22:29:41,655 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) done waiting for dependent futures
2022-05-12 22:29:41,655 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86245376}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 86245376}
2022-05-12 22:29:41,656 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:42,025 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:29:42,026 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:42,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:29:42,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:29:42,026 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 23330816}
2022-05-12 22:29:42,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:43,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:29:43,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:43,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:29:43,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:29:43,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 28835840}
2022-05-12 22:29:43,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:43,373 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62390272}) to executor  for transfer request: 0.
2022-05-12 22:29:43,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:43,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) about to wait for the following futures []
2022-05-12 22:29:43,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) done waiting for dependent futures
2022-05-12 22:29:43,374 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62390272}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 62390272}
2022-05-12 22:29:43,374 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:43,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:29:43,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:43,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:29:43,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:29:43,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 10485760}
2022-05-12 22:29:43,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:45,182 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109314048}) to executor  for transfer request: 0.
2022-05-12 22:29:45,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:45,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) about to wait for the following futures []
2022-05-12 22:29:45,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) done waiting for dependent futures
2022-05-12 22:29:45,182 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109314048}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 109314048}
2022-05-12 22:29:45,182 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:48,361 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:29:48,361 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:48,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:29:48,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:29:48,362 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 23330816}
2022-05-12 22:29:48,362 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:49,007 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:29:49,007 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:49,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:29:49,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:29:49,008 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 19136512}
2022-05-12 22:29:49,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:49,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93585408}) to executor  for transfer request: 0.
2022-05-12 22:29:49,039 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:49,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) about to wait for the following futures []
2022-05-12 22:29:49,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) done waiting for dependent futures
2022-05-12 22:29:49,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93585408}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 93585408}
2022-05-12 22:29:49,040 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,833 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101187584}) to executor  for transfer request: 0.
2022-05-12 22:29:51,833 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) about to wait for the following futures []
2022-05-12 22:29:51,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) done waiting for dependent futures
2022-05-12 22:29:51,834 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101187584}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 101187584}
2022-05-12 22:29:51,834 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:52,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:29:52,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:52,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:29:52,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:29:52,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 29097984}
2022-05-12 22:29:52,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:52,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86507520}) to executor  for transfer request: 0.
2022-05-12 22:29:52,148 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:52,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) about to wait for the following futures []
2022-05-12 22:29:52,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) done waiting for dependent futures
2022-05-12 22:29:52,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86507520}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 86507520}
2022-05-12 22:29:52,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:52,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78118912}) to executor  for transfer request: 0.
2022-05-12 22:29:52,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:52,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) about to wait for the following futures []
2022-05-12 22:29:52,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) done waiting for dependent futures
2022-05-12 22:29:52,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78118912}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 78118912}
2022-05-12 22:29:52,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:52,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48234496}) to executor  for transfer request: 0.
2022-05-12 22:29:52,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:52,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) about to wait for the following futures []
2022-05-12 22:29:52,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) done waiting for dependent futures
2022-05-12 22:29:52,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48234496}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 48234496}
2022-05-12 22:29:52,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:54,113 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:29:54,113 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:54,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:29:54,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:29:54,113 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 10747904}
2022-05-12 22:29:54,114 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,534 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62652416}) to executor  for transfer request: 0.
2022-05-12 22:29:55,534 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:55,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) about to wait for the following futures []
2022-05-12 22:29:55,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) done waiting for dependent futures
2022-05-12 22:29:55,535 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62652416}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 62652416}
2022-05-12 22:29:55,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:56,931 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:29:56,931 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:56,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:29:56,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:29:56,932 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 23592960}
2022-05-12 22:29:56,932 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,096 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93847552}) to executor  for transfer request: 0.
2022-05-12 22:30:00,096 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) about to wait for the following futures []
2022-05-12 22:30:00,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) done waiting for dependent futures
2022-05-12 22:30:00,097 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93847552}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 93847552}
2022-05-12 22:30:00,097 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109576192}) to executor  for transfer request: 0.
2022-05-12 22:30:00,315 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) about to wait for the following futures []
2022-05-12 22:30:00,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) done waiting for dependent futures
2022-05-12 22:30:00,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109576192}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 109576192}
2022-05-12 22:30:00,316 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:01,857 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62914560}) to executor  for transfer request: 0.
2022-05-12 22:30:01,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:01,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) about to wait for the following futures []
2022-05-12 22:30:01,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) done waiting for dependent futures
2022-05-12 22:30:01,858 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62914560}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 62914560}
2022-05-12 22:30:01,858 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:01,978 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:30:01,978 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:01,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:30:01,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:30:01,978 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 29360128}
2022-05-12 22:30:01,979 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:30:02,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:30:02,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:30:02,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 19398656}
2022-05-12 22:30:02,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:30:02,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:30:02,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:30:02,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 23592960}
2022-05-12 22:30:02,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:03,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86769664}) to executor  for transfer request: 0.
2022-05-12 22:30:03,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:03,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) about to wait for the following futures []
2022-05-12 22:30:03,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) done waiting for dependent futures
2022-05-12 22:30:03,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86769664}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 86769664}
2022-05-12 22:30:03,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:03,837 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101449728}) to executor  for transfer request: 0.
2022-05-12 22:30:03,837 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:03,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) about to wait for the following futures []
2022-05-12 22:30:03,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) done waiting for dependent futures
2022-05-12 22:30:03,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101449728}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 101449728}
2022-05-12 22:30:03,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:05,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:30:05,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:05,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:30:05,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:30:05,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 11010048}
2022-05-12 22:30:05,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:06,067 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:30:06,067 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:06,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:30:06,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:30:06,067 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 23855104}
2022-05-12 22:30:06,068 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:07,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78381056}) to executor  for transfer request: 0.
2022-05-12 22:30:07,195 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:07,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) about to wait for the following futures []
2022-05-12 22:30:07,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) done waiting for dependent futures
2022-05-12 22:30:07,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78381056}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 78381056}
2022-05-12 22:30:07,196 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:08,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48496640}) to executor  for transfer request: 0.
2022-05-12 22:30:08,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:08,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) about to wait for the following futures []
2022-05-12 22:30:08,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) done waiting for dependent futures
2022-05-12 22:30:08,253 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48496640}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 48496640}
2022-05-12 22:30:08,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:09,015 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94109696}) to executor  for transfer request: 0.
2022-05-12 22:30:09,015 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:09,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) about to wait for the following futures []
2022-05-12 22:30:09,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) done waiting for dependent futures
2022-05-12 22:30:09,016 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94109696}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 94109696}
2022-05-12 22:30:09,016 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:11,518 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:30:11,519 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:11,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:30:11,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:30:11,519 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 29622272}
2022-05-12 22:30:11,520 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:12,271 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109838336}) to executor  for transfer request: 0.
2022-05-12 22:30:12,271 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:12,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) about to wait for the following futures []
2022-05-12 22:30:12,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) done waiting for dependent futures
2022-05-12 22:30:12,271 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109838336}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 109838336}
2022-05-12 22:30:12,271 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:30:13,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:30:13,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:30:13,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 19660800}
2022-05-12 22:30:13,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,413 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87031808}) to executor  for transfer request: 0.
2022-05-12 22:30:13,413 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) about to wait for the following futures []
2022-05-12 22:30:13,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) done waiting for dependent futures
2022-05-12 22:30:13,414 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87031808}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 87031808}
2022-05-12 22:30:13,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,441 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101711872}) to executor  for transfer request: 0.
2022-05-12 22:30:13,441 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) about to wait for the following futures []
2022-05-12 22:30:13,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) done waiting for dependent futures
2022-05-12 22:30:13,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101711872}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 101711872}
2022-05-12 22:30:13,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:15,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63176704}) to executor  for transfer request: 0.
2022-05-12 22:30:15,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:15,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) about to wait for the following futures []
2022-05-12 22:30:15,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) done waiting for dependent futures
2022-05-12 22:30:15,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63176704}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 63176704}
2022-05-12 22:30:15,051 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:16,033 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94371840}) to executor  for transfer request: 0.
2022-05-12 22:30:16,033 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:16,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) about to wait for the following futures []
2022-05-12 22:30:16,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) done waiting for dependent futures
2022-05-12 22:30:16,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94371840}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 94371840}
2022-05-12 22:30:16,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:17,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:30:17,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:17,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:30:17,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:30:17,484 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 11272192}
2022-05-12 22:30:17,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:17,845 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:30:17,846 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:17,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:30:17,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:30:17,846 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 24117248}
2022-05-12 22:30:17,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:19,977 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:30:19,977 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:19,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:30:19,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:30:19,977 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 23855104}
2022-05-12 22:30:19,978 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,045 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101974016}) to executor  for transfer request: 0.
2022-05-12 22:30:20,045 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) about to wait for the following futures []
2022-05-12 22:30:20,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) done waiting for dependent futures
2022-05-12 22:30:20,046 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101974016}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 101974016}
2022-05-12 22:30:20,046 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:22,593 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94633984}) to executor  for transfer request: 0.
2022-05-12 22:30:22,593 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:22,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) about to wait for the following futures []
2022-05-12 22:30:22,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) done waiting for dependent futures
2022-05-12 22:30:22,594 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94633984}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 94633984}
2022-05-12 22:30:22,594 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:23,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110100480}) to executor  for transfer request: 0.
2022-05-12 22:30:23,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:23,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) about to wait for the following futures []
2022-05-12 22:30:23,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) done waiting for dependent futures
2022-05-12 22:30:23,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110100480}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 110100480}
2022-05-12 22:30:23,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,826 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78643200}) to executor  for transfer request: 0.
2022-05-12 22:30:24,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) about to wait for the following futures []
2022-05-12 22:30:24,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) done waiting for dependent futures
2022-05-12 22:30:24,827 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78643200}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 78643200}
2022-05-12 22:30:24,827 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:25,501 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:30:25,501 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:25,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:30:25,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:30:25,502 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 29884416}
2022-05-12 22:30:25,502 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,011 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63438848}) to executor  for transfer request: 0.
2022-05-12 22:30:26,011 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) about to wait for the following futures []
2022-05-12 22:30:26,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) done waiting for dependent futures
2022-05-12 22:30:26,012 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63438848}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 63438848}
2022-05-12 22:30:26,012 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:27,073 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:30:27,074 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:27,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:30:27,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:30:27,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 19922944}
2022-05-12 22:30:27,074 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:29,161 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:30:29,161 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:29,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:30:29,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:30:29,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 24379392}
2022-05-12 22:30:29,162 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:29,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:30:29,841 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:29,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:30:29,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:30:29,841 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 11534336}
2022-05-12 22:30:29,841 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:30,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102236160}) to executor  for transfer request: 0.
2022-05-12 22:30:30,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:30,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) about to wait for the following futures []
2022-05-12 22:30:30,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) done waiting for dependent futures
2022-05-12 22:30:30,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102236160}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 102236160}
2022-05-12 22:30:30,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:35,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94896128}) to executor  for transfer request: 0.
2022-05-12 22:30:35,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:35,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) about to wait for the following futures []
2022-05-12 22:30:35,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) done waiting for dependent futures
2022-05-12 22:30:35,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94896128}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 94896128}
2022-05-12 22:30:35,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:37,669 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:30:37,669 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:37,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:30:37,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:30:37,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 30146560}
2022-05-12 22:30:37,670 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:38,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48758784}) to executor  for transfer request: 0.
2022-05-12 22:30:38,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:38,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) about to wait for the following futures []
2022-05-12 22:30:38,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) done waiting for dependent futures
2022-05-12 22:30:38,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48758784}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 48758784}
2022-05-12 22:30:38,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:38,402 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95158272}) to executor  for transfer request: 0.
2022-05-12 22:30:38,402 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:38,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) about to wait for the following futures []
2022-05-12 22:30:38,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) done waiting for dependent futures
2022-05-12 22:30:38,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95158272}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 95158272}
2022-05-12 22:30:38,403 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:40,084 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:30:40,084 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:40,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:30:40,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:30:40,085 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 11796480}
2022-05-12 22:30:40,085 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:40,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110362624}) to executor  for transfer request: 0.
2022-05-12 22:30:40,382 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:40,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) about to wait for the following futures []
2022-05-12 22:30:40,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) done waiting for dependent futures
2022-05-12 22:30:40,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110362624}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 110362624}
2022-05-12 22:30:40,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:40,632 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:30:40,632 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:40,632 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:30:40,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:30:40,633 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 10747904}
2022-05-12 22:30:40,633 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,313 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30408704}) to executor  for transfer request: 0.
2022-05-12 22:30:43,313 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) about to wait for the following futures []
2022-05-12 22:30:43,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) done waiting for dependent futures
2022-05-12 22:30:43,314 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30408704}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 30408704}
2022-05-12 22:30:43,314 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:44,726 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:30:44,726 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:30:44,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:30:44,727 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 24117248}
2022-05-12 22:30:44,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:45,408 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63700992}) to executor  for transfer request: 0.
2022-05-12 22:30:45,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:45,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) about to wait for the following futures []
2022-05-12 22:30:45,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) done waiting for dependent futures
2022-05-12 22:30:45,409 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63700992}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 63700992}
2022-05-12 22:30:45,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:45,479 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78905344}) to executor  for transfer request: 0.
2022-05-12 22:30:45,479 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:45,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) about to wait for the following futures []
2022-05-12 22:30:45,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) done waiting for dependent futures
2022-05-12 22:30:45,480 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78905344}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 78905344}
2022-05-12 22:30:45,480 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:47,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:30:47,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:47,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:30:47,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:30:47,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 24641536}
2022-05-12 22:30:47,166 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:48,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95420416}) to executor  for transfer request: 0.
2022-05-12 22:30:48,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:48,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) about to wait for the following futures []
2022-05-12 22:30:48,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) done waiting for dependent futures
2022-05-12 22:30:48,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95420416}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 95420416}
2022-05-12 22:30:48,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102498304}) to executor  for transfer request: 0.
2022-05-12 22:30:49,155 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) about to wait for the following futures []
2022-05-12 22:30:49,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) done waiting for dependent futures
2022-05-12 22:30:49,155 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102498304}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 102498304}
2022-05-12 22:30:49,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:50,275 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30670848}) to executor  for transfer request: 0.
2022-05-12 22:30:50,275 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:50,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) about to wait for the following futures []
2022-05-12 22:30:50,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) done waiting for dependent futures
2022-05-12 22:30:50,276 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30670848}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 30670848}
2022-05-12 22:30:50,276 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:53,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:30:53,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:53,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:30:53,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:30:53,761 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 12058624}
2022-05-12 22:30:53,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,079 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:30:55,080 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:30:55,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:30:55,080 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 11010048}
2022-05-12 22:30:55,081 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,836 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:30:55,837 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:30:55,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:30:55,837 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 20185088}
2022-05-12 22:30:55,837 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63963136}) to executor  for transfer request: 0.
2022-05-12 22:30:56,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) about to wait for the following futures []
2022-05-12 22:30:56,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) done waiting for dependent futures
2022-05-12 22:30:56,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63963136}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 63963136}
2022-05-12 22:30:56,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,728 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:30:56,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:30:56,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:30:56,729 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 24903680}
2022-05-12 22:30:56,729 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:00,467 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30932992}) to executor  for transfer request: 0.
2022-05-12 22:31:00,467 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:00,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) about to wait for the following futures []
2022-05-12 22:31:00,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) done waiting for dependent futures
2022-05-12 22:31:00,468 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30932992}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 30932992}
2022-05-12 22:31:00,468 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:01,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102760448}) to executor  for transfer request: 0.
2022-05-12 22:31:01,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:01,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) about to wait for the following futures []
2022-05-12 22:31:01,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) done waiting for dependent futures
2022-05-12 22:31:01,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102760448}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 102760448}
2022-05-12 22:31:01,694 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,019 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79167488}) to executor  for transfer request: 0.
2022-05-12 22:31:03,019 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) about to wait for the following futures []
2022-05-12 22:31:03,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) done waiting for dependent futures
2022-05-12 22:31:03,020 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79167488}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 79167488}
2022-05-12 22:31:03,020 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,180 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110624768}) to executor  for transfer request: 0.
2022-05-12 22:31:03,180 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) about to wait for the following futures []
2022-05-12 22:31:03,181 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) done waiting for dependent futures
2022-05-12 22:31:03,181 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110624768}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 110624768}
2022-05-12 22:31:03,181 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,286 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:31:03,286 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:31:03,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:31:03,287 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 24379392}
2022-05-12 22:31:03,287 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:05,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87293952}) to executor  for transfer request: 0.
2022-05-12 22:31:05,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:05,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) about to wait for the following futures []
2022-05-12 22:31:05,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) done waiting for dependent futures
2022-05-12 22:31:05,583 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87293952}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 87293952}
2022-05-12 22:31:05,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49020928}) to executor  for transfer request: 0.
2022-05-12 22:31:06,009 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,009 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) about to wait for the following futures []
2022-05-12 22:31:06,009 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) done waiting for dependent futures
2022-05-12 22:31:06,009 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49020928}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 49020928}
2022-05-12 22:31:06,010 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95682560}) to executor  for transfer request: 0.
2022-05-12 22:31:06,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) about to wait for the following futures []
2022-05-12 22:31:06,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) done waiting for dependent futures
2022-05-12 22:31:06,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95682560}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 95682560}
2022-05-12 22:31:06,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64225280}) to executor  for transfer request: 0.
2022-05-12 22:31:06,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) about to wait for the following futures []
2022-05-12 22:31:06,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) done waiting for dependent futures
2022-05-12 22:31:06,167 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64225280}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 64225280}
2022-05-12 22:31:06,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:08,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:31:08,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:08,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:31:08,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:31:08,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 11010048}
2022-05-12 22:31:08,869 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,967 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31195136}) to executor  for transfer request: 0.
2022-05-12 22:31:09,967 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) about to wait for the following futures []
2022-05-12 22:31:09,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) done waiting for dependent futures
2022-05-12 22:31:09,967 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31195136}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 31195136}
2022-05-12 22:31:09,968 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:11,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:31:11,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:11,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:31:11,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:31:11,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 12320768}
2022-05-12 22:31:11,438 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:11,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103022592}) to executor  for transfer request: 0.
2022-05-12 22:31:11,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:11,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) about to wait for the following futures []
2022-05-12 22:31:11,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) done waiting for dependent futures
2022-05-12 22:31:11,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103022592}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 103022592}
2022-05-12 22:31:11,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:13,893 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:31:13,893 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:13,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:31:13,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:31:13,894 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 20447232}
2022-05-12 22:31:13,894 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:15,897 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:31:15,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:15,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:31:15,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:31:15,898 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 24641536}
2022-05-12 22:31:15,898 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95944704}) to executor  for transfer request: 0.
2022-05-12 22:31:17,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) about to wait for the following futures []
2022-05-12 22:31:17,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) done waiting for dependent futures
2022-05-12 22:31:17,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95944704}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 95944704}
2022-05-12 22:31:17,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,878 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31457280}) to executor  for transfer request: 0.
2022-05-12 22:31:17,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) about to wait for the following futures []
2022-05-12 22:31:17,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) done waiting for dependent futures
2022-05-12 22:31:17,879 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31457280}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 31457280}
2022-05-12 22:31:17,880 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:18,288 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64487424}) to executor  for transfer request: 0.
2022-05-12 22:31:18,288 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:18,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) about to wait for the following futures []
2022-05-12 22:31:18,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) done waiting for dependent futures
2022-05-12 22:31:18,288 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64487424}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 64487424}
2022-05-12 22:31:18,289 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:20,443 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79429632}) to executor  for transfer request: 0.
2022-05-12 22:31:20,443 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:20,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) about to wait for the following futures []
2022-05-12 22:31:20,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) done waiting for dependent futures
2022-05-12 22:31:20,444 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79429632}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 79429632}
2022-05-12 22:31:20,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:21,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103284736}) to executor  for transfer request: 0.
2022-05-12 22:31:21,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:21,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) about to wait for the following futures []
2022-05-12 22:31:21,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) done waiting for dependent futures
2022-05-12 22:31:21,924 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103284736}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 103284736}
2022-05-12 22:31:21,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:23,400 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49283072}) to executor  for transfer request: 0.
2022-05-12 22:31:23,400 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:23,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) about to wait for the following futures []
2022-05-12 22:31:23,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) done waiting for dependent futures
2022-05-12 22:31:23,401 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49283072}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 49283072}
2022-05-12 22:31:23,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:25,207 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110886912}) to executor  for transfer request: 0.
2022-05-12 22:31:25,207 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:25,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) about to wait for the following futures []
2022-05-12 22:31:25,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) done waiting for dependent futures
2022-05-12 22:31:25,207 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110886912}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 110886912}
2022-05-12 22:31:25,208 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:26,709 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:31:26,709 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:26,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:31:26,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:31:26,710 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 12582912}
2022-05-12 22:31:26,710 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:27,965 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31719424}) to executor  for transfer request: 0.
2022-05-12 22:31:27,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:27,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) about to wait for the following futures []
2022-05-12 22:31:27,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) done waiting for dependent futures
2022-05-12 22:31:27,965 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31719424}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 31719424}
2022-05-12 22:31:27,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,680 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:31:29,680 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,681 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:31:29,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:31:29,681 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 24903680}
2022-05-12 22:31:29,682 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,787 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64749568}) to executor  for transfer request: 0.
2022-05-12 22:31:30,787 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) about to wait for the following futures []
2022-05-12 22:31:30,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) done waiting for dependent futures
2022-05-12 22:31:30,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64749568}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 64749568}
2022-05-12 22:31:30,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:31,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96206848}) to executor  for transfer request: 0.
2022-05-12 22:31:31,428 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:31,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) about to wait for the following futures []
2022-05-12 22:31:31,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) done waiting for dependent futures
2022-05-12 22:31:31,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96206848}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 96206848}
2022-05-12 22:31:31,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:35,779 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111149056}) to executor  for transfer request: 0.
2022-05-12 22:31:35,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:35,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) about to wait for the following futures []
2022-05-12 22:31:35,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) done waiting for dependent futures
2022-05-12 22:31:35,780 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111149056}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 111149056}
2022-05-12 22:31:35,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,013 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31981568}) to executor  for transfer request: 0.
2022-05-12 22:31:37,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) about to wait for the following futures []
2022-05-12 22:31:37,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) done waiting for dependent futures
2022-05-12 22:31:37,014 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31981568}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 31981568}
2022-05-12 22:31:37,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,108 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103546880}) to executor  for transfer request: 0.
2022-05-12 22:31:37,108 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) about to wait for the following futures []
2022-05-12 22:31:37,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) done waiting for dependent futures
2022-05-12 22:31:37,109 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103546880}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 103546880}
2022-05-12 22:31:37,109 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,492 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:31:37,492 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,492 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:31:37,492 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:31:37,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 20709376}
2022-05-12 22:31:37,493 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,615 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:31:37,615 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:31:37,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:31:37,615 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 12845056}
2022-05-12 22:31:37,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87556096}) to executor  for transfer request: 0.
2022-05-12 22:31:37,999 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) about to wait for the following futures []
2022-05-12 22:31:37,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) done waiting for dependent futures
2022-05-12 22:31:37,999 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87556096}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 87556096}
2022-05-12 22:31:37,999 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:39,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65011712}) to executor  for transfer request: 0.
2022-05-12 22:31:39,011 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:39,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) about to wait for the following futures []
2022-05-12 22:31:39,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) done waiting for dependent futures
2022-05-12 22:31:39,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65011712}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 65011712}
2022-05-12 22:31:39,012 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,316 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:31:42,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:31:42,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:31:42,317 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 11272192}
2022-05-12 22:31:42,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,503 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49545216}) to executor  for transfer request: 0.
2022-05-12 22:31:42,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) about to wait for the following futures []
2022-05-12 22:31:42,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) done waiting for dependent futures
2022-05-12 22:31:42,504 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49545216}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 49545216}
2022-05-12 22:31:42,504 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,775 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79691776}) to executor  for transfer request: 0.
2022-05-12 22:31:42,775 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,775 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) about to wait for the following futures []
2022-05-12 22:31:42,775 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) done waiting for dependent futures
2022-05-12 22:31:42,775 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79691776}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 79691776}
2022-05-12 22:31:42,776 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:44,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111411200}) to executor  for transfer request: 0.
2022-05-12 22:31:44,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:44,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) about to wait for the following futures []
2022-05-12 22:31:44,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) done waiting for dependent futures
2022-05-12 22:31:44,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111411200}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 111411200}
2022-05-12 22:31:44,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:44,566 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32243712}) to executor  for transfer request: 0.
2022-05-12 22:31:44,567 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:44,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) about to wait for the following futures []
2022-05-12 22:31:44,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) done waiting for dependent futures
2022-05-12 22:31:44,568 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32243712}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 32243712}
2022-05-12 22:31:44,568 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:46,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87818240}) to executor  for transfer request: 0.
2022-05-12 22:31:46,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:46,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) about to wait for the following futures []
2022-05-12 22:31:46,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) done waiting for dependent futures
2022-05-12 22:31:46,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87818240}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 87818240}
2022-05-12 22:31:46,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:47,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96468992}) to executor  for transfer request: 0.
2022-05-12 22:31:47,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:47,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) about to wait for the following futures []
2022-05-12 22:31:47,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) done waiting for dependent futures
2022-05-12 22:31:47,068 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96468992}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 96468992}
2022-05-12 22:31:47,069 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:47,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103809024}) to executor  for transfer request: 0.
2022-05-12 22:31:47,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:47,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) about to wait for the following futures []
2022-05-12 22:31:47,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) done waiting for dependent futures
2022-05-12 22:31:47,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103809024}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 103809024}
2022-05-12 22:31:47,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65273856}) to executor  for transfer request: 0.
2022-05-12 22:31:49,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) about to wait for the following futures []
2022-05-12 22:31:49,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) done waiting for dependent futures
2022-05-12 22:31:49,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65273856}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 65273856}
2022-05-12 22:31:49,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:50,467 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111673344}) to executor  for transfer request: 0.
2022-05-12 22:31:50,468 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:50,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) about to wait for the following futures []
2022-05-12 22:31:50,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) done waiting for dependent futures
2022-05-12 22:31:50,468 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111673344}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 111673344}
2022-05-12 22:31:50,469 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:52,195 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:31:52,196 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:52,196 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:31:52,196 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:31:52,196 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 13107200}
2022-05-12 22:31:52,196 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:52,448 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32505856}) to executor  for transfer request: 0.
2022-05-12 22:31:52,448 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:52,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) about to wait for the following futures []
2022-05-12 22:31:52,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) done waiting for dependent futures
2022-05-12 22:31:52,448 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32505856}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 32505856}
2022-05-12 22:31:52,449 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,722 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:31:54,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:54,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:31:54,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:31:54,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 20971520}
2022-05-12 22:31:54,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:55,513 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88080384}) to executor  for transfer request: 0.
2022-05-12 22:31:55,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:55,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) about to wait for the following futures []
2022-05-12 22:31:55,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) done waiting for dependent futures
2022-05-12 22:31:55,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88080384}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 88080384}
2022-05-12 22:31:55,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:58,047 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111935488}) to executor  for transfer request: 0.
2022-05-12 22:31:58,047 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:58,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) about to wait for the following futures []
2022-05-12 22:31:58,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) done waiting for dependent futures
2022-05-12 22:31:58,048 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111935488}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 111935488}
2022-05-12 22:31:58,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:58,403 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96731136}) to executor  for transfer request: 0.
2022-05-12 22:31:58,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:58,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) about to wait for the following futures []
2022-05-12 22:31:58,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) done waiting for dependent futures
2022-05-12 22:31:58,404 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96731136}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 96731136}
2022-05-12 22:31:58,404 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:59,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32768000}) to executor  for transfer request: 0.
2022-05-12 22:31:59,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:59,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) about to wait for the following futures []
2022-05-12 22:31:59,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) done waiting for dependent futures
2022-05-12 22:31:59,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32768000}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 32768000}
2022-05-12 22:31:59,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:01,165 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49807360}) to executor  for transfer request: 0.
2022-05-12 22:32:01,165 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:01,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) about to wait for the following futures []
2022-05-12 22:32:01,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) done waiting for dependent futures
2022-05-12 22:32:01,166 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49807360}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 49807360}
2022-05-12 22:32:01,166 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:01,892 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:32:01,893 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:01,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:32:01,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:32:01,894 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 13369344}
2022-05-12 22:32:01,894 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:02,510 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104071168}) to executor  for transfer request: 0.
2022-05-12 22:32:02,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:02,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) about to wait for the following futures []
2022-05-12 22:32:02,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) done waiting for dependent futures
2022-05-12 22:32:02,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104071168}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 104071168}
2022-05-12 22:32:02,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:02,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88342528}) to executor  for transfer request: 0.
2022-05-12 22:32:02,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:02,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) about to wait for the following futures []
2022-05-12 22:32:02,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) done waiting for dependent futures
2022-05-12 22:32:02,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88342528}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 88342528}
2022-05-12 22:32:02,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:03,711 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65536000}) to executor  for transfer request: 0.
2022-05-12 22:32:03,711 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:03,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) about to wait for the following futures []
2022-05-12 22:32:03,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) done waiting for dependent futures
2022-05-12 22:32:03,712 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65536000}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 65536000}
2022-05-12 22:32:03,712 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,062 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112197632}) to executor  for transfer request: 0.
2022-05-12 22:32:04,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) about to wait for the following futures []
2022-05-12 22:32:04,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) done waiting for dependent futures
2022-05-12 22:32:04,062 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112197632}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 112197632}
2022-05-12 22:32:04,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:05,379 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96993280}) to executor  for transfer request: 0.
2022-05-12 22:32:05,379 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:05,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) about to wait for the following futures []
2022-05-12 22:32:05,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) done waiting for dependent futures
2022-05-12 22:32:05,380 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96993280}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 96993280}
2022-05-12 22:32:05,380 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:08,695 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33030144}) to executor  for transfer request: 0.
2022-05-12 22:32:08,695 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:08,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) about to wait for the following futures []
2022-05-12 22:32:08,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) done waiting for dependent futures
2022-05-12 22:32:08,695 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33030144}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 33030144}
2022-05-12 22:32:08,695 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:10,487 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88604672}) to executor  for transfer request: 0.
2022-05-12 22:32:10,487 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:10,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) about to wait for the following futures []
2022-05-12 22:32:10,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) done waiting for dependent futures
2022-05-12 22:32:10,488 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88604672}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 88604672}
2022-05-12 22:32:10,488 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112459776}) to executor  for transfer request: 0.
2022-05-12 22:32:11,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) about to wait for the following futures []
2022-05-12 22:32:11,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) done waiting for dependent futures
2022-05-12 22:32:11,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112459776}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 112459776}
2022-05-12 22:32:11,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,540 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79953920}) to executor  for transfer request: 0.
2022-05-12 22:32:11,540 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) about to wait for the following futures []
2022-05-12 22:32:11,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) done waiting for dependent futures
2022-05-12 22:32:11,541 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79953920}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 79953920}
2022-05-12 22:32:11,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,957 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:32:11,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:32:11,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:32:11,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 13631488}
2022-05-12 22:32:11,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:12,675 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:32:12,675 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:12,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:32:12,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:32:12,676 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 11534336}
2022-05-12 22:32:12,676 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:13,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65798144}) to executor  for transfer request: 0.
2022-05-12 22:32:13,637 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:13,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) about to wait for the following futures []
2022-05-12 22:32:13,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) done waiting for dependent futures
2022-05-12 22:32:13,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65798144}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 65798144}
2022-05-12 22:32:13,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:13,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:32:13,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:13,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:32:13,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:32:13,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 21233664}
2022-05-12 22:32:13,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:14,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104333312}) to executor  for transfer request: 0.
2022-05-12 22:32:14,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:14,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) about to wait for the following futures []
2022-05-12 22:32:14,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) done waiting for dependent futures
2022-05-12 22:32:14,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104333312}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 104333312}
2022-05-12 22:32:14,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97255424}) to executor  for transfer request: 0.
2022-05-12 22:32:15,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:15,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) about to wait for the following futures []
2022-05-12 22:32:15,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) done waiting for dependent futures
2022-05-12 22:32:15,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97255424}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 97255424}
2022-05-12 22:32:15,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,531 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33292288}) to executor  for transfer request: 0.
2022-05-12 22:32:15,531 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:15,531 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,531 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) about to wait for the following futures []
2022-05-12 22:32:15,532 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) done waiting for dependent futures
2022-05-12 22:32:15,532 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=117440512-125829119'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 117440512, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:15,532 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:15,532 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:15,532 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:15,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) about to wait for the following futures []
2022-05-12 22:32:15,532 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:15,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) done waiting for dependent futures
2022-05-12 22:32:15,533 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:15,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33292288}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 33292288}
2022-05-12 22:32:15,533 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:15,534 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:15,534 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,534 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:32:15,534 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:15,535 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:15,535 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=117440512-125829119', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:15,535 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:15,535 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:15,535 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:15,535 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:15,535 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:15,535 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:15,535 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:32:15,535 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:32:15,536 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:15,536 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=117440512-125829119
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223215Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:15,536 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223215Z
20220512/eu-central-1/s3/aws4_request
8539c6de74758fb26a9732ebc5a83f2804ba0b4a6eb9cd977e4e0c4641866854
2022-05-12 22:32:15,536 botocore.auth DEBUG    Signature:
5d530a16110d52e2fcb89ba62082b7f4e4b49644bcdc91ed7379b86eaee12f8d
2022-05-12 22:32:15,536 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:15,536 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:15,536 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:15,537 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:15,752 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:15,752 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'CzGwEKJlf/S2gLD0cB9RBxpp3ldeZwRjNvSW26Yab9l4z2m8TqdanM3tpgxT8YLoDD+OEdVeQ4I=', 'x-amz-request-id': '6NCSHVWT9SK2Q8S8', 'Date': 'Thu, 12 May 2022 22:32:16 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 117440512-125829119/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:15,753 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:15,753 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:15,753 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:15,753 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:15,812 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50069504}) to executor  for transfer request: 0.
2022-05-12 22:32:15,813 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:15,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) about to wait for the following futures []
2022-05-12 22:32:15,813 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) about to wait for the following futures []
2022-05-12 22:32:15,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) done waiting for dependent futures
2022-05-12 22:32:15,814 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) done waiting for dependent futures
2022-05-12 22:32:15,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50069504}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 50069504}
2022-05-12 22:32:15,814 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=125829120-134217727'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 125829120, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:15,815 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:15,815 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:15,815 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:15,815 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:15,815 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:15,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:15,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:15,815 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:32:15,816 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,816 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:15,816 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:15,816 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=125829120-134217727', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:15,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:15,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:15,817 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:15,817 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:15,817 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:15,817 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:15,817 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:32:15,817 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:32:15,817 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:15,817 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=125829120-134217727
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223215Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:15,818 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223215Z
20220512/eu-central-1/s3/aws4_request
03d88bf997f8683057d3a0973f9bf72d5c148182afc5c5fb898a1ad08d0f18e5
2022-05-12 22:32:15,818 botocore.auth DEBUG    Signature:
7a9367b291e675d1fdc3cd30f4068cf2a985ab5e20014f0daea387021e528c15
2022-05-12 22:32:15,818 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:15,818 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:15,818 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:15,818 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:16,032 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:16,032 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'bP131anRQh06wbcZ2Uq8oQj5++DracRxJPn/5UOJth5eKmj3XLoz2n15f6TYJD8GcvMsvmX0TOg=', 'x-amz-request-id': '6NCZA9B3K8GQAT6M', 'Date': 'Thu, 12 May 2022 22:32:16 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 125829120-134217727/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:16,032 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:16,033 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:16,033 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:16,033 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:17,806 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88866816}) to executor  for transfer request: 0.
2022-05-12 22:32:17,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:17,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) about to wait for the following futures []
2022-05-12 22:32:17,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) done waiting for dependent futures
2022-05-12 22:32:17,806 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88866816}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 88866816}
2022-05-12 22:32:17,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,030 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112721920}) to executor  for transfer request: 0.
2022-05-12 22:32:18,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) about to wait for the following futures []
2022-05-12 22:32:18,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) done waiting for dependent futures
2022-05-12 22:32:18,031 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112721920}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 112721920}
2022-05-12 22:32:18,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:21,700 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97517568}) to executor  for transfer request: 0.
2022-05-12 22:32:21,700 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:21,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) about to wait for the following futures []
2022-05-12 22:32:21,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) done waiting for dependent futures
2022-05-12 22:32:21,701 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97517568}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 97517568}
2022-05-12 22:32:21,701 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:22,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:32:22,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:22,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:32:22,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:32:22,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 13893632}
2022-05-12 22:32:22,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:22,894 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117440512}) to executor  for transfer request: 0.
2022-05-12 22:32:22,894 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:22,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) about to wait for the following futures []
2022-05-12 22:32:22,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) done waiting for dependent futures
2022-05-12 22:32:22,894 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117440512}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 117440512}
2022-05-12 22:32:22,895 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,556 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:32:23,556 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:32:23,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:32:23,557 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 11272192}
2022-05-12 22:32:23,557 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,746 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66060288}) to executor  for transfer request: 0.
2022-05-12 22:32:23,746 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) about to wait for the following futures []
2022-05-12 22:32:23,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) done waiting for dependent futures
2022-05-12 22:32:23,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66060288}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 66060288}
2022-05-12 22:32:23,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:24,402 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112984064}) to executor  for transfer request: 0.
2022-05-12 22:32:24,402 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:24,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) about to wait for the following futures []
2022-05-12 22:32:24,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) done waiting for dependent futures
2022-05-12 22:32:24,403 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112984064}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 112984064}
2022-05-12 22:32:24,403 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:25,727 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104595456}) to executor  for transfer request: 0.
2022-05-12 22:32:25,727 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:25,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) about to wait for the following futures []
2022-05-12 22:32:25,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) done waiting for dependent futures
2022-05-12 22:32:25,728 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104595456}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 104595456}
2022-05-12 22:32:25,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:27,788 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89128960}) to executor  for transfer request: 0.
2022-05-12 22:32:27,789 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:27,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) about to wait for the following futures []
2022-05-12 22:32:27,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) done waiting for dependent futures
2022-05-12 22:32:27,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89128960}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 89128960}
2022-05-12 22:32:27,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:27,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113246208}) to executor  for transfer request: 0.
2022-05-12 22:32:27,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:27,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) about to wait for the following futures []
2022-05-12 22:32:27,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) done waiting for dependent futures
2022-05-12 22:32:27,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113246208}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 113246208}
2022-05-12 22:32:27,983 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,243 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97779712}) to executor  for transfer request: 0.
2022-05-12 22:32:29,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) about to wait for the following futures []
2022-05-12 22:32:29,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) done waiting for dependent futures
2022-05-12 22:32:29,244 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97779712}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 97779712}
2022-05-12 22:32:29,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:30,179 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:32:30,179 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:30,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:32:30,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:32:30,180 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 21495808}
2022-05-12 22:32:30,180 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125829120}) to executor  for transfer request: 0.
2022-05-12 22:32:31,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:31,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) about to wait for the following futures []
2022-05-12 22:32:31,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) done waiting for dependent futures
2022-05-12 22:32:31,419 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125829120}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 125829120}
2022-05-12 22:32:31,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,810 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66322432}) to executor  for transfer request: 0.
2022-05-12 22:32:31,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:31,811 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) about to wait for the following futures []
2022-05-12 22:32:31,811 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) done waiting for dependent futures
2022-05-12 22:32:31,811 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66322432}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 66322432}
2022-05-12 22:32:31,811 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:32,085 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89391104}) to executor  for transfer request: 0.
2022-05-12 22:32:32,085 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:32,086 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) about to wait for the following futures []
2022-05-12 22:32:32,086 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) done waiting for dependent futures
2022-05-12 22:32:32,086 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89391104}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 89391104}
2022-05-12 22:32:32,086 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:32,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117702656}) to executor  for transfer request: 0.
2022-05-12 22:32:32,740 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:32,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) about to wait for the following futures []
2022-05-12 22:32:32,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) done waiting for dependent futures
2022-05-12 22:32:32,740 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117702656}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 117702656}
2022-05-12 22:32:32,741 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:35,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:32:35,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:35,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:32:35,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:32:35,702 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 14155776}
2022-05-12 22:32:35,703 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104857600}) to executor  for transfer request: 0.
2022-05-12 22:32:38,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) about to wait for the following futures []
2022-05-12 22:32:38,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) done waiting for dependent futures
2022-05-12 22:32:38,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104857600}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 104857600}
2022-05-12 22:32:38,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:41,642 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98041856}) to executor  for transfer request: 0.
2022-05-12 22:32:41,642 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:41,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) about to wait for the following futures []
2022-05-12 22:32:41,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) done waiting for dependent futures
2022-05-12 22:32:41,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98041856}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 98041856}
2022-05-12 22:32:41,643 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:41,751 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89653248}) to executor  for transfer request: 0.
2022-05-12 22:32:41,752 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:41,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) about to wait for the following futures []
2022-05-12 22:32:41,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) done waiting for dependent futures
2022-05-12 22:32:41,752 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89653248}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 89653248}
2022-05-12 22:32:41,753 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:42,000 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113508352}) to executor  for transfer request: 0.
2022-05-12 22:32:42,000 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:42,001 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) about to wait for the following futures []
2022-05-12 22:32:42,001 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) done waiting for dependent futures
2022-05-12 22:32:42,001 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113508352}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 113508352}
2022-05-12 22:32:42,001 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:42,177 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80216064}) to executor  for transfer request: 0.
2022-05-12 22:32:42,177 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:42,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) about to wait for the following futures []
2022-05-12 22:32:42,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) done waiting for dependent futures
2022-05-12 22:32:42,178 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80216064}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 80216064}
2022-05-12 22:32:42,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:42,759 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66584576}) to executor  for transfer request: 0.
2022-05-12 22:32:42,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:42,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) about to wait for the following futures []
2022-05-12 22:32:42,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) done waiting for dependent futures
2022-05-12 22:32:42,760 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66584576}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 66584576}
2022-05-12 22:32:42,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:46,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98304000}) to executor  for transfer request: 0.
2022-05-12 22:32:46,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:46,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) about to wait for the following futures []
2022-05-12 22:32:46,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) done waiting for dependent futures
2022-05-12 22:32:46,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98304000}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 98304000}
2022-05-12 22:32:46,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:47,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89915392}) to executor  for transfer request: 0.
2022-05-12 22:32:47,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:47,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) about to wait for the following futures []
2022-05-12 22:32:47,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) done waiting for dependent futures
2022-05-12 22:32:47,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89915392}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 89915392}
2022-05-12 22:32:47,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,191 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:32:48,191 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:32:48,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:32:48,192 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 11796480}
2022-05-12 22:32:48,192 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105119744}) to executor  for transfer request: 0.
2022-05-12 22:32:48,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) about to wait for the following futures []
2022-05-12 22:32:48,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) done waiting for dependent futures
2022-05-12 22:32:48,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105119744}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 105119744}
2022-05-12 22:32:48,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:32:48,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:32:48,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:32:48,859 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 21757952}
2022-05-12 22:32:48,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:32:48,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:32:48,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:32:48,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 14417920}
2022-05-12 22:32:48,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:49,667 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66846720}) to executor  for transfer request: 0.
2022-05-12 22:32:49,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:49,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:49,668 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) about to wait for the following futures []
2022-05-12 22:32:49,668 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) done waiting for dependent futures
2022-05-12 22:32:49,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) about to wait for the following futures []
2022-05-12 22:32:49,668 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=134217728-142606335'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 134217728, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:49,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) done waiting for dependent futures
2022-05-12 22:32:49,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:49,669 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66846720}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 66846720}
2022-05-12 22:32:49,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:49,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:49,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:49,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:49,669 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:49,670 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:49,670 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:49,670 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:32:49,670 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:49,670 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:49,670 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=134217728-142606335', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:49,671 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:49,671 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:49,671 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:49,671 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:49,671 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:49,671 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:49,671 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:32:49,671 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:32:49,671 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:49,671 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=134217728-142606335
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223249Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:49,672 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223249Z
20220512/eu-central-1/s3/aws4_request
36fc7da484fed5c3ea73c2bb6fe1a5aaf42c2a764b9e201ac15592b3c21d0545
2022-05-12 22:32:49,672 botocore.auth DEBUG    Signature:
42e28918b0c87398f168fb1a693f485eb79c5c28e7fcaf3ed88df8a0b0137130
2022-05-12 22:32:49,672 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:49,672 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:49,672 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:49,672 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:49,893 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:49,893 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'geY7yOeold96w3jFJiFnnei3zxVodSIilhUbN7qIhimVDq+tohYPuRjt7CoTIKW4CrsespdE++8=', 'x-amz-request-id': '7N0WEG454XYMES5S', 'Date': 'Thu, 12 May 2022 22:32:50 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 134217728-142606335/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:49,893 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:49,894 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:49,894 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:49,894 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:50,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113770496}) to executor  for transfer request: 0.
2022-05-12 22:32:50,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:50,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) about to wait for the following futures []
2022-05-12 22:32:50,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) done waiting for dependent futures
2022-05-12 22:32:50,127 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113770496}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 113770496}
2022-05-12 22:32:50,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:51,484 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98566144}) to executor  for transfer request: 0.
2022-05-12 22:32:51,484 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:51,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) about to wait for the following futures []
2022-05-12 22:32:51,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) done waiting for dependent futures
2022-05-12 22:32:51,485 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98566144}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 98566144}
2022-05-12 22:32:51,485 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:53,478 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90177536}) to executor  for transfer request: 0.
2022-05-12 22:32:53,478 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:53,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) about to wait for the following futures []
2022-05-12 22:32:53,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) done waiting for dependent futures
2022-05-12 22:32:53,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90177536}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 90177536}
2022-05-12 22:32:53,479 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:55,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105381888}) to executor  for transfer request: 0.
2022-05-12 22:32:55,165 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:55,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) about to wait for the following futures []
2022-05-12 22:32:55,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) done waiting for dependent futures
2022-05-12 22:32:55,166 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105381888}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 105381888}
2022-05-12 22:32:55,166 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:56,389 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:32:56,389 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:56,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:32:56,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:32:56,390 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 14680064}
2022-05-12 22:32:56,390 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:56,546 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98828288}) to executor  for transfer request: 0.
2022-05-12 22:32:56,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:56,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) about to wait for the following futures []
2022-05-12 22:32:56,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) done waiting for dependent futures
2022-05-12 22:32:56,547 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98828288}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 98828288}
2022-05-12 22:32:56,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,531 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134217728}) to executor  for transfer request: 0.
2022-05-12 22:32:57,531 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) about to wait for the following futures []
2022-05-12 22:32:57,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) done waiting for dependent futures
2022-05-12 22:32:57,532 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134217728}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 134217728}
2022-05-12 22:32:57,532 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,847 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90439680}) to executor  for transfer request: 0.
2022-05-12 22:32:57,847 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) about to wait for the following futures []
2022-05-12 22:32:57,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) done waiting for dependent futures
2022-05-12 22:32:57,847 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90439680}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 90439680}
2022-05-12 22:32:57,848 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:59,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114032640}) to executor  for transfer request: 0.
2022-05-12 22:32:59,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:59,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) about to wait for the following futures []
2022-05-12 22:32:59,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) done waiting for dependent futures
2022-05-12 22:32:59,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114032640}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 114032640}
2022-05-12 22:32:59,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:03,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99090432}) to executor  for transfer request: 0.
2022-05-12 22:33:03,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:03,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) about to wait for the following futures []
2022-05-12 22:33:03,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) done waiting for dependent futures
2022-05-12 22:33:03,329 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99090432}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 99090432}
2022-05-12 22:33:03,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:04,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90701824}) to executor  for transfer request: 0.
2022-05-12 22:33:04,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:04,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) about to wait for the following futures []
2022-05-12 22:33:04,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) done waiting for dependent futures
2022-05-12 22:33:04,283 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90701824}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 90701824}
2022-05-12 22:33:04,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:04,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:33:04,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:04,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:33:04,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:33:04,944 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 22020096}
2022-05-12 22:33:04,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:06,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105644032}) to executor  for transfer request: 0.
2022-05-12 22:33:06,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:06,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) about to wait for the following futures []
2022-05-12 22:33:06,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) done waiting for dependent futures
2022-05-12 22:33:06,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105644032}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 105644032}
2022-05-12 22:33:06,578 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:07,086 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80478208}) to executor  for transfer request: 0.
2022-05-12 22:33:07,086 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:07,086 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) about to wait for the following futures []
2022-05-12 22:33:07,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) done waiting for dependent futures
2022-05-12 22:33:07,087 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80478208}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 80478208}
2022-05-12 22:33:07,087 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:07,340 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99352576}) to executor  for transfer request: 0.
2022-05-12 22:33:07,340 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:07,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) about to wait for the following futures []
2022-05-12 22:33:07,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) done waiting for dependent futures
2022-05-12 22:33:07,341 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99352576}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 99352576}
2022-05-12 22:33:07,341 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:09,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90963968}) to executor  for transfer request: 0.
2022-05-12 22:33:09,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:09,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) about to wait for the following futures []
2022-05-12 22:33:09,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) done waiting for dependent futures
2022-05-12 22:33:09,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90963968}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 90963968}
2022-05-12 22:33:09,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:09,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114294784}) to executor  for transfer request: 0.
2022-05-12 22:33:09,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:09,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) about to wait for the following futures []
2022-05-12 22:33:09,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) done waiting for dependent futures
2022-05-12 22:33:09,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114294784}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 114294784}
2022-05-12 22:33:09,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:09,895 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134479872}) to executor  for transfer request: 0.
2022-05-12 22:33:09,895 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:09,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) about to wait for the following futures []
2022-05-12 22:33:09,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) done waiting for dependent futures
2022-05-12 22:33:09,896 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134479872}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 134479872}
2022-05-12 22:33:09,896 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:33:10,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:33:10,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:33:10,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 14942208}
2022-05-12 22:33:10,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,966 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99614720}) to executor  for transfer request: 0.
2022-05-12 22:33:13,966 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) about to wait for the following futures []
2022-05-12 22:33:13,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) done waiting for dependent futures
2022-05-12 22:33:13,967 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99614720}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 99614720}
2022-05-12 22:33:13,967 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,018 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105906176}) to executor  for transfer request: 0.
2022-05-12 22:33:14,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:14,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) about to wait for the following futures []
2022-05-12 22:33:14,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) done waiting for dependent futures
2022-05-12 22:33:14,019 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105906176}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 105906176}
2022-05-12 22:33:14,019 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91226112}) to executor  for transfer request: 0.
2022-05-12 22:33:14,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:14,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) about to wait for the following futures []
2022-05-12 22:33:14,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) done waiting for dependent futures
2022-05-12 22:33:14,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91226112}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 91226112}
2022-05-12 22:33:14,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:16,271 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134742016}) to executor  for transfer request: 0.
2022-05-12 22:33:16,272 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:16,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) about to wait for the following futures []
2022-05-12 22:33:16,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) done waiting for dependent futures
2022-05-12 22:33:16,272 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134742016}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 134742016}
2022-05-12 22:33:16,273 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:18,449 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114556928}) to executor  for transfer request: 0.
2022-05-12 22:33:18,450 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:18,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) about to wait for the following futures []
2022-05-12 22:33:18,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) done waiting for dependent futures
2022-05-12 22:33:18,450 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114556928}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 114556928}
2022-05-12 22:33:18,451 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:19,801 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117964800}) to executor  for transfer request: 0.
2022-05-12 22:33:19,801 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:19,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) about to wait for the following futures []
2022-05-12 22:33:19,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) done waiting for dependent futures
2022-05-12 22:33:19,801 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117964800}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 117964800}
2022-05-12 22:33:19,802 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:20,025 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91488256}) to executor  for transfer request: 0.
2022-05-12 22:33:20,025 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:20,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) about to wait for the following futures []
2022-05-12 22:33:20,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) done waiting for dependent futures
2022-05-12 22:33:20,026 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91488256}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 91488256}
2022-05-12 22:33:20,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:20,144 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:33:20,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:20,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:33:20,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:33:20,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 15204352}
2022-05-12 22:33:20,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:22,411 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99876864}) to executor  for transfer request: 0.
2022-05-12 22:33:22,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:22,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) about to wait for the following futures []
2022-05-12 22:33:22,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) done waiting for dependent futures
2022-05-12 22:33:22,412 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99876864}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 99876864}
2022-05-12 22:33:22,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106168320}) to executor  for transfer request: 0.
2022-05-12 22:33:23,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) about to wait for the following futures []
2022-05-12 22:33:23,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) done waiting for dependent futures
2022-05-12 22:33:23,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106168320}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 106168320}
2022-05-12 22:33:23,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,651 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:33:23,651 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:33:23,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:33:23,652 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 22282240}
2022-05-12 22:33:23,652 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:26,182 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:33:26,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:26,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:33:26,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:33:26,183 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 12058624}
2022-05-12 22:33:26,183 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:26,755 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135004160}) to executor  for transfer request: 0.
2022-05-12 22:33:26,755 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:26,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) about to wait for the following futures []
2022-05-12 22:33:26,756 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) done waiting for dependent futures
2022-05-12 22:33:26,756 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135004160}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 135004160}
2022-05-12 22:33:26,756 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:28,558 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100139008}) to executor  for transfer request: 0.
2022-05-12 22:33:28,558 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:28,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) about to wait for the following futures []
2022-05-12 22:33:28,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) done waiting for dependent futures
2022-05-12 22:33:28,559 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100139008}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 100139008}
2022-05-12 22:33:28,559 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:28,767 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114819072}) to executor  for transfer request: 0.
2022-05-12 22:33:28,767 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:28,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) about to wait for the following futures []
2022-05-12 22:33:28,768 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) done waiting for dependent futures
2022-05-12 22:33:28,768 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114819072}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 114819072}
2022-05-12 22:33:28,768 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:29,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91750400}) to executor  for transfer request: 0.
2022-05-12 22:33:29,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:29,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) about to wait for the following futures []
2022-05-12 22:33:29,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) done waiting for dependent futures
2022-05-12 22:33:29,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91750400}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 91750400}
2022-05-12 22:33:29,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,675 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80740352}) to executor  for transfer request: 0.
2022-05-12 22:33:30,675 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) about to wait for the following futures []
2022-05-12 22:33:30,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) done waiting for dependent futures
2022-05-12 22:33:30,675 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80740352}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 80740352}
2022-05-12 22:33:30,676 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:31,275 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:33:31,275 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:31,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:33:31,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:33:31,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 15466496}
2022-05-12 22:33:31,276 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:33,466 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106430464}) to executor  for transfer request: 0.
2022-05-12 22:33:33,466 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:33,467 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) about to wait for the following futures []
2022-05-12 22:33:33,467 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) done waiting for dependent futures
2022-05-12 22:33:33,467 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106430464}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 106430464}
2022-05-12 22:33:33,467 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115081216}) to executor  for transfer request: 0.
2022-05-12 22:33:36,105 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) about to wait for the following futures []
2022-05-12 22:33:36,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) done waiting for dependent futures
2022-05-12 22:33:36,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115081216}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 115081216}
2022-05-12 22:33:36,106 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,579 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135266304}) to executor  for transfer request: 0.
2022-05-12 22:33:36,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) about to wait for the following futures []
2022-05-12 22:33:36,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) done waiting for dependent futures
2022-05-12 22:33:36,579 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135266304}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 135266304}
2022-05-12 22:33:36,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,279 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92012544}) to executor  for transfer request: 0.
2022-05-12 22:33:37,279 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:37,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,279 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) about to wait for the following futures []
2022-05-12 22:33:37,279 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) done waiting for dependent futures
2022-05-12 22:33:37,279 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=142606336-150994943'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 142606336, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:37,280 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:37,280 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:37,280 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:37,280 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:37,280 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:37,280 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:37,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) about to wait for the following futures []
2022-05-12 22:33:37,280 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:37,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) done waiting for dependent futures
2022-05-12 22:33:37,281 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:33:37,281 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92012544}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 92012544}
2022-05-12 22:33:37,281 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:37,281 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:37,281 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=142606336-150994943', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:37,281 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:37,282 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,282 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:37,282 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:37,282 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:37,282 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:37,282 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:37,283 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:33:37,283 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:33:37,283 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:37,283 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=142606336-150994943
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223337Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:37,283 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223337Z
20220512/eu-central-1/s3/aws4_request
e43fd078a903a9fe96fe29470fce63c7642655e912abe094cbdd1a35de9df17e
2022-05-12 22:33:37,283 botocore.auth DEBUG    Signature:
6574fc369e91e9bdf0e82593351eb610e40f66c7b1a130291ad8d12c24729afa
2022-05-12 22:33:37,283 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:37,283 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:37,284 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:37,284 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:37,284 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:37,534 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100401152}) to executor  for transfer request: 0.
2022-05-12 22:33:37,535 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:37,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) about to wait for the following futures []
2022-05-12 22:33:37,535 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) about to wait for the following futures []
2022-05-12 22:33:37,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) done waiting for dependent futures
2022-05-12 22:33:37,536 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) done waiting for dependent futures
2022-05-12 22:33:37,536 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100401152}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 100401152}
2022-05-12 22:33:37,537 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=150994944-159383551'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 150994944, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:37,537 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:37,537 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:37,537 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,537 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:37,538 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:37,538 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:37,538 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:37,538 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:37,538 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:33:37,538 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:37,538 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:37,538 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=150994944-159383551', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:37,539 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:37,539 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:37,539 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:37,539 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:37,539 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:37,539 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:37,539 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:33:37,539 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:33:37,540 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:37,540 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=150994944-159383551
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223337Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:37,540 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223337Z
20220512/eu-central-1/s3/aws4_request
527a722433c16a047690d5f1040306d48e943138b3ebadc5d615f068606459af
2022-05-12 22:33:37,540 botocore.auth DEBUG    Signature:
c82338be34eb7f168195a26285f875484f0d58079aa9ace5bcd6d09c3f292fcc
2022-05-12 22:33:37,540 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:37,540 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:37,540 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:37,541 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:37,541 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:40,594 s3transfer.download DEBUG    Retrying exception caught (Read timeout on endpoint URL: "None"), retrying request, (attempt 0 / 5)
Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 436, in _error_catcher
    yield
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 518, in read
    data = self._fp.read(amt) if not fp_closed else b""
  File "/usr/lib/python3.8/http/client.py", line 459, in read
    n = self.readinto(b)
  File "/usr/lib/python3.8/http/client.py", line 503, in readinto
    n = self.fp.readinto(b)
  File "/usr/lib/python3.8/socket.py", line 669, in readinto
    return self._sock.recv_into(b)
  File "/usr/lib/python3.8/ssl.py", line 1241, in recv_into
    return self.read(nbytes, buffer)
  File "/usr/lib/python3.8/ssl.py", line 1099, in read
    return self._sslobj.read(len, buffer)
socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 99, in read
    chunk = self._raw_stream.read(amt)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 540, in read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__
    self.gen.throw(type, value, traceback)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 441, in _error_catcher
    raise ReadTimeoutError(self._pool, None, "Read timed out.")
urllib3.exceptions.ReadTimeoutError: AWSHTTPSConnectionPool(host='plot-delineation.s3.eu-central-1.amazonaws.com', port=443): Read timed out.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 583, in _main
    for chunk in chunks:
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 728, in __next__
    chunk = self._body.read(self._chunksize)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/utils.py", line 599, in read
    value = self._stream.read(*args, **kwargs)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 102, in read
    raise ReadTimeoutError(endpoint_url=e.url, error=e)
botocore.exceptions.ReadTimeoutError: Read timeout on endpoint URL: "None"
2022-05-12 22:33:40,594 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:40,594 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:40,594 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:40,595 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:40,595 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:40,595 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:40,595 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:40,595 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:33:40,595 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:40,595 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:40,595 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=125829120-134217727', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:40,595 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:40,595 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:40,596 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:40,596 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:40,596 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:40,596 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:40,596 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:33:40,596 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:33:40,596 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:40,596 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=125829120-134217727
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223340Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:40,596 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223340Z
20220512/eu-central-1/s3/aws4_request
f7eddc2a745cd434be794748c7f8f56c2f6db0ded3a0e66f1cbb1a4bbbbf0073
2022-05-12 22:33:40,597 botocore.auth DEBUG    Signature:
36a30904def6828bce952e2e3c340f26e0b470f104802926ed4520a70fa0fbe4
2022-05-12 22:33:40,597 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:40,597 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:40,597 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:40,597 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:40,598 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:41,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:33:41,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:41,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:33:41,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:33:41,436 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 22544384}
2022-05-12 22:33:41,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:41,438 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:33:41,438 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:41,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:33:41,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:33:41,439 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 15728640}
2022-05-12 22:33:41,439 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:42,796 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:42,797 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'glz/7bF6bpYXpZ8HfzBfA5GVjnmvqMmSvD8ThbUWfFKv34K18KALLnXRUken/MRPaT/V+kiHLGw=', 'x-amz-request-id': 'WKJ4SA003HVQV605', 'Date': 'Thu, 12 May 2022 22:33:43 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 142606336-150994943/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:42,797 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:42,798 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:42,798 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:42,798 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:42,804 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135528448}) to executor  for transfer request: 0.
2022-05-12 22:33:42,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:42,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) about to wait for the following futures []
2022-05-12 22:33:42,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) done waiting for dependent futures
2022-05-12 22:33:42,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135528448}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 135528448}
2022-05-12 22:33:42,805 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:43,129 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:43,130 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '8pIBRsq+f/twogAabnkLo3PKE8l2oaFznH2S8pyomCBdXFDX8ujkJKSssK8OIvmSfVBzQ9hLTaA=', 'x-amz-request-id': 'WKJ0Y78PBS4PE85E', 'Date': 'Thu, 12 May 2022 22:33:43 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 150994944-159383551/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:43,130 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:43,131 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:43,131 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:43,131 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:44,887 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115343360}) to executor  for transfer request: 0.
2022-05-12 22:33:44,888 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:44,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) about to wait for the following futures []
2022-05-12 22:33:44,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) done waiting for dependent futures
2022-05-12 22:33:44,888 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115343360}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 115343360}
2022-05-12 22:33:44,889 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:46,005 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:46,006 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'pIfq34kbYRU0CzyTe+e2HTWjDHx0hfAU9IKqFGHcSeZNLLWZt5+qKyr0Z8HSn2QWQbZpbSJKw/g=', 'x-amz-request-id': '2HXXZ3YX4QYKWBA9', 'Date': 'Thu, 12 May 2022 22:33:46 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 125829120-134217727/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:46,006 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:46,007 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:46,007 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:46,007 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:47,377 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:33:47,377 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:47,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:33:47,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:33:47,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 11534336}
2022-05-12 22:33:47,378 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:48,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142606336}) to executor  for transfer request: 0.
2022-05-12 22:33:48,986 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:48,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) about to wait for the following futures []
2022-05-12 22:33:48,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) done waiting for dependent futures
2022-05-12 22:33:48,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142606336}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 142606336}
2022-05-12 22:33:48,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:49,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106692608}) to executor  for transfer request: 0.
2022-05-12 22:33:49,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) about to wait for the following futures []
2022-05-12 22:33:49,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) done waiting for dependent futures
2022-05-12 22:33:49,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106692608}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 106692608}
2022-05-12 22:33:49,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115605504}) to executor  for transfer request: 0.
2022-05-12 22:33:51,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) about to wait for the following futures []
2022-05-12 22:33:51,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) done waiting for dependent futures
2022-05-12 22:33:51,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115605504}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 115605504}
2022-05-12 22:33:51,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:33:51,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:33:51,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:33:51,476 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 15990784}
2022-05-12 22:33:51,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,223 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125829120}) to executor  for transfer request: 0.
2022-05-12 22:33:52,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) about to wait for the following futures []
2022-05-12 22:33:52,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) done waiting for dependent futures
2022-05-12 22:33:52,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125829120}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 125829120}
2022-05-12 22:33:52,224 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150994944}) to executor  for transfer request: 0.
2022-05-12 22:33:52,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) about to wait for the following futures []
2022-05-12 22:33:52,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) done waiting for dependent futures
2022-05-12 22:33:52,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150994944}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 150994944}
2022-05-12 22:33:52,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:53,552 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135790592}) to executor  for transfer request: 0.
2022-05-12 22:33:53,552 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:53,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) about to wait for the following futures []
2022-05-12 22:33:53,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) done waiting for dependent futures
2022-05-12 22:33:53,552 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135790592}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 135790592}
2022-05-12 22:33:53,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:56,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142868480}) to executor  for transfer request: 0.
2022-05-12 22:33:56,254 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:56,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) about to wait for the following futures []
2022-05-12 22:33:56,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) done waiting for dependent futures
2022-05-12 22:33:56,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142868480}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 142868480}
2022-05-12 22:33:56,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,856 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106954752}) to executor  for transfer request: 0.
2022-05-12 22:33:59,856 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) about to wait for the following futures []
2022-05-12 22:33:59,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) done waiting for dependent futures
2022-05-12 22:33:59,857 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106954752}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 106954752}
2022-05-12 22:33:59,857 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:00,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126091264}) to executor  for transfer request: 0.
2022-05-12 22:34:00,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:00,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) about to wait for the following futures []
2022-05-12 22:34:00,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) done waiting for dependent futures
2022-05-12 22:34:00,724 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126091264}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 126091264}
2022-05-12 22:34:00,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,141 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:34:01,141 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:01,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:34:01,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:34:01,142 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 12320768}
2022-05-12 22:34:01,142 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,959 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115867648}) to executor  for transfer request: 0.
2022-05-12 22:34:01,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:01,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) about to wait for the following futures []
2022-05-12 22:34:01,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) done waiting for dependent futures
2022-05-12 22:34:01,960 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115867648}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 115867648}
2022-05-12 22:34:01,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:03,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81002496}) to executor  for transfer request: 0.
2022-05-12 22:34:03,186 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:03,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) about to wait for the following futures []
2022-05-12 22:34:03,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) done waiting for dependent futures
2022-05-12 22:34:03,186 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81002496}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 81002496}
2022-05-12 22:34:03,187 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:03,334 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151257088}) to executor  for transfer request: 0.
2022-05-12 22:34:03,334 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:03,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) about to wait for the following futures []
2022-05-12 22:34:03,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) done waiting for dependent futures
2022-05-12 22:34:03,335 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151257088}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 151257088}
2022-05-12 22:34:03,335 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:03,879 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:34:03,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:03,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:34:03,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:34:03,880 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 22806528}
2022-05-12 22:34:03,880 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:03,989 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:34:03,989 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:03,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:34:03,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:34:03,990 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 16252928}
2022-05-12 22:34:03,990 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:05,089 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118226944}) to executor  for transfer request: 0.
2022-05-12 22:34:05,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:05,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) about to wait for the following futures []
2022-05-12 22:34:05,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) done waiting for dependent futures
2022-05-12 22:34:05,090 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118226944}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 118226944}
2022-05-12 22:34:05,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:08,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136052736}) to executor  for transfer request: 0.
2022-05-12 22:34:08,009 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:08,009 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) about to wait for the following futures []
2022-05-12 22:34:08,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) done waiting for dependent futures
2022-05-12 22:34:08,010 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136052736}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 136052736}
2022-05-12 22:34:08,010 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:09,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126353408}) to executor  for transfer request: 0.
2022-05-12 22:34:09,310 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:09,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) about to wait for the following futures []
2022-05-12 22:34:09,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) done waiting for dependent futures
2022-05-12 22:34:09,311 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126353408}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 126353408}
2022-05-12 22:34:09,311 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:09,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116129792}) to executor  for transfer request: 0.
2022-05-12 22:34:09,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:09,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) about to wait for the following futures []
2022-05-12 22:34:09,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) done waiting for dependent futures
2022-05-12 22:34:09,359 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116129792}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 116129792}
2022-05-12 22:34:09,360 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,341 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107216896}) to executor  for transfer request: 0.
2022-05-12 22:34:13,341 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) about to wait for the following futures []
2022-05-12 22:34:13,342 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) done waiting for dependent futures
2022-05-12 22:34:13,342 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107216896}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 107216896}
2022-05-12 22:34:13,342 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,820 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151519232}) to executor  for transfer request: 0.
2022-05-12 22:34:13,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) about to wait for the following futures []
2022-05-12 22:34:13,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) done waiting for dependent futures
2022-05-12 22:34:13,821 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151519232}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 151519232}
2022-05-12 22:34:13,821 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,905 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:34:13,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,905 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:34:13,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:34:13,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:34:13,906 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,906 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=31>, 'offset': 16515072}
2022-05-12 22:34:13,907 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,907 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:34:13,907 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:34:13,907 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:34:13,907 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:16,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:34:16,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:16,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:34:16,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:34:16,325 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 23068672}
2022-05-12 22:34:16,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:17,823 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126615552}) to executor  for transfer request: 0.
2022-05-12 22:34:17,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:17,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) about to wait for the following futures []
2022-05-12 22:34:17,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) done waiting for dependent futures
2022-05-12 22:34:17,824 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126615552}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 126615552}
2022-05-12 22:34:17,824 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:17,917 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81264640}) to executor  for transfer request: 0.
2022-05-12 22:34:17,917 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:17,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) about to wait for the following futures []
2022-05-12 22:34:17,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) done waiting for dependent futures
2022-05-12 22:34:17,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81264640}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 81264640}
2022-05-12 22:34:17,918 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:18,111 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118489088}) to executor  for transfer request: 0.
2022-05-12 22:34:18,111 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:18,111 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) about to wait for the following futures []
2022-05-12 22:34:18,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) done waiting for dependent futures
2022-05-12 22:34:18,112 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118489088}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 118489088}
2022-05-12 22:34:18,112 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:18,318 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116391936}) to executor  for transfer request: 0.
2022-05-12 22:34:18,318 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:18,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) about to wait for the following futures []
2022-05-12 22:34:18,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) done waiting for dependent futures
2022-05-12 22:34:18,319 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116391936}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 116391936}
2022-05-12 22:34:18,319 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,896 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136314880}) to executor  for transfer request: 0.
2022-05-12 22:34:19,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) about to wait for the following futures []
2022-05-12 22:34:19,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) done waiting for dependent futures
2022-05-12 22:34:19,897 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136314880}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 136314880}
2022-05-12 22:34:19,897 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:23,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107479040}) to executor  for transfer request: 0.
2022-05-12 22:34:23,186 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:23,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) about to wait for the following futures []
2022-05-12 22:34:23,186 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) done waiting for dependent futures
2022-05-12 22:34:23,187 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107479040}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 107479040}
2022-05-12 22:34:23,187 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,082 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116654080}) to executor  for transfer request: 0.
2022-05-12 22:34:24,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:24,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) about to wait for the following futures []
2022-05-12 22:34:24,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) done waiting for dependent futures
2022-05-12 22:34:24,083 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116654080}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 116654080}
2022-05-12 22:34:24,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:25,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126877696}) to executor  for transfer request: 0.
2022-05-12 22:34:25,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:25,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) about to wait for the following futures []
2022-05-12 22:34:25,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) done waiting for dependent futures
2022-05-12 22:34:25,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126877696}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 126877696}
2022-05-12 22:34:25,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:26,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151781376}) to executor  for transfer request: 0.
2022-05-12 22:34:26,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:26,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) about to wait for the following futures []
2022-05-12 22:34:26,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) done waiting for dependent futures
2022-05-12 22:34:26,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151781376}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 151781376}
2022-05-12 22:34:26,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:26,316 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143130624}) to executor  for transfer request: 0.
2022-05-12 22:34:26,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:26,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) about to wait for the following futures []
2022-05-12 22:34:26,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) done waiting for dependent futures
2022-05-12 22:34:26,317 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143130624}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 143130624}
2022-05-12 22:34:26,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:28,492 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118751232}) to executor  for transfer request: 0.
2022-05-12 22:34:28,492 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:28,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) about to wait for the following futures []
2022-05-12 22:34:28,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) done waiting for dependent futures
2022-05-12 22:34:28,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118751232}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 118751232}
2022-05-12 22:34:28,493 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:29,612 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:34:29,612 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:29,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:34:29,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:34:29,613 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 12582912}
2022-05-12 22:34:29,613 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:29,824 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136577024}) to executor  for transfer request: 0.
2022-05-12 22:34:29,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:29,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) about to wait for the following futures []
2022-05-12 22:34:29,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) done waiting for dependent futures
2022-05-12 22:34:29,824 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136577024}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 136577024}
2022-05-12 22:34:29,824 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,700 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116916224}) to executor  for transfer request: 0.
2022-05-12 22:34:31,700 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) about to wait for the following futures []
2022-05-12 22:34:31,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) done waiting for dependent futures
2022-05-12 22:34:31,701 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116916224}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 116916224}
2022-05-12 22:34:31,701 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:32,339 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81526784}) to executor  for transfer request: 0.
2022-05-12 22:34:32,339 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:32,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) about to wait for the following futures []
2022-05-12 22:34:32,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) done waiting for dependent futures
2022-05-12 22:34:32,340 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81526784}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 81526784}
2022-05-12 22:34:32,340 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:33,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127139840}) to executor  for transfer request: 0.
2022-05-12 22:34:33,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:33,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) about to wait for the following futures []
2022-05-12 22:34:33,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) done waiting for dependent futures
2022-05-12 22:34:33,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127139840}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 127139840}
2022-05-12 22:34:33,045 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:34,415 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107741184}) to executor  for transfer request: 0.
2022-05-12 22:34:34,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:34,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) about to wait for the following futures []
2022-05-12 22:34:34,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) done waiting for dependent futures
2022-05-12 22:34:34,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107741184}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 107741184}
2022-05-12 22:34:34,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:35,193 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152043520}) to executor  for transfer request: 0.
2022-05-12 22:34:35,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:35,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) about to wait for the following futures []
2022-05-12 22:34:35,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) done waiting for dependent futures
2022-05-12 22:34:35,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152043520}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 152043520}
2022-05-12 22:34:35,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:38,262 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143392768}) to executor  for transfer request: 0.
2022-05-12 22:34:38,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:38,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) about to wait for the following futures []
2022-05-12 22:34:38,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) done waiting for dependent futures
2022-05-12 22:34:38,263 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143392768}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 143392768}
2022-05-12 22:34:38,263 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:38,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:34:38,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:38,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:34:38,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:34:38,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 23330816}
2022-05-12 22:34:38,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,179 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117178368}) to executor  for transfer request: 0.
2022-05-12 22:34:39,180 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,180 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) about to wait for the following futures []
2022-05-12 22:34:39,180 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) about to wait for the following futures []
2022-05-12 22:34:39,181 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) done waiting for dependent futures
2022-05-12 22:34:39,181 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) done waiting for dependent futures
2022-05-12 22:34:39,181 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117178368}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 117178368}
2022-05-12 22:34:39,181 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=159383552-167772159'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 159383552, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:34:39,182 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:39,182 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,182 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:39,182 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:39,182 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:39,183 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:39,183 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:39,183 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:34:39,183 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:34:39,183 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:39,183 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:39,183 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=159383552-167772159', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:34:39,184 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:39,184 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:34:39,184 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:39,184 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:39,184 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:34:39,184 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:34:39,184 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:34:39,184 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:34:39,185 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:34:39,185 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=159383552-167772159
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223439Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:34:39,185 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223439Z
20220512/eu-central-1/s3/aws4_request
6508f3db518804e6f13c060a1c8dd82073f603142cb56170eea2266e1c1f1c64
2022-05-12 22:34:39,185 botocore.auth DEBUG    Signature:
bc2a52cf45d562139e9617e24925fb68351372d900f7af60345f4e1bbb620056
2022-05-12 22:34:39,185 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:39,185 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:39,186 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:34:39,186 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:34:39,186 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:34:39,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127401984}) to executor  for transfer request: 0.
2022-05-12 22:34:39,943 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) about to wait for the following futures []
2022-05-12 22:34:39,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) done waiting for dependent futures
2022-05-12 22:34:39,943 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127401984}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 127401984}
2022-05-12 22:34:39,944 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:40,680 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:34:40,681 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'K0wddDxRMIrsY8VqlyuCIc40DptUCWNVUm8Sg5b5W5j7I3UdbhTfKQ4AADsznJ3lBDkp0l6IdsY=', 'x-amz-request-id': '6ZBWZM4HZW70N3V0', 'Date': 'Thu, 12 May 2022 22:34:41 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 159383552-167772159/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:34:40,681 botocore.parsers DEBUG    Response body:

2022-05-12 22:34:40,682 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:34:40,682 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:34:40,682 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:34:41,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119013376}) to executor  for transfer request: 0.
2022-05-12 22:34:41,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) about to wait for the following futures []
2022-05-12 22:34:41,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) done waiting for dependent futures
2022-05-12 22:34:41,300 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119013376}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 119013376}
2022-05-12 22:34:41,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:41,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108003328}) to executor  for transfer request: 0.
2022-05-12 22:34:41,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) about to wait for the following futures []
2022-05-12 22:34:41,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) done waiting for dependent futures
2022-05-12 22:34:41,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108003328}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 108003328}
2022-05-12 22:34:41,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:41,850 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81788928}) to executor  for transfer request: 0.
2022-05-12 22:34:41,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) about to wait for the following futures []
2022-05-12 22:34:41,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) done waiting for dependent futures
2022-05-12 22:34:41,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81788928}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 81788928}
2022-05-12 22:34:41,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:42,321 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136839168}) to executor  for transfer request: 0.
2022-05-12 22:34:42,321 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:42,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) about to wait for the following futures []
2022-05-12 22:34:42,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) done waiting for dependent futures
2022-05-12 22:34:42,322 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136839168}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 136839168}
2022-05-12 22:34:42,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:47,071 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152305664}) to executor  for transfer request: 0.
2022-05-12 22:34:47,072 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:47,072 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) about to wait for the following futures []
2022-05-12 22:34:47,072 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) done waiting for dependent futures
2022-05-12 22:34:47,072 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152305664}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 152305664}
2022-05-12 22:34:47,073 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159383552}) to executor  for transfer request: 0.
2022-05-12 22:34:48,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) about to wait for the following futures []
2022-05-12 22:34:48,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) done waiting for dependent futures
2022-05-12 22:34:48,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159383552}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 159383552}
2022-05-12 22:34:48,203 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,859 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127664128}) to executor  for transfer request: 0.
2022-05-12 22:34:48,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) about to wait for the following futures []
2022-05-12 22:34:48,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) done waiting for dependent futures
2022-05-12 22:34:48,860 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127664128}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 127664128}
2022-05-12 22:34:48,860 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:51,614 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143654912}) to executor  for transfer request: 0.
2022-05-12 22:34:51,614 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:51,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) about to wait for the following futures []
2022-05-12 22:34:51,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) done waiting for dependent futures
2022-05-12 22:34:51,615 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143654912}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 143654912}
2022-05-12 22:34:51,615 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,556 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159645696}) to executor  for transfer request: 0.
2022-05-12 22:34:52,556 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) about to wait for the following futures []
2022-05-12 22:34:52,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) done waiting for dependent futures
2022-05-12 22:34:52,557 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159645696}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 159645696}
2022-05-12 22:34:52,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137101312}) to executor  for transfer request: 0.
2022-05-12 22:34:52,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) about to wait for the following futures []
2022-05-12 22:34:52,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) done waiting for dependent futures
2022-05-12 22:34:52,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137101312}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 137101312}
2022-05-12 22:34:52,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:53,277 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108265472}) to executor  for transfer request: 0.
2022-05-12 22:34:53,277 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:53,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) about to wait for the following futures []
2022-05-12 22:34:53,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) done waiting for dependent futures
2022-05-12 22:34:53,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108265472}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 108265472}
2022-05-12 22:34:53,278 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,215 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152567808}) to executor  for transfer request: 0.
2022-05-12 22:34:54,215 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) about to wait for the following futures []
2022-05-12 22:34:54,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) done waiting for dependent futures
2022-05-12 22:34:54,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152567808}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 152567808}
2022-05-12 22:34:54,216 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119275520}) to executor  for transfer request: 0.
2022-05-12 22:34:54,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) about to wait for the following futures []
2022-05-12 22:34:54,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) done waiting for dependent futures
2022-05-12 22:34:54,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119275520}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 119275520}
2022-05-12 22:34:54,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:34:54,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:34:54,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:34:54,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 23592960}
2022-05-12 22:34:54,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:56,584 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:34:56,584 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:56,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:34:56,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:34:56,585 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 12845056}
2022-05-12 22:34:56,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,217 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127926272}) to executor  for transfer request: 0.
2022-05-12 22:34:57,217 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:57,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) about to wait for the following futures []
2022-05-12 22:34:57,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) done waiting for dependent futures
2022-05-12 22:34:57,218 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127926272}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 127926272}
2022-05-12 22:34:57,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:59,485 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159907840}) to executor  for transfer request: 0.
2022-05-12 22:34:59,485 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:59,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) about to wait for the following futures []
2022-05-12 22:34:59,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) done waiting for dependent futures
2022-05-12 22:34:59,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159907840}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 159907840}
2022-05-12 22:34:59,486 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:01,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143917056}) to executor  for transfer request: 0.
2022-05-12 22:35:01,458 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:01,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) about to wait for the following futures []
2022-05-12 22:35:01,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) done waiting for dependent futures
2022-05-12 22:35:01,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143917056}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 143917056}
2022-05-12 22:35:01,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82051072}) to executor  for transfer request: 0.
2022-05-12 22:35:02,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) about to wait for the following futures []
2022-05-12 22:35:02,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) done waiting for dependent futures
2022-05-12 22:35:02,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82051072}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 82051072}
2022-05-12 22:35:02,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:03,571 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128188416}) to executor  for transfer request: 0.
2022-05-12 22:35:03,571 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:03,571 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) about to wait for the following futures []
2022-05-12 22:35:03,571 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) done waiting for dependent futures
2022-05-12 22:35:03,571 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128188416}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 128188416}
2022-05-12 22:35:03,572 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:04,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160169984}) to executor  for transfer request: 0.
2022-05-12 22:35:04,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:04,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) about to wait for the following futures []
2022-05-12 22:35:04,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) done waiting for dependent futures
2022-05-12 22:35:04,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160169984}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 160169984}
2022-05-12 22:35:04,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:04,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152829952}) to executor  for transfer request: 0.
2022-05-12 22:35:04,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:04,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) about to wait for the following futures []
2022-05-12 22:35:04,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) done waiting for dependent futures
2022-05-12 22:35:04,241 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152829952}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 152829952}
2022-05-12 22:35:04,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:04,965 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108527616}) to executor  for transfer request: 0.
2022-05-12 22:35:04,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:04,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) about to wait for the following futures []
2022-05-12 22:35:04,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) done waiting for dependent futures
2022-05-12 22:35:04,965 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108527616}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 108527616}
2022-05-12 22:35:04,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:05,887 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137363456}) to executor  for transfer request: 0.
2022-05-12 22:35:05,887 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:05,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) about to wait for the following futures []
2022-05-12 22:35:05,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) done waiting for dependent futures
2022-05-12 22:35:05,888 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137363456}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 137363456}
2022-05-12 22:35:05,888 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128450560}) to executor  for transfer request: 0.
2022-05-12 22:35:09,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) about to wait for the following futures []
2022-05-12 22:35:09,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) done waiting for dependent futures
2022-05-12 22:35:09,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128450560}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 128450560}
2022-05-12 22:35:09,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,522 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119537664}) to executor  for transfer request: 0.
2022-05-12 22:35:09,523 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) about to wait for the following futures []
2022-05-12 22:35:09,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) done waiting for dependent futures
2022-05-12 22:35:09,523 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119537664}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 119537664}
2022-05-12 22:35:09,524 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144179200}) to executor  for transfer request: 0.
2022-05-12 22:35:09,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) about to wait for the following futures []
2022-05-12 22:35:09,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) done waiting for dependent futures
2022-05-12 22:35:09,725 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144179200}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 144179200}
2022-05-12 22:35:09,725 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,566 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82313216}) to executor  for transfer request: 0.
2022-05-12 22:35:10,566 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) about to wait for the following futures []
2022-05-12 22:35:10,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) done waiting for dependent futures
2022-05-12 22:35:10,566 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82313216}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 82313216}
2022-05-12 22:35:10,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:11,635 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153092096}) to executor  for transfer request: 0.
2022-05-12 22:35:11,635 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:11,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) about to wait for the following futures []
2022-05-12 22:35:11,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) done waiting for dependent futures
2022-05-12 22:35:11,636 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153092096}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 153092096}
2022-05-12 22:35:11,636 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:12,726 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160432128}) to executor  for transfer request: 0.
2022-05-12 22:35:12,727 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:12,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) about to wait for the following futures []
2022-05-12 22:35:12,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) done waiting for dependent futures
2022-05-12 22:35:12,727 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160432128}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 160432128}
2022-05-12 22:35:12,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:12,835 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:35:12,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:12,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:35:12,836 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:35:12,836 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 23855104}
2022-05-12 22:35:12,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:13,625 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108789760}) to executor  for transfer request: 0.
2022-05-12 22:35:13,625 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:13,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:13,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) about to wait for the following futures []
2022-05-12 22:35:13,626 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) about to wait for the following futures []
2022-05-12 22:35:13,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) done waiting for dependent futures
2022-05-12 22:35:13,626 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) done waiting for dependent futures
2022-05-12 22:35:13,626 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108789760}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 108789760}
2022-05-12 22:35:13,627 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=167772160-176160767'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 167772160, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:13,627 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:13,627 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:13,627 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:13,628 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:13,628 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:13,628 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:13,628 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:13,629 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:13,629 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:35:13,629 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:13,629 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:13,629 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=167772160-176160767', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:13,629 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:13,629 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:13,629 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:13,629 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:13,629 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:13,629 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:13,630 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:35:13,630 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:35:13,630 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:13,630 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=167772160-176160767
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223513Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:13,630 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223513Z
20220512/eu-central-1/s3/aws4_request
d2d0e2ee257635993e212e6d652e33510e828ae4589d8eae3594e20ce190e24b
2022-05-12 22:35:13,630 botocore.auth DEBUG    Signature:
c5cf5f41c48d4e27a91836b884bd3f84c8ed617124b393ef2d6f7df44deb41e0
2022-05-12 22:35:13,630 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:13,630 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:13,631 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:13,631 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:13,631 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:35:14,960 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137625600}) to executor  for transfer request: 0.
2022-05-12 22:35:14,960 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:14,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) about to wait for the following futures []
2022-05-12 22:35:14,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) done waiting for dependent futures
2022-05-12 22:35:14,961 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137625600}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 137625600}
2022-05-12 22:35:14,961 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:35:15,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:35:15,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:35:15,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 11796480}
2022-05-12 22:35:15,266 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,602 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153354240}) to executor  for transfer request: 0.
2022-05-12 22:35:17,603 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:17,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) about to wait for the following futures []
2022-05-12 22:35:17,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) done waiting for dependent futures
2022-05-12 22:35:17,603 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153354240}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 153354240}
2022-05-12 22:35:17,604 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144441344}) to executor  for transfer request: 0.
2022-05-12 22:35:17,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:17,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) about to wait for the following futures []
2022-05-12 22:35:17,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) done waiting for dependent futures
2022-05-12 22:35:17,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144441344}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 144441344}
2022-05-12 22:35:17,916 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:18,000 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160694272}) to executor  for transfer request: 0.
2022-05-12 22:35:18,000 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:18,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) about to wait for the following futures []
2022-05-12 22:35:18,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) done waiting for dependent futures
2022-05-12 22:35:18,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160694272}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 160694272}
2022-05-12 22:35:18,001 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:18,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128712704}) to executor  for transfer request: 0.
2022-05-12 22:35:18,047 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:18,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) about to wait for the following futures []
2022-05-12 22:35:18,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) done waiting for dependent futures
2022-05-12 22:35:18,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128712704}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 128712704}
2022-05-12 22:35:18,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:18,070 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:18,070 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'M6GRBitoJA8P94TlM5+Lq4SScVigWEeN07gxFCrRpb9sujCVWPfBZ7bspMTHEcoCIaimBZVAazM=', 'x-amz-request-id': 'K2GECAPA0VMMWCGP', 'Date': 'Thu, 12 May 2022 22:35:18 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 167772160-176160767/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:18,070 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:18,071 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:18,071 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:18,071 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:21,770 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:35:21,770 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,770 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:35:21,770 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:35:21,770 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 13107200}
2022-05-12 22:35:21,771 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,800 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82575360}) to executor  for transfer request: 0.
2022-05-12 22:35:21,800 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) about to wait for the following futures []
2022-05-12 22:35:21,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) done waiting for dependent futures
2022-05-12 22:35:21,801 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82575360}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 82575360}
2022-05-12 22:35:21,801 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:22,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119799808}) to executor  for transfer request: 0.
2022-05-12 22:35:22,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:22,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) about to wait for the following futures []
2022-05-12 22:35:22,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) done waiting for dependent futures
2022-05-12 22:35:22,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119799808}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 119799808}
2022-05-12 22:35:22,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:23,202 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167772160}) to executor  for transfer request: 0.
2022-05-12 22:35:23,203 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:23,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) about to wait for the following futures []
2022-05-12 22:35:23,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) done waiting for dependent futures
2022-05-12 22:35:23,203 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167772160}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 167772160}
2022-05-12 22:35:23,204 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:24,153 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137887744}) to executor  for transfer request: 0.
2022-05-12 22:35:24,153 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:24,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) about to wait for the following futures []
2022-05-12 22:35:24,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) done waiting for dependent futures
2022-05-12 22:35:24,154 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137887744}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 137887744}
2022-05-12 22:35:24,154 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160956416}) to executor  for transfer request: 0.
2022-05-12 22:35:25,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) about to wait for the following futures []
2022-05-12 22:35:25,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) done waiting for dependent futures
2022-05-12 22:35:25,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160956416}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 160956416}
2022-05-12 22:35:25,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,124 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144703488}) to executor  for transfer request: 0.
2022-05-12 22:35:25,124 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) about to wait for the following futures []
2022-05-12 22:35:25,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) done waiting for dependent futures
2022-05-12 22:35:25,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144703488}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 144703488}
2022-05-12 22:35:25,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:28,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128974848}) to executor  for transfer request: 0.
2022-05-12 22:35:28,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:28,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) about to wait for the following futures []
2022-05-12 22:35:28,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) done waiting for dependent futures
2022-05-12 22:35:28,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128974848}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 128974848}
2022-05-12 22:35:28,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:28,840 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153616384}) to executor  for transfer request: 0.
2022-05-12 22:35:28,840 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:28,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) about to wait for the following futures []
2022-05-12 22:35:28,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) done waiting for dependent futures
2022-05-12 22:35:28,841 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153616384}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 153616384}
2022-05-12 22:35:28,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,580 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161218560}) to executor  for transfer request: 0.
2022-05-12 22:35:31,580 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) about to wait for the following futures []
2022-05-12 22:35:31,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) done waiting for dependent futures
2022-05-12 22:35:31,581 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161218560}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 161218560}
2022-05-12 22:35:31,581 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,612 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120061952}) to executor  for transfer request: 0.
2022-05-12 22:35:31,612 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) about to wait for the following futures []
2022-05-12 22:35:31,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) done waiting for dependent futures
2022-05-12 22:35:31,613 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120061952}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 120061952}
2022-05-12 22:35:31,613 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,724 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138149888}) to executor  for transfer request: 0.
2022-05-12 22:35:31,724 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) about to wait for the following futures []
2022-05-12 22:35:31,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) done waiting for dependent futures
2022-05-12 22:35:31,724 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138149888}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 138149888}
2022-05-12 22:35:31,725 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,838 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168034304}) to executor  for transfer request: 0.
2022-05-12 22:35:31,838 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) about to wait for the following futures []
2022-05-12 22:35:31,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) done waiting for dependent futures
2022-05-12 22:35:31,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168034304}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 168034304}
2022-05-12 22:35:31,839 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:32,977 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:35:32,977 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:32,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:35:32,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:35:32,978 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 24117248}
2022-05-12 22:35:32,978 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:33,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82837504}) to executor  for transfer request: 0.
2022-05-12 22:35:33,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:33,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) about to wait for the following futures []
2022-05-12 22:35:33,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) done waiting for dependent futures
2022-05-12 22:35:33,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82837504}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 82837504}
2022-05-12 22:35:33,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:34,657 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144965632}) to executor  for transfer request: 0.
2022-05-12 22:35:34,657 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) about to wait for the following futures []
2022-05-12 22:35:34,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) done waiting for dependent futures
2022-05-12 22:35:34,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144965632}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 144965632}
2022-05-12 22:35:34,658 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,288 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129236992}) to executor  for transfer request: 0.
2022-05-12 22:35:35,288 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) about to wait for the following futures []
2022-05-12 22:35:35,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) done waiting for dependent futures
2022-05-12 22:35:35,289 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129236992}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 129236992}
2022-05-12 22:35:35,289 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:37,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153878528}) to executor  for transfer request: 0.
2022-05-12 22:35:37,972 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:37,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) about to wait for the following futures []
2022-05-12 22:35:37,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) done waiting for dependent futures
2022-05-12 22:35:37,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153878528}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 153878528}
2022-05-12 22:35:37,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,073 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168296448}) to executor  for transfer request: 0.
2022-05-12 22:35:40,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) about to wait for the following futures []
2022-05-12 22:35:40,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) done waiting for dependent futures
2022-05-12 22:35:40,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168296448}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 168296448}
2022-05-12 22:35:40,075 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,536 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161480704}) to executor  for transfer request: 0.
2022-05-12 22:35:40,537 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) about to wait for the following futures []
2022-05-12 22:35:40,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) done waiting for dependent futures
2022-05-12 22:35:40,537 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161480704}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 161480704}
2022-05-12 22:35:40,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,540 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138412032}) to executor  for transfer request: 0.
2022-05-12 22:35:40,540 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) about to wait for the following futures []
2022-05-12 22:35:40,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) done waiting for dependent futures
2022-05-12 22:35:40,541 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138412032}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 138412032}
2022-05-12 22:35:40,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,299 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129499136}) to executor  for transfer request: 0.
2022-05-12 22:35:43,299 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,299 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) about to wait for the following futures []
2022-05-12 22:35:43,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) done waiting for dependent futures
2022-05-12 22:35:43,300 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129499136}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 129499136}
2022-05-12 22:35:43,300 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:45,045 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168558592}) to executor  for transfer request: 0.
2022-05-12 22:35:45,045 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:45,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) about to wait for the following futures []
2022-05-12 22:35:45,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) done waiting for dependent futures
2022-05-12 22:35:45,046 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168558592}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 168558592}
2022-05-12 22:35:45,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:46,107 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145227776}) to executor  for transfer request: 0.
2022-05-12 22:35:46,107 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:46,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) about to wait for the following futures []
2022-05-12 22:35:46,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) done waiting for dependent futures
2022-05-12 22:35:46,108 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145227776}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 145227776}
2022-05-12 22:35:46,108 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:46,144 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83099648}) to executor  for transfer request: 0.
2022-05-12 22:35:46,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:46,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) about to wait for the following futures []
2022-05-12 22:35:46,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) done waiting for dependent futures
2022-05-12 22:35:46,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83099648}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 83099648}
2022-05-12 22:35:46,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:46,160 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120324096}) to executor  for transfer request: 0.
2022-05-12 22:35:46,160 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:46,161 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) about to wait for the following futures []
2022-05-12 22:35:46,161 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) done waiting for dependent futures
2022-05-12 22:35:46,161 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120324096}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 120324096}
2022-05-12 22:35:46,161 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:47,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138674176}) to executor  for transfer request: 0.
2022-05-12 22:35:47,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:47,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) about to wait for the following futures []
2022-05-12 22:35:47,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) done waiting for dependent futures
2022-05-12 22:35:47,914 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138674176}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 138674176}
2022-05-12 22:35:47,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:48,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154140672}) to executor  for transfer request: 0.
2022-05-12 22:35:48,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:48,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) about to wait for the following futures []
2022-05-12 22:35:48,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) done waiting for dependent futures
2022-05-12 22:35:48,702 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154140672}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 154140672}
2022-05-12 22:35:48,703 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,237 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161742848}) to executor  for transfer request: 0.
2022-05-12 22:35:49,237 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) about to wait for the following futures []
2022-05-12 22:35:49,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) done waiting for dependent futures
2022-05-12 22:35:49,238 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161742848}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 161742848}
2022-05-12 22:35:49,238 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,443 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:35:49,443 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:35:49,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:35:49,443 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 24379392}
2022-05-12 22:35:49,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:50,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129761280}) to executor  for transfer request: 0.
2022-05-12 22:35:50,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:50,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) about to wait for the following futures []
2022-05-12 22:35:50,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) done waiting for dependent futures
2022-05-12 22:35:50,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129761280}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 129761280}
2022-05-12 22:35:50,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:53,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:35:53,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:53,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:35:53,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:35:53,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 13369344}
2022-05-12 22:35:53,746 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,779 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145489920}) to executor  for transfer request: 0.
2022-05-12 22:35:54,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,779 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) about to wait for the following futures []
2022-05-12 22:35:54,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) done waiting for dependent futures
2022-05-12 22:35:54,780 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145489920}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 145489920}
2022-05-12 22:35:54,780 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138936320}) to executor  for transfer request: 0.
2022-05-12 22:35:54,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) about to wait for the following futures []
2022-05-12 22:35:54,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) done waiting for dependent futures
2022-05-12 22:35:54,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138936320}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 138936320}
2022-05-12 22:35:54,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:55,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162004992}) to executor  for transfer request: 0.
2022-05-12 22:35:55,796 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:55,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) about to wait for the following futures []
2022-05-12 22:35:55,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) done waiting for dependent futures
2022-05-12 22:35:55,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162004992}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 162004992}
2022-05-12 22:35:55,797 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:56,804 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168820736}) to executor  for transfer request: 0.
2022-05-12 22:35:56,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:56,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) about to wait for the following futures []
2022-05-12 22:35:56,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) done waiting for dependent futures
2022-05-12 22:35:56,805 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168820736}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 168820736}
2022-05-12 22:35:56,805 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:56,839 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154402816}) to executor  for transfer request: 0.
2022-05-12 22:35:56,840 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:56,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) about to wait for the following futures []
2022-05-12 22:35:56,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) done waiting for dependent futures
2022-05-12 22:35:56,840 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154402816}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 154402816}
2022-05-12 22:35:56,841 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:58,575 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83361792}) to executor  for transfer request: 0.
2022-05-12 22:35:58,575 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:58,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) about to wait for the following futures []
2022-05-12 22:35:58,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) done waiting for dependent futures
2022-05-12 22:35:58,576 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83361792}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 83361792}
2022-05-12 22:35:58,576 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:59,496 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120586240}) to executor  for transfer request: 0.
2022-05-12 22:35:59,497 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:59,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) about to wait for the following futures []
2022-05-12 22:35:59,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) done waiting for dependent futures
2022-05-12 22:35:59,497 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120586240}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 120586240}
2022-05-12 22:35:59,497 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:00,418 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130023424}) to executor  for transfer request: 0.
2022-05-12 22:36:00,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:00,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) about to wait for the following futures []
2022-05-12 22:36:00,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) done waiting for dependent futures
2022-05-12 22:36:00,419 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130023424}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 130023424}
2022-05-12 22:36:00,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:01,868 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162267136}) to executor  for transfer request: 0.
2022-05-12 22:36:01,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:01,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) about to wait for the following futures []
2022-05-12 22:36:01,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) done waiting for dependent futures
2022-05-12 22:36:01,869 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162267136}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 162267136}
2022-05-12 22:36:01,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:03,856 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154664960}) to executor  for transfer request: 0.
2022-05-12 22:36:03,857 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:03,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) about to wait for the following futures []
2022-05-12 22:36:03,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) done waiting for dependent futures
2022-05-12 22:36:03,857 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154664960}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 154664960}
2022-05-12 22:36:03,857 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:04,566 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145752064}) to executor  for transfer request: 0.
2022-05-12 22:36:04,567 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:04,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) about to wait for the following futures []
2022-05-12 22:36:04,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) done waiting for dependent futures
2022-05-12 22:36:04,567 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145752064}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 145752064}
2022-05-12 22:36:04,568 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:04,865 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139198464}) to executor  for transfer request: 0.
2022-05-12 22:36:04,865 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:04,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) about to wait for the following futures []
2022-05-12 22:36:04,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) done waiting for dependent futures
2022-05-12 22:36:04,866 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139198464}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 139198464}
2022-05-12 22:36:04,866 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,075 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169082880}) to executor  for transfer request: 0.
2022-05-12 22:36:05,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) about to wait for the following futures []
2022-05-12 22:36:05,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) done waiting for dependent futures
2022-05-12 22:36:05,076 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169082880}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 169082880}
2022-05-12 22:36:05,076 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83623936}) to executor  for transfer request: 0.
2022-05-12 22:36:05,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) about to wait for the following futures []
2022-05-12 22:36:05,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) done waiting for dependent futures
2022-05-12 22:36:05,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83623936}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 83623936}
2022-05-12 22:36:05,202 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) about to wait for the following futures []
2022-05-12 22:36:05,203 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) done waiting for dependent futures
2022-05-12 22:36:05,203 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,203 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=176160768-184549375'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 176160768, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:05,203 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:05,203 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:05,204 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:05,204 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:05,204 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:05,204 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:05,204 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:05,204 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:36:05,204 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:05,204 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:05,204 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=176160768-184549375', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:05,205 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:05,205 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:05,205 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:05,205 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:05,205 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:05,205 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:05,205 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:36:05,205 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:36:05,206 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:05,206 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=176160768-184549375
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223605Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:05,206 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223605Z
20220512/eu-central-1/s3/aws4_request
7db74831841df411204af662b0710059a8e3258a22cf630d96cda2745d0e4e79
2022-05-12 22:36:05,206 botocore.auth DEBUG    Signature:
eca61484a9ff1e62e4bd7e95db31869b83044c99d60b5279cb03872e53dcc89a
2022-05-12 22:36:05,206 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:05,206 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:05,206 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:05,207 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:05,371 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:05,371 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Bos6jCC28PkTg5seKpPI6t/kWad9ynIKhLICDichcsmGwMG0R7wZH8xa6oXsCWGLZ2kF0ADWtzg=', 'x-amz-request-id': '0WC8KME4FFPJ7K54', 'Date': 'Thu, 12 May 2022 22:36:06 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 176160768-184549375/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:36:05,372 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:05,372 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:05,372 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:05,372 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:08,411 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130285568}) to executor  for transfer request: 0.
2022-05-12 22:36:08,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:08,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) about to wait for the following futures []
2022-05-12 22:36:08,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) done waiting for dependent futures
2022-05-12 22:36:08,412 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130285568}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 130285568}
2022-05-12 22:36:08,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:08,664 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:36:08,664 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:08,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:36:08,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:36:08,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 24641536}
2022-05-12 22:36:08,665 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:09,198 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162529280}) to executor  for transfer request: 0.
2022-05-12 22:36:09,198 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:09,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) about to wait for the following futures []
2022-05-12 22:36:09,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) done waiting for dependent futures
2022-05-12 22:36:09,199 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162529280}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 162529280}
2022-05-12 22:36:09,199 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:12,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154927104}) to executor  for transfer request: 0.
2022-05-12 22:36:12,537 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:12,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) about to wait for the following futures []
2022-05-12 22:36:12,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) done waiting for dependent futures
2022-05-12 22:36:12,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154927104}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 154927104}
2022-05-12 22:36:12,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:13,399 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139460608}) to executor  for transfer request: 0.
2022-05-12 22:36:13,399 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:13,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) about to wait for the following futures []
2022-05-12 22:36:13,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) done waiting for dependent futures
2022-05-12 22:36:13,400 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139460608}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 139460608}
2022-05-12 22:36:13,400 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:13,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120848384}) to executor  for transfer request: 0.
2022-05-12 22:36:13,553 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:13,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) about to wait for the following futures []
2022-05-12 22:36:13,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) done waiting for dependent futures
2022-05-12 22:36:13,553 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120848384}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 120848384}
2022-05-12 22:36:13,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:14,555 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169345024}) to executor  for transfer request: 0.
2022-05-12 22:36:14,555 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:14,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) about to wait for the following futures []
2022-05-12 22:36:14,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) done waiting for dependent futures
2022-05-12 22:36:14,556 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169345024}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 169345024}
2022-05-12 22:36:14,556 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,019 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146014208}) to executor  for transfer request: 0.
2022-05-12 22:36:15,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) about to wait for the following futures []
2022-05-12 22:36:15,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) done waiting for dependent futures
2022-05-12 22:36:15,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146014208}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 146014208}
2022-05-12 22:36:15,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130547712}) to executor  for transfer request: 0.
2022-05-12 22:36:17,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) about to wait for the following futures []
2022-05-12 22:36:17,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) done waiting for dependent futures
2022-05-12 22:36:17,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130547712}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 130547712}
2022-05-12 22:36:17,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176160768}) to executor  for transfer request: 0.
2022-05-12 22:36:18,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) about to wait for the following futures []
2022-05-12 22:36:18,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) done waiting for dependent futures
2022-05-12 22:36:18,250 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176160768}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 176160768}
2022-05-12 22:36:18,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155189248}) to executor  for transfer request: 0.
2022-05-12 22:36:18,315 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) about to wait for the following futures []
2022-05-12 22:36:18,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) done waiting for dependent futures
2022-05-12 22:36:18,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155189248}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 155189248}
2022-05-12 22:36:18,316 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,910 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162791424}) to executor  for transfer request: 0.
2022-05-12 22:36:18,910 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) about to wait for the following futures []
2022-05-12 22:36:18,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) done waiting for dependent futures
2022-05-12 22:36:18,911 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162791424}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 162791424}
2022-05-12 22:36:18,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:20,521 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169607168}) to executor  for transfer request: 0.
2022-05-12 22:36:20,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:20,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) about to wait for the following futures []
2022-05-12 22:36:20,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) done waiting for dependent futures
2022-05-12 22:36:20,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169607168}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 169607168}
2022-05-12 22:36:20,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:21,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146276352}) to executor  for transfer request: 0.
2022-05-12 22:36:21,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:21,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) about to wait for the following futures []
2022-05-12 22:36:21,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) done waiting for dependent futures
2022-05-12 22:36:21,760 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146276352}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 146276352}
2022-05-12 22:36:21,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121110528}) to executor  for transfer request: 0.
2022-05-12 22:36:23,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163053568}) to executor  for transfer request: 0.
2022-05-12 22:36:23,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) about to wait for the following futures []
2022-05-12 22:36:23,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) done waiting for dependent futures
2022-05-12 22:36:23,419 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121110528}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 121110528}
2022-05-12 22:36:23,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) about to wait for the following futures []
2022-05-12 22:36:23,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) done waiting for dependent futures
2022-05-12 22:36:23,419 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163053568}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 163053568}
2022-05-12 22:36:23,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,491 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139722752}) to executor  for transfer request: 0.
2022-05-12 22:36:23,492 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,492 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) about to wait for the following futures []
2022-05-12 22:36:23,492 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) done waiting for dependent futures
2022-05-12 22:36:23,492 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139722752}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 139722752}
2022-05-12 22:36:23,493 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:36:24,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:24,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:36:24,333 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) about to wait for the following futures []
2022-05-12 22:36:24,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:36:24,333 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) done waiting for dependent futures
2022-05-12 22:36:24,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 24903680}
2022-05-12 22:36:24,333 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=184549376-192937983'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 184549376, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:24,333 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:24,333 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:24,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,333 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:24,334 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:24,334 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=184549376-192937983', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:24,334 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:24,334 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:36:24,334 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:36:24,335 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:24,335 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=184549376-192937983
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223624Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:24,335 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223624Z
20220512/eu-central-1/s3/aws4_request
8aab84c1744afc739e84f34aeee28a696ac1404260294c1cc850ab36383bf2ac
2022-05-12 22:36:24,335 botocore.auth DEBUG    Signature:
7ecedca958c6089bc38e3b2a3e81cf573c970f3a4b0e232601a0ae31017cd0b7
2022-05-12 22:36:24,335 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:24,335 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:24,335 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:24,335 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:24,790 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:24,790 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'kUSfzJNNf73F+lyNSquCLEKmL/3SGa6cwzjY1+jzV3iKgQxlk0/kWphgFLIoO0nTpbn00ocCcXQ=', 'x-amz-request-id': 'MFRJD7GWPZVF5SH5', 'Date': 'Thu, 12 May 2022 22:36:25 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 184549376-192937983/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:36:24,790 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:24,791 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:24,791 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:24,791 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:25,125 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:36:25,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:25,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:36:25,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:36:25,126 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 13631488}
2022-05-12 22:36:25,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:25,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155451392}) to executor  for transfer request: 0.
2022-05-12 22:36:25,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:25,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) about to wait for the following futures []
2022-05-12 22:36:25,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) done waiting for dependent futures
2022-05-12 22:36:25,265 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155451392}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 155451392}
2022-05-12 22:36:25,266 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,144 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163315712}) to executor  for transfer request: 0.
2022-05-12 22:36:27,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) about to wait for the following futures []
2022-05-12 22:36:27,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) done waiting for dependent futures
2022-05-12 22:36:27,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163315712}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 163315712}
2022-05-12 22:36:27,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,473 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169869312}) to executor  for transfer request: 0.
2022-05-12 22:36:27,473 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) about to wait for the following futures []
2022-05-12 22:36:27,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) done waiting for dependent futures
2022-05-12 22:36:27,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169869312}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 169869312}
2022-05-12 22:36:27,474 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:28,408 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130809856}) to executor  for transfer request: 0.
2022-05-12 22:36:28,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:28,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) about to wait for the following futures []
2022-05-12 22:36:28,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) done waiting for dependent futures
2022-05-12 22:36:28,409 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130809856}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 130809856}
2022-05-12 22:36:28,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146538496}) to executor  for transfer request: 0.
2022-05-12 22:36:31,009 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:31,009 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) about to wait for the following futures []
2022-05-12 22:36:31,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) done waiting for dependent futures
2022-05-12 22:36:31,010 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146538496}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 146538496}
2022-05-12 22:36:31,010 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,187 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176422912}) to executor  for transfer request: 0.
2022-05-12 22:36:31,187 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:31,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) about to wait for the following futures []
2022-05-12 22:36:31,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) done waiting for dependent futures
2022-05-12 22:36:31,188 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176422912}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 176422912}
2022-05-12 22:36:31,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139984896}) to executor  for transfer request: 0.
2022-05-12 22:36:31,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:31,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) about to wait for the following futures []
2022-05-12 22:36:31,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) done waiting for dependent futures
2022-05-12 22:36:31,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139984896}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 139984896}
2022-05-12 22:36:31,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:32,183 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163577856}) to executor  for transfer request: 0.
2022-05-12 22:36:32,183 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:32,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) about to wait for the following futures []
2022-05-12 22:36:32,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) done waiting for dependent futures
2022-05-12 22:36:32,184 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163577856}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 163577856}
2022-05-12 22:36:32,184 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121372672}) to executor  for transfer request: 0.
2022-05-12 22:36:33,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) about to wait for the following futures []
2022-05-12 22:36:33,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) done waiting for dependent futures
2022-05-12 22:36:33,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121372672}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 121372672}
2022-05-12 22:36:33,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,609 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170131456}) to executor  for transfer request: 0.
2022-05-12 22:36:33,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) about to wait for the following futures []
2022-05-12 22:36:33,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) done waiting for dependent futures
2022-05-12 22:36:33,610 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170131456}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 170131456}
2022-05-12 22:36:33,610 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,887 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155713536}) to executor  for transfer request: 0.
2022-05-12 22:36:33,887 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) about to wait for the following futures []
2022-05-12 22:36:33,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) done waiting for dependent futures
2022-05-12 22:36:33,888 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155713536}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 155713536}
2022-05-12 22:36:33,888 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:34,889 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131072000}) to executor  for transfer request: 0.
2022-05-12 22:36:34,889 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:34,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) about to wait for the following futures []
2022-05-12 22:36:34,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) done waiting for dependent futures
2022-05-12 22:36:34,890 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131072000}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 131072000}
2022-05-12 22:36:34,890 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:37,977 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121634816}) to executor  for transfer request: 0.
2022-05-12 22:36:37,977 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:37,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) about to wait for the following futures []
2022-05-12 22:36:37,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) done waiting for dependent futures
2022-05-12 22:36:37,978 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121634816}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 121634816}
2022-05-12 22:36:37,979 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:38,485 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140247040}) to executor  for transfer request: 0.
2022-05-12 22:36:38,485 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:38,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) about to wait for the following futures []
2022-05-12 22:36:38,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) done waiting for dependent futures
2022-05-12 22:36:38,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140247040}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 140247040}
2022-05-12 22:36:38,486 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:40,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163840000}) to executor  for transfer request: 0.
2022-05-12 22:36:40,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:40,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) about to wait for the following futures []
2022-05-12 22:36:40,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) done waiting for dependent futures
2022-05-12 22:36:40,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163840000}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 163840000}
2022-05-12 22:36:40,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:40,197 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146800640}) to executor  for transfer request: 0.
2022-05-12 22:36:40,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:40,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) about to wait for the following futures []
2022-05-12 22:36:40,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) done waiting for dependent futures
2022-05-12 22:36:40,197 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146800640}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 146800640}
2022-05-12 22:36:40,198 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,365 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184549376}) to executor  for transfer request: 0.
2022-05-12 22:36:41,365 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) about to wait for the following futures []
2022-05-12 22:36:41,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) done waiting for dependent futures
2022-05-12 22:36:41,365 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184549376}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 184549376}
2022-05-12 22:36:41,366 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:42,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170393600}) to executor  for transfer request: 0.
2022-05-12 22:36:42,885 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:42,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) about to wait for the following futures []
2022-05-12 22:36:42,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) done waiting for dependent futures
2022-05-12 22:36:42,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170393600}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 170393600}
2022-05-12 22:36:42,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:43,155 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164102144}) to executor  for transfer request: 0.
2022-05-12 22:36:43,155 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:43,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) about to wait for the following futures []
2022-05-12 22:36:43,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) done waiting for dependent futures
2022-05-12 22:36:43,156 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164102144}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 164102144}
2022-05-12 22:36:43,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:44,187 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155975680}) to executor  for transfer request: 0.
2022-05-12 22:36:44,188 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:44,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) about to wait for the following futures []
2022-05-12 22:36:44,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) done waiting for dependent futures
2022-05-12 22:36:44,188 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155975680}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 155975680}
2022-05-12 22:36:44,189 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:44,952 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131334144}) to executor  for transfer request: 0.
2022-05-12 22:36:44,952 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:44,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) about to wait for the following futures []
2022-05-12 22:36:44,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) done waiting for dependent futures
2022-05-12 22:36:44,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131334144}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 131334144}
2022-05-12 22:36:44,953 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:46,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121896960}) to executor  for transfer request: 0.
2022-05-12 22:36:46,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:46,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) about to wait for the following futures []
2022-05-12 22:36:46,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) done waiting for dependent futures
2022-05-12 22:36:46,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121896960}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 121896960}
2022-05-12 22:36:46,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:48,531 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:36:48,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:48,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:36:48,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:36:48,532 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 12058624}
2022-05-12 22:36:48,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:49,694 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147062784}) to executor  for transfer request: 0.
2022-05-12 22:36:49,694 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:49,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) about to wait for the following futures []
2022-05-12 22:36:49,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) done waiting for dependent futures
2022-05-12 22:36:49,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147062784}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 147062784}
2022-05-12 22:36:49,695 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:50,378 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164364288}) to executor  for transfer request: 0.
2022-05-12 22:36:50,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) about to wait for the following futures []
2022-05-12 22:36:50,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) done waiting for dependent futures
2022-05-12 22:36:50,379 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164364288}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 164364288}
2022-05-12 22:36:50,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:52,358 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122159104}) to executor  for transfer request: 0.
2022-05-12 22:36:52,358 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:52,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) about to wait for the following futures []
2022-05-12 22:36:52,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) done waiting for dependent futures
2022-05-12 22:36:52,358 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122159104}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 122159104}
2022-05-12 22:36:52,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:52,406 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140509184}) to executor  for transfer request: 0.
2022-05-12 22:36:52,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:52,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) about to wait for the following futures []
2022-05-12 22:36:52,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) done waiting for dependent futures
2022-05-12 22:36:52,407 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140509184}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 140509184}
2022-05-12 22:36:52,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:52,644 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164626432}) to executor  for transfer request: 0.
2022-05-12 22:36:52,644 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:52,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) about to wait for the following futures []
2022-05-12 22:36:52,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) done waiting for dependent futures
2022-05-12 22:36:52,645 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164626432}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 164626432}
2022-05-12 22:36:52,645 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:52,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170655744}) to executor  for transfer request: 0.
2022-05-12 22:36:52,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:52,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) about to wait for the following futures []
2022-05-12 22:36:52,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) done waiting for dependent futures
2022-05-12 22:36:52,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170655744}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 170655744}
2022-05-12 22:36:52,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:53,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:36:53,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:53,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:36:53,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:36:53,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 13893632}
2022-05-12 22:36:53,983 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:54,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156237824}) to executor  for transfer request: 0.
2022-05-12 22:36:54,059 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:54,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) about to wait for the following futures []
2022-05-12 22:36:54,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) done waiting for dependent futures
2022-05-12 22:36:54,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156237824}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 156237824}
2022-05-12 22:36:54,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:54,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176685056}) to executor  for transfer request: 0.
2022-05-12 22:36:54,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:54,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) about to wait for the following futures []
2022-05-12 22:36:54,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) done waiting for dependent futures
2022-05-12 22:36:54,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176685056}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 176685056}
2022-05-12 22:36:54,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:54,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184811520}) to executor  for transfer request: 0.
2022-05-12 22:36:54,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:54,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) about to wait for the following futures []
2022-05-12 22:36:54,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) done waiting for dependent futures
2022-05-12 22:36:54,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184811520}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 184811520}
2022-05-12 22:36:54,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:55,069 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131596288}) to executor  for transfer request: 0.
2022-05-12 22:36:55,070 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:55,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) about to wait for the following futures []
2022-05-12 22:36:55,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) done waiting for dependent futures
2022-05-12 22:36:55,071 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131596288}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 131596288}
2022-05-12 22:36:55,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:59,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147324928}) to executor  for transfer request: 0.
2022-05-12 22:36:59,395 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:59,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) about to wait for the following futures []
2022-05-12 22:36:59,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) done waiting for dependent futures
2022-05-12 22:36:59,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147324928}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 147324928}
2022-05-12 22:36:59,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:00,592 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164888576}) to executor  for transfer request: 0.
2022-05-12 22:37:00,592 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:00,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) about to wait for the following futures []
2022-05-12 22:37:00,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) done waiting for dependent futures
2022-05-12 22:37:00,593 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164888576}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 164888576}
2022-05-12 22:37:00,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:01,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170917888}) to executor  for transfer request: 0.
2022-05-12 22:37:01,222 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:01,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) about to wait for the following futures []
2022-05-12 22:37:01,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) done waiting for dependent futures
2022-05-12 22:37:01,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170917888}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 170917888}
2022-05-12 22:37:01,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:01,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140771328}) to executor  for transfer request: 0.
2022-05-12 22:37:01,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:01,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) about to wait for the following futures []
2022-05-12 22:37:01,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) done waiting for dependent futures
2022-05-12 22:37:01,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140771328}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 140771328}
2022-05-12 22:37:01,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,937 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122421248}) to executor  for transfer request: 0.
2022-05-12 22:37:02,938 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) about to wait for the following futures []
2022-05-12 22:37:02,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) done waiting for dependent futures
2022-05-12 22:37:02,938 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122421248}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 122421248}
2022-05-12 22:37:02,939 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:04,910 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131858432}) to executor  for transfer request: 0.
2022-05-12 22:37:04,910 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:04,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) about to wait for the following futures []
2022-05-12 22:37:04,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) done waiting for dependent futures
2022-05-12 22:37:04,911 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131858432}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 131858432}
2022-05-12 22:37:04,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:05,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165150720}) to executor  for transfer request: 0.
2022-05-12 22:37:05,253 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:05,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) about to wait for the following futures []
2022-05-12 22:37:05,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) done waiting for dependent futures
2022-05-12 22:37:05,253 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165150720}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 165150720}
2022-05-12 22:37:05,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147587072}) to executor  for transfer request: 0.
2022-05-12 22:37:08,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) about to wait for the following futures []
2022-05-12 22:37:08,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) done waiting for dependent futures
2022-05-12 22:37:08,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147587072}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 147587072}
2022-05-12 22:37:08,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,705 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122683392}) to executor  for transfer request: 0.
2022-05-12 22:37:08,705 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) about to wait for the following futures []
2022-05-12 22:37:08,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) done waiting for dependent futures
2022-05-12 22:37:08,706 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122683392}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 122683392}
2022-05-12 22:37:08,707 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,762 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141033472}) to executor  for transfer request: 0.
2022-05-12 22:37:08,762 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) about to wait for the following futures []
2022-05-12 22:37:08,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) done waiting for dependent futures
2022-05-12 22:37:08,763 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141033472}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 141033472}
2022-05-12 22:37:08,763 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:09,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156499968}) to executor  for transfer request: 0.
2022-05-12 22:37:09,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:09,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) about to wait for the following futures []
2022-05-12 22:37:09,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) done waiting for dependent futures
2022-05-12 22:37:09,913 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156499968}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 156499968}
2022-05-12 22:37:09,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:10,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185073664}) to executor  for transfer request: 0.
2022-05-12 22:37:10,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:10,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) about to wait for the following futures []
2022-05-12 22:37:10,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) done waiting for dependent futures
2022-05-12 22:37:10,998 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185073664}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 185073664}
2022-05-12 22:37:10,999 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,316 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165412864}) to executor  for transfer request: 0.
2022-05-12 22:37:11,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:11,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) about to wait for the following futures []
2022-05-12 22:37:11,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) done waiting for dependent futures
2022-05-12 22:37:11,317 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165412864}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 165412864}
2022-05-12 22:37:11,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132120576}) to executor  for transfer request: 0.
2022-05-12 22:37:11,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:11,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) about to wait for the following futures []
2022-05-12 22:37:11,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) done waiting for dependent futures
2022-05-12 22:37:11,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132120576}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 132120576}
2022-05-12 22:37:11,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:12,799 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171180032}) to executor  for transfer request: 0.
2022-05-12 22:37:12,800 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:12,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) about to wait for the following futures []
2022-05-12 22:37:12,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) done waiting for dependent futures
2022-05-12 22:37:12,800 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171180032}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 171180032}
2022-05-12 22:37:12,801 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:13,499 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176947200}) to executor  for transfer request: 0.
2022-05-12 22:37:13,499 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:13,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) about to wait for the following futures []
2022-05-12 22:37:13,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) done waiting for dependent futures
2022-05-12 22:37:13,500 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176947200}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 176947200}
2022-05-12 22:37:13,500 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147849216}) to executor  for transfer request: 0.
2022-05-12 22:37:14,259 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) about to wait for the following futures []
2022-05-12 22:37:14,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) done waiting for dependent futures
2022-05-12 22:37:14,259 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147849216}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 147849216}
2022-05-12 22:37:14,259 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,375 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165675008}) to executor  for transfer request: 0.
2022-05-12 22:37:14,375 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) about to wait for the following futures []
2022-05-12 22:37:14,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) done waiting for dependent futures
2022-05-12 22:37:14,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165675008}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 165675008}
2022-05-12 22:37:14,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:16,481 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:37:16,481 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:16,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:37:16,482 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:37:16,482 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 14155776}
2022-05-12 22:37:16,482 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,429 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122945536}) to executor  for transfer request: 0.
2022-05-12 22:37:17,429 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) about to wait for the following futures []
2022-05-12 22:37:17,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) done waiting for dependent futures
2022-05-12 22:37:17,430 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122945536}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 122945536}
2022-05-12 22:37:17,430 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,634 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141295616}) to executor  for transfer request: 0.
2022-05-12 22:37:17,635 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,635 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) about to wait for the following futures []
2022-05-12 22:37:17,635 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) done waiting for dependent futures
2022-05-12 22:37:17,635 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141295616}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 141295616}
2022-05-12 22:37:17,635 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,747 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132382720}) to executor  for transfer request: 0.
2022-05-12 22:37:17,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,748 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) about to wait for the following futures []
2022-05-12 22:37:17,748 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) done waiting for dependent futures
2022-05-12 22:37:17,748 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132382720}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 132382720}
2022-05-12 22:37:17,748 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:18,533 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156762112}) to executor  for transfer request: 0.
2022-05-12 22:37:18,533 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:18,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) about to wait for the following futures []
2022-05-12 22:37:18,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) done waiting for dependent futures
2022-05-12 22:37:18,534 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156762112}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 156762112}
2022-05-12 22:37:18,534 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:18,689 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148111360}) to executor  for transfer request: 0.
2022-05-12 22:37:18,690 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:18,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) about to wait for the following futures []
2022-05-12 22:37:18,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) done waiting for dependent futures
2022-05-12 22:37:18,691 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148111360}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 148111360}
2022-05-12 22:37:18,691 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:20,231 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165937152}) to executor  for transfer request: 0.
2022-05-12 22:37:20,231 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:20,231 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) about to wait for the following futures []
2022-05-12 22:37:20,231 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) done waiting for dependent futures
2022-05-12 22:37:20,231 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165937152}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 165937152}
2022-05-12 22:37:20,232 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:21,623 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171442176}) to executor  for transfer request: 0.
2022-05-12 22:37:21,623 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:21,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) about to wait for the following futures []
2022-05-12 22:37:21,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) done waiting for dependent futures
2022-05-12 22:37:21,624 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171442176}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 171442176}
2022-05-12 22:37:21,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,291 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185335808}) to executor  for transfer request: 0.
2022-05-12 22:37:22,291 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,291 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) about to wait for the following futures []
2022-05-12 22:37:22,291 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) done waiting for dependent futures
2022-05-12 22:37:22,291 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185335808}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 185335808}
2022-05-12 22:37:22,292 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123207680}) to executor  for transfer request: 0.
2022-05-12 22:37:22,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) about to wait for the following futures []
2022-05-12 22:37:22,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) done waiting for dependent futures
2022-05-12 22:37:22,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123207680}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 123207680}
2022-05-12 22:37:22,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:23,062 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132644864}) to executor  for transfer request: 0.
2022-05-12 22:37:23,063 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:23,063 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) about to wait for the following futures []
2022-05-12 22:37:23,063 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) done waiting for dependent futures
2022-05-12 22:37:23,063 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132644864}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 132644864}
2022-05-12 22:37:23,064 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:23,119 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141557760}) to executor  for transfer request: 0.
2022-05-12 22:37:23,119 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:23,120 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) about to wait for the following futures []
2022-05-12 22:37:23,120 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) done waiting for dependent futures
2022-05-12 22:37:23,120 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141557760}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 141557760}
2022-05-12 22:37:23,120 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:26,963 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157024256}) to executor  for transfer request: 0.
2022-05-12 22:37:26,963 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:26,963 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) about to wait for the following futures []
2022-05-12 22:37:26,963 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) done waiting for dependent futures
2022-05-12 22:37:26,963 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157024256}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 157024256}
2022-05-12 22:37:26,964 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,358 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148373504}) to executor  for transfer request: 0.
2022-05-12 22:37:27,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) about to wait for the following futures []
2022-05-12 22:37:27,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) done waiting for dependent futures
2022-05-12 22:37:27,359 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148373504}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 148373504}
2022-05-12 22:37:27,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:28,590 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141819904}) to executor  for transfer request: 0.
2022-05-12 22:37:28,590 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:28,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) about to wait for the following futures []
2022-05-12 22:37:28,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) done waiting for dependent futures
2022-05-12 22:37:28,591 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141819904}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 141819904}
2022-05-12 22:37:28,591 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:29,501 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123469824}) to executor  for transfer request: 0.
2022-05-12 22:37:29,501 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:29,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) about to wait for the following futures []
2022-05-12 22:37:29,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) done waiting for dependent futures
2022-05-12 22:37:29,502 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123469824}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 123469824}
2022-05-12 22:37:29,502 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132907008}) to executor  for transfer request: 0.
2022-05-12 22:37:30,025 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:30,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) about to wait for the following futures []
2022-05-12 22:37:30,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) done waiting for dependent futures
2022-05-12 22:37:30,025 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132907008}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 132907008}
2022-05-12 22:37:30,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,066 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166199296}) to executor  for transfer request: 0.
2022-05-12 22:37:30,066 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:30,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) about to wait for the following futures []
2022-05-12 22:37:30,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) done waiting for dependent futures
2022-05-12 22:37:30,066 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166199296}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 166199296}
2022-05-12 22:37:30,067 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:31,831 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142082048}) to executor  for transfer request: 0.
2022-05-12 22:37:31,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:31,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) about to wait for the following futures []
2022-05-12 22:37:31,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) done waiting for dependent futures
2022-05-12 22:37:31,832 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142082048}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 142082048}
2022-05-12 22:37:31,833 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,539 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148635648}) to executor  for transfer request: 0.
2022-05-12 22:37:32,539 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) about to wait for the following futures []
2022-05-12 22:37:32,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) done waiting for dependent futures
2022-05-12 22:37:32,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148635648}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 148635648}
2022-05-12 22:37:32,540 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,648 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171704320}) to executor  for transfer request: 0.
2022-05-12 22:37:32,648 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) about to wait for the following futures []
2022-05-12 22:37:32,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) done waiting for dependent futures
2022-05-12 22:37:32,649 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171704320}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 171704320}
2022-05-12 22:37:32,649 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157286400}) to executor  for transfer request: 0.
2022-05-12 22:37:32,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) about to wait for the following futures []
2022-05-12 22:37:32,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) done waiting for dependent futures
2022-05-12 22:37:32,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157286400}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 157286400}
2022-05-12 22:37:32,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:34,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177209344}) to executor  for transfer request: 0.
2022-05-12 22:37:34,259 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:34,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) about to wait for the following futures []
2022-05-12 22:37:34,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) done waiting for dependent futures
2022-05-12 22:37:34,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177209344}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 177209344}
2022-05-12 22:37:34,260 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:34,749 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185597952}) to executor  for transfer request: 0.
2022-05-12 22:37:34,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:34,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) about to wait for the following futures []
2022-05-12 22:37:34,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) done waiting for dependent futures
2022-05-12 22:37:34,750 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185597952}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 185597952}
2022-05-12 22:37:34,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:35,455 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166461440}) to executor  for transfer request: 0.
2022-05-12 22:37:35,456 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:35,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) about to wait for the following futures []
2022-05-12 22:37:35,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) done waiting for dependent futures
2022-05-12 22:37:35,456 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166461440}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 166461440}
2022-05-12 22:37:35,457 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:35,582 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:37:35,582 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:35,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:37:35,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:37:35,583 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 14417920}
2022-05-12 22:37:35,583 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:36,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123731968}) to executor  for transfer request: 0.
2022-05-12 22:37:36,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:36,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) about to wait for the following futures []
2022-05-12 22:37:36,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) done waiting for dependent futures
2022-05-12 22:37:36,241 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123731968}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 123731968}
2022-05-12 22:37:36,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:36,680 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166723584}) to executor  for transfer request: 0.
2022-05-12 22:37:36,680 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:36,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) about to wait for the following futures []
2022-05-12 22:37:36,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) done waiting for dependent futures
2022-05-12 22:37:36,681 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166723584}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 166723584}
2022-05-12 22:37:36,681 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,582 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171966464}) to executor  for transfer request: 0.
2022-05-12 22:37:37,582 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) about to wait for the following futures []
2022-05-12 22:37:37,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) done waiting for dependent futures
2022-05-12 22:37:37,583 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171966464}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 171966464}
2022-05-12 22:37:37,583 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,612 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142344192}) to executor  for transfer request: 0.
2022-05-12 22:37:37,612 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) about to wait for the following futures []
2022-05-12 22:37:37,612 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) about to wait for the following futures []
2022-05-12 22:37:37,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) done waiting for dependent futures
2022-05-12 22:37:37,612 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) done waiting for dependent futures
2022-05-12 22:37:37,613 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142344192}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 142344192}
2022-05-12 22:37:37,613 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=192937984-201326591'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 192937984, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:37:37,613 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:37,613 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:37,613 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,613 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:37,613 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:37,614 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:37,614 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:37,614 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:37:37,614 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:37:37,614 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:37,614 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:37,614 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=192937984-201326591', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:37:37,614 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:37,614 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:37:37,615 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:37,615 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:37,615 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:37:37,615 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:37:37,615 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:37:37,615 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:37:37,615 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:37:37,615 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=192937984-201326591
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223737Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:37:37,615 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223737Z
20220512/eu-central-1/s3/aws4_request
1a4a9b8b3a861e724646cfc604b5683a470b76a0a04bcf2f22c96217e94d39cd
2022-05-12 22:37:37,615 botocore.auth DEBUG    Signature:
ab201885ac6a0766f4f1b22f18084b401eda7fdfc8b729dc4e10b4b9ac25a1ca
2022-05-12 22:37:37,616 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:37,616 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:37,616 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:37:37,616 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:37:37,616 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:37:37,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133169152}) to executor  for transfer request: 0.
2022-05-12 22:37:37,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) about to wait for the following futures []
2022-05-12 22:37:37,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) done waiting for dependent futures
2022-05-12 22:37:37,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133169152}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 133169152}
2022-05-12 22:37:37,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:38,745 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:37:38,745 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'CUe5FrEfygn/Z0esP25Lv/LhgyHxihzoP832urEGmsYk0VC35OOBfZ62ewsxIEJPaEqxrx07DBI=', 'x-amz-request-id': '9HR7C12R09SPQ2S8', 'Date': 'Thu, 12 May 2022 22:37:39 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 192937984-201326591/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:37:38,745 botocore.parsers DEBUG    Response body:

2022-05-12 22:37:38,746 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:37:38,746 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:37:38,746 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:37:38,904 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166985728}) to executor  for transfer request: 0.
2022-05-12 22:37:38,904 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:38,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) about to wait for the following futures []
2022-05-12 22:37:38,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) done waiting for dependent futures
2022-05-12 22:37:38,905 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166985728}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 166985728}
2022-05-12 22:37:38,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:40,190 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123994112}) to executor  for transfer request: 0.
2022-05-12 22:37:40,190 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:40,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) about to wait for the following futures []
2022-05-12 22:37:40,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) done waiting for dependent futures
2022-05-12 22:37:40,191 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123994112}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 123994112}
2022-05-12 22:37:40,191 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:40,307 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192937984}) to executor  for transfer request: 0.
2022-05-12 22:37:40,307 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:40,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) about to wait for the following futures []
2022-05-12 22:37:40,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) done waiting for dependent futures
2022-05-12 22:37:40,308 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192937984}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 192937984}
2022-05-12 22:37:40,308 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:40,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148897792}) to executor  for transfer request: 0.
2022-05-12 22:37:40,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:40,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) about to wait for the following futures []
2022-05-12 22:37:40,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) done waiting for dependent futures
2022-05-12 22:37:40,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148897792}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 148897792}
2022-05-12 22:37:40,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157548544}) to executor  for transfer request: 0.
2022-05-12 22:37:41,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) about to wait for the following futures []
2022-05-12 22:37:41,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) done waiting for dependent futures
2022-05-12 22:37:41,913 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157548544}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 157548544}
2022-05-12 22:37:41,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:43,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167247872}) to executor  for transfer request: 0.
2022-05-12 22:37:43,470 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:43,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) about to wait for the following futures []
2022-05-12 22:37:43,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) done waiting for dependent futures
2022-05-12 22:37:43,470 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167247872}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 167247872}
2022-05-12 22:37:43,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:43,783 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133431296}) to executor  for transfer request: 0.
2022-05-12 22:37:43,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:43,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) about to wait for the following futures []
2022-05-12 22:37:43,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) done waiting for dependent futures
2022-05-12 22:37:43,784 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133431296}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 133431296}
2022-05-12 22:37:43,784 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124256256}) to executor  for transfer request: 0.
2022-05-12 22:37:44,024 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) about to wait for the following futures []
2022-05-12 22:37:44,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) done waiting for dependent futures
2022-05-12 22:37:44,025 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124256256}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 124256256}
2022-05-12 22:37:44,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,456 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193200128}) to executor  for transfer request: 0.
2022-05-12 22:37:46,456 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) about to wait for the following futures []
2022-05-12 22:37:46,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) done waiting for dependent futures
2022-05-12 22:37:46,457 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193200128}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 193200128}
2022-05-12 22:37:46,457 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,502 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185860096}) to executor  for transfer request: 0.
2022-05-12 22:37:46,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) about to wait for the following futures []
2022-05-12 22:37:46,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) done waiting for dependent futures
2022-05-12 22:37:46,503 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185860096}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 185860096}
2022-05-12 22:37:46,503 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172228608}) to executor  for transfer request: 0.
2022-05-12 22:37:46,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) about to wait for the following futures []
2022-05-12 22:37:46,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) done waiting for dependent futures
2022-05-12 22:37:46,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172228608}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 172228608}
2022-05-12 22:37:46,540 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,714 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167510016}) to executor  for transfer request: 0.
2022-05-12 22:37:46,715 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,715 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,715 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) about to wait for the following futures []
2022-05-12 22:37:46,715 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) done waiting for dependent futures
2022-05-12 22:37:46,715 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=201326592-209715199'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 201326592, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:37:46,715 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:46,715 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:46,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:46,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) about to wait for the following futures []
2022-05-12 22:37:46,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:46,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) done waiting for dependent futures
2022-05-12 22:37:46,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:46,716 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167510016}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 167510016}
2022-05-12 22:37:46,717 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:46,717 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:37:46,717 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:37:46,717 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:46,717 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,717 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:46,717 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=201326592-209715199', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:37:46,718 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:46,718 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:37:46,718 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:46,718 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:46,718 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:37:46,718 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:37:46,718 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:37:46,718 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:37:46,719 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:37:46,719 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=201326592-209715199
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223746Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:37:46,719 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223746Z
20220512/eu-central-1/s3/aws4_request
d660c65f3f42a34494b27e5423ba108fbde8b0527ce3f7e0485d03f51e7d4fc3
2022-05-12 22:37:46,719 botocore.auth DEBUG    Signature:
d686794910811f14d7af644613010116a8985807433b6dfba1019470f967eaf2
2022-05-12 22:37:46,719 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:46,719 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:46,719 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:37:46,720 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:37:46,905 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:37:46,906 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'pCyS7Mtg7/vUYYFZ/1kk/bsqG5G/6yleT34nlgt78Rd3/Su1q2YIY31zwut0zYves2gvFfbh230=', 'x-amz-request-id': '300RNBKWATWSFPMR', 'Date': 'Thu, 12 May 2022 22:37:47 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 201326592-209715199/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:37:46,906 botocore.parsers DEBUG    Response body:

2022-05-12 22:37:46,907 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:37:46,907 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:37:46,907 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:37:48,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157810688}) to executor  for transfer request: 0.
2022-05-12 22:37:48,841 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:48,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) about to wait for the following futures []
2022-05-12 22:37:48,842 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) done waiting for dependent futures
2022-05-12 22:37:48,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157810688}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 157810688}
2022-05-12 22:37:48,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,072 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124518400}) to executor  for transfer request: 0.
2022-05-12 22:37:49,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:49,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) about to wait for the following futures []
2022-05-12 22:37:49,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) done waiting for dependent futures
2022-05-12 22:37:49,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124518400}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 124518400}
2022-05-12 22:37:49,074 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149159936}) to executor  for transfer request: 0.
2022-05-12 22:37:49,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:49,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) about to wait for the following futures []
2022-05-12 22:37:49,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) done waiting for dependent futures
2022-05-12 22:37:49,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149159936}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 149159936}
2022-05-12 22:37:49,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:50,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201326592}) to executor  for transfer request: 0.
2022-05-12 22:37:50,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:50,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) about to wait for the following futures []
2022-05-12 22:37:50,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) done waiting for dependent futures
2022-05-12 22:37:50,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201326592}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 201326592}
2022-05-12 22:37:50,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:50,644 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177471488}) to executor  for transfer request: 0.
2022-05-12 22:37:50,644 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:50,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) about to wait for the following futures []
2022-05-12 22:37:50,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) done waiting for dependent futures
2022-05-12 22:37:50,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177471488}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 177471488}
2022-05-12 22:37:50,645 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:50,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133693440}) to executor  for transfer request: 0.
2022-05-12 22:37:50,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:50,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) about to wait for the following futures []
2022-05-12 22:37:50,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) done waiting for dependent futures
2022-05-12 22:37:50,941 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133693440}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 133693440}
2022-05-12 22:37:50,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193462272}) to executor  for transfer request: 0.
2022-05-12 22:37:51,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) about to wait for the following futures []
2022-05-12 22:37:51,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) done waiting for dependent futures
2022-05-12 22:37:51,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193462272}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 193462272}
2022-05-12 22:37:51,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:52,302 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124780544}) to executor  for transfer request: 0.
2022-05-12 22:37:52,303 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:52,303 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) about to wait for the following futures []
2022-05-12 22:37:52,303 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) done waiting for dependent futures
2022-05-12 22:37:52,304 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124780544}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 124780544}
2022-05-12 22:37:52,304 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:53,510 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172490752}) to executor  for transfer request: 0.
2022-05-12 22:37:53,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:53,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) about to wait for the following futures []
2022-05-12 22:37:53,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) done waiting for dependent futures
2022-05-12 22:37:53,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172490752}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 172490752}
2022-05-12 22:37:53,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:55,047 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125042688}) to executor  for transfer request: 0.
2022-05-12 22:37:55,047 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:55,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) about to wait for the following futures []
2022-05-12 22:37:55,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) done waiting for dependent futures
2022-05-12 22:37:55,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125042688}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 125042688}
2022-05-12 22:37:55,048 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:55,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201588736}) to executor  for transfer request: 0.
2022-05-12 22:37:55,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:55,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) about to wait for the following futures []
2022-05-12 22:37:55,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) done waiting for dependent futures
2022-05-12 22:37:55,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201588736}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 201588736}
2022-05-12 22:37:55,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,624 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193724416}) to executor  for transfer request: 0.
2022-05-12 22:37:56,624 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) about to wait for the following futures []
2022-05-12 22:37:56,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) done waiting for dependent futures
2022-05-12 22:37:56,625 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193724416}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 193724416}
2022-05-12 22:37:56,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,847 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186122240}) to executor  for transfer request: 0.
2022-05-12 22:37:56,847 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) about to wait for the following futures []
2022-05-12 22:37:56,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) done waiting for dependent futures
2022-05-12 22:37:56,847 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186122240}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 186122240}
2022-05-12 22:37:56,848 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125304832}) to executor  for transfer request: 0.
2022-05-12 22:37:57,618 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:57,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) about to wait for the following futures []
2022-05-12 22:37:57,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) done waiting for dependent futures
2022-05-12 22:37:57,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125304832}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 125304832}
2022-05-12 22:37:57,619 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,704 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149422080}) to executor  for transfer request: 0.
2022-05-12 22:37:57,704 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:57,705 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) about to wait for the following futures []
2022-05-12 22:37:57,705 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) done waiting for dependent futures
2022-05-12 22:37:57,705 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149422080}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 149422080}
2022-05-12 22:37:57,706 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,844 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133955584}) to executor  for transfer request: 0.
2022-05-12 22:37:57,845 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:57,845 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) about to wait for the following futures []
2022-05-12 22:37:57,845 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) about to wait for the following futures []
2022-05-12 22:37:57,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) done waiting for dependent futures
2022-05-12 22:37:57,845 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) done waiting for dependent futures
2022-05-12 22:37:57,845 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133955584}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 133955584}
2022-05-12 22:37:57,845 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=209715200-218103807'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 209715200, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:37:57,845 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:57,845 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:57,845 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:57,845 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,845 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:57,845 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:37:57,846 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:57,846 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=209715200-218103807', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:37:57,846 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:37:57,846 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:37:57,846 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:37:57,846 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=209715200-218103807
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223757Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:37:57,846 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223757Z
20220512/eu-central-1/s3/aws4_request
6a97739cc993c92b43e7c0d37f0f9cc2c38dbb64fba01bc042330887619d313f
2022-05-12 22:37:57,846 botocore.auth DEBUG    Signature:
785b9035259ba884234c35914efa7cffd570a87517264d7625d4a6af1c0e1c44
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:57,846 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:57,846 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:37:57,846 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:37:58,027 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:37:58,027 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ux5GF4aKxGJEk0JGfYRe4yWhQPUkyaMvUiV133Njr167r9TMl1ygm1GZ9Nlxw7uaHI7Tibv2pjc=', 'x-amz-request-id': 'GFCDVVSG1Q14NQA6', 'Date': 'Thu, 12 May 2022 22:37:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 209715200-218103807/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:37:58,027 botocore.parsers DEBUG    Response body:

2022-05-12 22:37:58,028 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:37:58,028 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:37:58,028 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:37:58,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158072832}) to executor  for transfer request: 0.
2022-05-12 22:37:58,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:58,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) about to wait for the following futures []
2022-05-12 22:37:58,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) done waiting for dependent futures
2022-05-12 22:37:58,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158072832}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 158072832}
2022-05-12 22:37:58,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:00,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:38:00,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:00,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:38:00,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:38:00,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 14680064}
2022-05-12 22:38:00,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:00,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177733632}) to executor  for transfer request: 0.
2022-05-12 22:38:00,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:00,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) about to wait for the following futures []
2022-05-12 22:38:00,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) done waiting for dependent futures
2022-05-12 22:38:00,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177733632}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 177733632}
2022-05-12 22:38:00,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:00,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201850880}) to executor  for transfer request: 0.
2022-05-12 22:38:00,564 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:00,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) about to wait for the following futures []
2022-05-12 22:38:00,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) done waiting for dependent futures
2022-05-12 22:38:00,565 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201850880}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 201850880}
2022-05-12 22:38:00,565 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:00,688 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193986560}) to executor  for transfer request: 0.
2022-05-12 22:38:00,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:00,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) about to wait for the following futures []
2022-05-12 22:38:00,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) done waiting for dependent futures
2022-05-12 22:38:00,689 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193986560}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 193986560}
2022-05-12 22:38:00,689 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:02,510 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149684224}) to executor  for transfer request: 0.
2022-05-12 22:38:02,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:02,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) about to wait for the following futures []
2022-05-12 22:38:02,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) done waiting for dependent futures
2022-05-12 22:38:02,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149684224}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 149684224}
2022-05-12 22:38:02,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:02,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125566976}) to executor  for transfer request: 0.
2022-05-12 22:38:02,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:02,701 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:02,701 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) about to wait for the following futures []
2022-05-12 22:38:02,701 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) done waiting for dependent futures
2022-05-12 22:38:02,702 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=218103808-226492415'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 218103808, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:38:02,702 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:02,702 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:02,702 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:02,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) about to wait for the following futures []
2022-05-12 22:38:02,702 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:02,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) done waiting for dependent futures
2022-05-12 22:38:02,702 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:02,703 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125566976}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 125566976}
2022-05-12 22:38:02,703 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:02,703 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:38:02,703 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:38:02,703 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:02,703 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:02,703 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:02,704 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=218103808-226492415', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:38:02,704 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:02,704 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:38:02,704 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:02,704 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:02,704 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:38:02,704 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:38:02,704 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:38:02,704 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:38:02,705 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:38:02,705 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=218103808-226492415
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223802Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:38:02,705 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223802Z
20220512/eu-central-1/s3/aws4_request
70d141feb6635b7e6078fb41a88c7f62ac2e9c4cfc7fbe126c571dad1dc5f7bf
2022-05-12 22:38:02,705 botocore.auth DEBUG    Signature:
323c7f8e0e16f5374fe02a89529b2d2f38efc053374b748015469185d9fac607
2022-05-12 22:38:02,705 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:02,705 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:02,705 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:38:02,706 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:38:02,706 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:38:02,743 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172752896}) to executor  for transfer request: 0.
2022-05-12 22:38:02,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:02,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) about to wait for the following futures []
2022-05-12 22:38:02,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) done waiting for dependent futures
2022-05-12 22:38:02,744 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172752896}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 172752896}
2022-05-12 22:38:02,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:03,303 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209715200}) to executor  for transfer request: 0.
2022-05-12 22:38:03,304 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:03,304 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) about to wait for the following futures []
2022-05-12 22:38:03,304 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) done waiting for dependent futures
2022-05-12 22:38:03,304 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209715200}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 209715200}
2022-05-12 22:38:03,305 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:03,781 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:38:03,782 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qV3Ta28Uwe9+ik+Mrm9OWz3HMawee8UPGIDrkyadxSP4zFIf4TIEx3dQGbsGBDqPcedXksPX4Q8=', 'x-amz-request-id': '1A2H1DX53KXJAYZ5', 'Date': 'Thu, 12 May 2022 22:38:04 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 218103808-226492415/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:38:03,782 botocore.parsers DEBUG    Response body:

2022-05-12 22:38:03,783 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:38:03,783 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:38:03,783 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:38:03,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177995776}) to executor  for transfer request: 0.
2022-05-12 22:38:03,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:03,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) about to wait for the following futures []
2022-05-12 22:38:03,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) done waiting for dependent futures
2022-05-12 22:38:03,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177995776}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 177995776}
2022-05-12 22:38:03,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:04,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186384384}) to executor  for transfer request: 0.
2022-05-12 22:38:04,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:04,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) about to wait for the following futures []
2022-05-12 22:38:04,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) done waiting for dependent futures
2022-05-12 22:38:04,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186384384}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 186384384}
2022-05-12 22:38:04,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,121 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218103808}) to executor  for transfer request: 0.
2022-05-12 22:38:05,121 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218103808}) about to wait for the following futures []
2022-05-12 22:38:05,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218103808}) done waiting for dependent futures
2022-05-12 22:38:05,122 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218103808}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 218103808}
2022-05-12 22:38:05,122 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,615 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202113024}) to executor  for transfer request: 0.
2022-05-12 22:38:05,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) about to wait for the following futures []
2022-05-12 22:38:05,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) done waiting for dependent futures
2022-05-12 22:38:05,616 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202113024}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 202113024}
2022-05-12 22:38:05,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:06,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158334976}) to executor  for transfer request: 0.
2022-05-12 22:38:06,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:06,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) about to wait for the following futures []
2022-05-12 22:38:06,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) done waiting for dependent futures
2022-05-12 22:38:06,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158334976}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 158334976}
2022-05-12 22:38:06,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:06,695 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173015040}) to executor  for transfer request: 0.
2022-05-12 22:38:06,696 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:06,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) about to wait for the following futures []
2022-05-12 22:38:06,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) done waiting for dependent futures
2022-05-12 22:38:06,696 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173015040}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 173015040}
2022-05-12 22:38:06,697 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:07,969 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194248704}) to executor  for transfer request: 0.
2022-05-12 22:38:07,969 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:07,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) about to wait for the following futures []
2022-05-12 22:38:07,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) done waiting for dependent futures
2022-05-12 22:38:07,970 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194248704}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 194248704}
2022-05-12 22:38:07,970 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,832 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178257920}) to executor  for transfer request: 0.
2022-05-12 22:38:08,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) about to wait for the following futures []
2022-05-12 22:38:08,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) done waiting for dependent futures
2022-05-12 22:38:08,833 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178257920}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 178257920}
2022-05-12 22:38:08,833 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:09,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218365952}) to executor  for transfer request: 0.
2022-05-12 22:38:09,724 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:09,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218365952}) about to wait for the following futures []
2022-05-12 22:38:09,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218365952}) done waiting for dependent futures
2022-05-12 22:38:09,724 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218365952}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 218365952}
2022-05-12 22:38:09,725 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:09,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209977344}) to executor  for transfer request: 0.
2022-05-12 22:38:09,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:09,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) about to wait for the following futures []
2022-05-12 22:38:09,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) done waiting for dependent futures
2022-05-12 22:38:09,787 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209977344}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 209977344}
2022-05-12 22:38:09,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:09,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202375168}) to executor  for transfer request: 0.
2022-05-12 22:38:09,986 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:09,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) about to wait for the following futures []
2022-05-12 22:38:09,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) done waiting for dependent futures
2022-05-12 22:38:09,986 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202375168}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 202375168}
2022-05-12 22:38:09,986 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:10,605 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149946368}) to executor  for transfer request: 0.
2022-05-12 22:38:10,605 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:10,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) about to wait for the following futures []
2022-05-12 22:38:10,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) done waiting for dependent futures
2022-05-12 22:38:10,606 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149946368}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 149946368}
2022-05-12 22:38:10,606 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:11,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173277184}) to executor  for transfer request: 0.
2022-05-12 22:38:11,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:11,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) about to wait for the following futures []
2022-05-12 22:38:11,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) done waiting for dependent futures
2022-05-12 22:38:11,178 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173277184}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 173277184}
2022-05-12 22:38:11,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:12,522 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158597120}) to executor  for transfer request: 0.
2022-05-12 22:38:12,522 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:12,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) about to wait for the following futures []
2022-05-12 22:38:12,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) done waiting for dependent futures
2022-05-12 22:38:12,523 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158597120}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 158597120}
2022-05-12 22:38:12,523 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,077 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218628096}) to executor  for transfer request: 0.
2022-05-12 22:38:13,077 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,078 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218628096}) about to wait for the following futures []
2022-05-12 22:38:13,078 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218628096}) done waiting for dependent futures
2022-05-12 22:38:13,078 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218628096}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 218628096}
2022-05-12 22:38:13,078 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,080 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194510848}) to executor  for transfer request: 0.
2022-05-12 22:38:13,080 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) about to wait for the following futures []
2022-05-12 22:38:13,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) done waiting for dependent futures
2022-05-12 22:38:13,081 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194510848}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 194510848}
2022-05-12 22:38:13,081 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178520064}) to executor  for transfer request: 0.
2022-05-12 22:38:13,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) about to wait for the following futures []
2022-05-12 22:38:13,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) done waiting for dependent futures
2022-05-12 22:38:13,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178520064}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 178520064}
2022-05-12 22:38:13,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:14,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210239488}) to executor  for transfer request: 0.
2022-05-12 22:38:14,921 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:14,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) about to wait for the following futures []
2022-05-12 22:38:14,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) done waiting for dependent futures
2022-05-12 22:38:14,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210239488}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 210239488}
2022-05-12 22:38:14,922 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:15,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202637312}) to executor  for transfer request: 0.
2022-05-12 22:38:15,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:15,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) about to wait for the following futures []
2022-05-12 22:38:15,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) done waiting for dependent futures
2022-05-12 22:38:15,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202637312}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 202637312}
2022-05-12 22:38:15,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:15,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:38:15,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:15,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:38:15,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:38:15,877 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 14942208}
2022-05-12 22:38:15,877 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:16,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173539328}) to executor  for transfer request: 0.
2022-05-12 22:38:16,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:16,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) about to wait for the following futures []
2022-05-12 22:38:16,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) done waiting for dependent futures
2022-05-12 22:38:16,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173539328}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 173539328}
2022-05-12 22:38:16,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:16,546 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218890240}) to executor  for transfer request: 0.
2022-05-12 22:38:16,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:16,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218890240}) about to wait for the following futures []
2022-05-12 22:38:16,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218890240}) done waiting for dependent futures
2022-05-12 22:38:16,547 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218890240}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 218890240}
2022-05-12 22:38:16,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:17,439 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150208512}) to executor  for transfer request: 0.
2022-05-12 22:38:17,439 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:17,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) about to wait for the following futures []
2022-05-12 22:38:17,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) done waiting for dependent futures
2022-05-12 22:38:17,440 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150208512}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 150208512}
2022-05-12 22:38:17,440 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:17,502 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186646528}) to executor  for transfer request: 0.
2022-05-12 22:38:17,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:17,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) about to wait for the following futures []
2022-05-12 22:38:17,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) done waiting for dependent futures
2022-05-12 22:38:17,502 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186646528}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 186646528}
2022-05-12 22:38:17,502 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:17,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158859264}) to executor  for transfer request: 0.
2022-05-12 22:38:17,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:17,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) about to wait for the following futures []
2022-05-12 22:38:17,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) done waiting for dependent futures
2022-05-12 22:38:17,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158859264}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 158859264}
2022-05-12 22:38:17,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:18,464 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194772992}) to executor  for transfer request: 0.
2022-05-12 22:38:18,464 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:18,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) about to wait for the following futures []
2022-05-12 22:38:18,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) done waiting for dependent futures
2022-05-12 22:38:18,465 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194772992}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 194772992}
2022-05-12 22:38:18,465 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:19,249 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210501632}) to executor  for transfer request: 0.
2022-05-12 22:38:19,249 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:19,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) about to wait for the following futures []
2022-05-12 22:38:19,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) done waiting for dependent futures
2022-05-12 22:38:19,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210501632}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 210501632}
2022-05-12 22:38:19,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:20,425 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202899456}) to executor  for transfer request: 0.
2022-05-12 22:38:20,426 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:20,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) about to wait for the following futures []
2022-05-12 22:38:20,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) done waiting for dependent futures
2022-05-12 22:38:20,426 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202899456}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 202899456}
2022-05-12 22:38:20,426 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:21,023 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219152384}) to executor  for transfer request: 0.
2022-05-12 22:38:21,023 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:21,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219152384}) about to wait for the following futures []
2022-05-12 22:38:21,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219152384}) done waiting for dependent futures
2022-05-12 22:38:21,024 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219152384}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 219152384}
2022-05-12 22:38:21,025 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:21,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210763776}) to executor  for transfer request: 0.
2022-05-12 22:38:21,999 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:21,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) about to wait for the following futures []
2022-05-12 22:38:22,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) done waiting for dependent futures
2022-05-12 22:38:22,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210763776}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 210763776}
2022-05-12 22:38:22,000 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178782208}) to executor  for transfer request: 0.
2022-05-12 22:38:22,380 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) about to wait for the following futures []
2022-05-12 22:38:22,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) done waiting for dependent futures
2022-05-12 22:38:22,381 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178782208}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 178782208}
2022-05-12 22:38:22,381 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,778 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203161600}) to executor  for transfer request: 0.
2022-05-12 22:38:22,778 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) about to wait for the following futures []
2022-05-12 22:38:22,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) done waiting for dependent futures
2022-05-12 22:38:22,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203161600}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 203161600}
2022-05-12 22:38:22,779 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159121408}) to executor  for transfer request: 0.
2022-05-12 22:38:23,643 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:23,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) about to wait for the following futures []
2022-05-12 22:38:23,644 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) about to wait for the following futures []
2022-05-12 22:38:23,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) done waiting for dependent futures
2022-05-12 22:38:23,644 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) done waiting for dependent futures
2022-05-12 22:38:23,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159121408}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 159121408}
2022-05-12 22:38:23,644 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=226492416-234881023'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 226492416, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:38:23,644 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:23,644 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:23,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,644 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:23,644 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:23,644 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:23,644 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:23,645 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:38:23,645 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:38:23,645 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:23,645 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:23,645 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=226492416-234881023', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:38:23,645 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:23,645 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:38:23,645 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:23,645 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:23,645 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:38:23,645 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:38:23,645 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:38:23,645 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:38:23,645 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:38:23,645 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=226492416-234881023
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223823Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:38:23,645 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223823Z
20220512/eu-central-1/s3/aws4_request
9854e6cf91ca35fc111c9bdd872c6cd69be7a2b447cf363668e203b607249007
2022-05-12 22:38:23,645 botocore.auth DEBUG    Signature:
991735fb20b5a237e7d49bf9994961e19403b4c93e8600f238d0c8308106c30b
2022-05-12 22:38:23,645 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:23,645 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:23,645 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:38:23,646 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:38:23,832 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:38:23,833 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'OXh1CDK5ORVhteFLfcFmXqhMlS9DTy5waFqfdidr8deI/cGAzDD8rbdWY33LJMgFbXLKBnUNTHk=', 'x-amz-request-id': 'QS01A7SHZ33229J4', 'Date': 'Thu, 12 May 2022 22:38:24 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 226492416-234881023/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:38:23,833 botocore.parsers DEBUG    Response body:

2022-05-12 22:38:23,834 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:38:23,834 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:38:23,834 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:38:24,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203423744}) to executor  for transfer request: 0.
2022-05-12 22:38:24,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:24,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) about to wait for the following futures []
2022-05-12 22:38:24,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) done waiting for dependent futures
2022-05-12 22:38:24,127 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203423744}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 203423744}
2022-05-12 22:38:24,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:24,451 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173801472}) to executor  for transfer request: 0.
2022-05-12 22:38:24,451 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:24,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) about to wait for the following futures []
2022-05-12 22:38:24,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) done waiting for dependent futures
2022-05-12 22:38:24,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173801472}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 173801472}
2022-05-12 22:38:24,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:24,778 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:38:24,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:24,779 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:38:24,779 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:38:24,779 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 12320768}
2022-05-12 22:38:24,780 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:24,801 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195035136}) to executor  for transfer request: 0.
2022-05-12 22:38:24,801 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:24,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) about to wait for the following futures []
2022-05-12 22:38:24,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) done waiting for dependent futures
2022-05-12 22:38:24,802 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195035136}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 195035136}
2022-05-12 22:38:24,802 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:25,185 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150470656}) to executor  for transfer request: 0.
2022-05-12 22:38:25,185 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:25,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) about to wait for the following futures []
2022-05-12 22:38:25,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) done waiting for dependent futures
2022-05-12 22:38:25,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150470656}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 150470656}
2022-05-12 22:38:25,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,578 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219414528}) to executor  for transfer request: 0.
2022-05-12 22:38:26,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219414528}) about to wait for the following futures []
2022-05-12 22:38:26,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219414528}) done waiting for dependent futures
2022-05-12 22:38:26,579 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219414528}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 219414528}
2022-05-12 22:38:26,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179044352}) to executor  for transfer request: 0.
2022-05-12 22:38:26,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) about to wait for the following futures []
2022-05-12 22:38:26,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) done waiting for dependent futures
2022-05-12 22:38:26,750 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179044352}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 179044352}
2022-05-12 22:38:26,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,930 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211025920}) to executor  for transfer request: 0.
2022-05-12 22:38:26,931 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) about to wait for the following futures []
2022-05-12 22:38:26,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) done waiting for dependent futures
2022-05-12 22:38:26,931 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211025920}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 211025920}
2022-05-12 22:38:26,931 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203685888}) to executor  for transfer request: 0.
2022-05-12 22:38:27,141 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,141 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) about to wait for the following futures []
2022-05-12 22:38:27,141 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) done waiting for dependent futures
2022-05-12 22:38:27,141 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203685888}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 203685888}
2022-05-12 22:38:27,142 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:38:27,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:38:27,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:38:27,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 15204352}
2022-05-12 22:38:27,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,715 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226492416}) to executor  for transfer request: 0.
2022-05-12 22:38:27,715 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226492416}) about to wait for the following futures []
2022-05-12 22:38:27,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226492416}) done waiting for dependent futures
2022-05-12 22:38:27,716 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226492416}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 226492416}
2022-05-12 22:38:27,717 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:29,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186908672}) to executor  for transfer request: 0.
2022-05-12 22:38:29,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:29,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) about to wait for the following futures []
2022-05-12 22:38:29,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) done waiting for dependent futures
2022-05-12 22:38:29,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186908672}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 186908672}
2022-05-12 22:38:29,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:29,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174063616}) to executor  for transfer request: 0.
2022-05-12 22:38:29,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:29,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) about to wait for the following futures []
2022-05-12 22:38:29,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) done waiting for dependent futures
2022-05-12 22:38:29,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174063616}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 174063616}
2022-05-12 22:38:29,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:29,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195297280}) to executor  for transfer request: 0.
2022-05-12 22:38:29,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:29,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) about to wait for the following futures []
2022-05-12 22:38:29,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) done waiting for dependent futures
2022-05-12 22:38:29,887 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195297280}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 195297280}
2022-05-12 22:38:29,887 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:30,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179306496}) to executor  for transfer request: 0.
2022-05-12 22:38:30,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:30,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) about to wait for the following futures []
2022-05-12 22:38:30,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) done waiting for dependent futures
2022-05-12 22:38:30,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179306496}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 179306496}
2022-05-12 22:38:30,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,008 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203948032}) to executor  for transfer request: 0.
2022-05-12 22:38:31,009 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,009 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) about to wait for the following futures []
2022-05-12 22:38:31,009 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) done waiting for dependent futures
2022-05-12 22:38:31,009 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203948032}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 203948032}
2022-05-12 22:38:31,010 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,441 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226754560}) to executor  for transfer request: 0.
2022-05-12 22:38:31,441 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226754560}) about to wait for the following futures []
2022-05-12 22:38:31,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226754560}) done waiting for dependent futures
2022-05-12 22:38:31,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226754560}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 226754560}
2022-05-12 22:38:31,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:32,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195559424}) to executor  for transfer request: 0.
2022-05-12 22:38:32,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:32,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) about to wait for the following futures []
2022-05-12 22:38:32,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) done waiting for dependent futures
2022-05-12 22:38:32,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195559424}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 195559424}
2022-05-12 22:38:32,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:32,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219676672}) to executor  for transfer request: 0.
2022-05-12 22:38:32,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:32,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219676672}) about to wait for the following futures []
2022-05-12 22:38:32,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219676672}) done waiting for dependent futures
2022-05-12 22:38:32,740 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219676672}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 219676672}
2022-05-12 22:38:32,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:32,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211288064}) to executor  for transfer request: 0.
2022-05-12 22:38:32,834 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:32,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) about to wait for the following futures []
2022-05-12 22:38:32,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) done waiting for dependent futures
2022-05-12 22:38:32,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211288064}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 211288064}
2022-05-12 22:38:32,835 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,621 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187170816}) to executor  for transfer request: 0.
2022-05-12 22:38:33,621 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:33,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) about to wait for the following futures []
2022-05-12 22:38:33,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) done waiting for dependent futures
2022-05-12 22:38:33,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187170816}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 187170816}
2022-05-12 22:38:33,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:34,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150732800}) to executor  for transfer request: 0.
2022-05-12 22:38:34,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:34,068 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:34,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) about to wait for the following futures []
2022-05-12 22:38:34,068 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) about to wait for the following futures []
2022-05-12 22:38:34,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) done waiting for dependent futures
2022-05-12 22:38:34,069 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) done waiting for dependent futures
2022-05-12 22:38:34,069 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150732800}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 150732800}
2022-05-12 22:38:34,069 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=30>, 'extra_args': {'Range': 'bytes=234881024-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 234881024, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:38:34,069 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:34,069 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:34,069 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:34,070 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:34,070 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:34,070 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:34,070 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:34,070 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:38:34,070 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:38:34,071 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:34,071 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:34,071 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=234881024-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:38:34,071 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:34,071 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:38:34,071 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:34,071 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:34,071 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:38:34,071 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:38:34,071 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:38:34,071 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data/BANDS.npy
2022-05-12 22:38:34,072 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:38:34,072 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_4_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=234881024-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223834Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:38:34,072 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223834Z
20220512/eu-central-1/s3/aws4_request
535ff842e8edb689bb30bd65ed83c59a8f4a14e81ecb4c23bfbeccc2774973c3
2022-05-12 22:38:34,072 botocore.auth DEBUG    Signature:
af0548c72ab82772327a3db57a83c791266d128427dfc932da8538fbb43a1e44
2022-05-12 22:38:34,072 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:34,072 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:34,072 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:38:34,072 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:38:34,290 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_4_1/data/BANDS.npy HTTP/1.1" 206 7119104
2022-05-12 22:38:34,290 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'RDd9lzg1+oENSyRQG/PMiLEy1FU65VlJibe+hymq0P5ENqwh8d0Ed6yaqrE9axLj/d46UxI/IQU=', 'x-amz-request-id': 'CRTGTX1SRY72GK14', 'Date': 'Thu, 12 May 2022 22:38:35 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:29 GMT', 'ETag': '"d1e0eecf7a3c8a1323d909fce184cee5-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 234881024-242000127/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '7119104', 'Connection': 'close'}
2022-05-12 22:38:34,290 botocore.parsers DEBUG    Response body:

2022-05-12 22:38:34,291 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:38:34,291 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:38:34,291 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:38:34,500 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195821568}) to executor  for transfer request: 0.
2022-05-12 22:38:34,500 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:34,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) about to wait for the following futures []
2022-05-12 22:38:34,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) done waiting for dependent futures
2022-05-12 22:38:34,501 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195821568}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 195821568}
2022-05-12 22:38:34,501 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,089 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204210176}) to executor  for transfer request: 0.
2022-05-12 22:38:35,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) about to wait for the following futures []
2022-05-12 22:38:35,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) done waiting for dependent futures
2022-05-12 22:38:35,090 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204210176}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 204210176}
2022-05-12 22:38:35,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,987 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219938816}) to executor  for transfer request: 0.
2022-05-12 22:38:35,987 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219938816}) about to wait for the following futures []
2022-05-12 22:38:35,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219938816}) done waiting for dependent futures
2022-05-12 22:38:35,988 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219938816}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 219938816}
2022-05-12 22:38:35,988 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:36,016 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174325760}) to executor  for transfer request: 0.
2022-05-12 22:38:36,016 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:36,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) about to wait for the following futures []
2022-05-12 22:38:36,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) done waiting for dependent futures
2022-05-12 22:38:36,017 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174325760}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 174325760}
2022-05-12 22:38:36,017 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:37,276 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211550208}) to executor  for transfer request: 0.
2022-05-12 22:38:37,276 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:37,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) about to wait for the following futures []
2022-05-12 22:38:37,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) done waiting for dependent futures
2022-05-12 22:38:37,276 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211550208}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 211550208}
2022-05-12 22:38:37,277 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:37,460 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179568640}) to executor  for transfer request: 0.
2022-05-12 22:38:37,460 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:37,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) about to wait for the following futures []
2022-05-12 22:38:37,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) done waiting for dependent futures
2022-05-12 22:38:37,461 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179568640}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 179568640}
2022-05-12 22:38:37,461 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:38,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227016704}) to executor  for transfer request: 0.
2022-05-12 22:38:38,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:38,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227016704}) about to wait for the following futures []
2022-05-12 22:38:38,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227016704}) done waiting for dependent futures
2022-05-12 22:38:38,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227016704}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 227016704}
2022-05-12 22:38:38,186 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:38,603 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220200960}) to executor  for transfer request: 0.
2022-05-12 22:38:38,603 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:38,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220200960}) about to wait for the following futures []
2022-05-12 22:38:38,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220200960}) done waiting for dependent futures
2022-05-12 22:38:38,604 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220200960}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 220200960}
2022-05-12 22:38:38,604 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:39,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187432960}) to executor  for transfer request: 0.
2022-05-12 22:38:39,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:39,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) about to wait for the following futures []
2022-05-12 22:38:39,069 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) done waiting for dependent futures
2022-05-12 22:38:39,069 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187432960}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 187432960}
2022-05-12 22:38:39,069 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,409 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204472320}) to executor  for transfer request: 0.
2022-05-12 22:38:40,409 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) about to wait for the following futures []
2022-05-12 22:38:40,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) done waiting for dependent futures
2022-05-12 22:38:40,410 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204472320}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 204472320}
2022-05-12 22:38:40,410 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234881024}) to executor  for transfer request: 0.
2022-05-12 22:38:40,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234881024}) about to wait for the following futures []
2022-05-12 22:38:40,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234881024}) done waiting for dependent futures
2022-05-12 22:38:40,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234881024}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 234881024}
2022-05-12 22:38:40,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,870 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174587904}) to executor  for transfer request: 0.
2022-05-12 22:38:40,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) about to wait for the following futures []
2022-05-12 22:38:40,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) done waiting for dependent futures
2022-05-12 22:38:40,871 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174587904}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 174587904}
2022-05-12 22:38:40,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:41,795 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196083712}) to executor  for transfer request: 0.
2022-05-12 22:38:41,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:41,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) about to wait for the following futures []
2022-05-12 22:38:41,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) done waiting for dependent futures
2022-05-12 22:38:41,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196083712}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 196083712}
2022-05-12 22:38:41,797 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:41,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211812352}) to executor  for transfer request: 0.
2022-05-12 22:38:41,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:41,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) about to wait for the following futures []
2022-05-12 22:38:41,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) done waiting for dependent futures
2022-05-12 22:38:41,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211812352}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 211812352}
2022-05-12 22:38:41,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:41,934 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220463104}) to executor  for transfer request: 0.
2022-05-12 22:38:41,934 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:41,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220463104}) about to wait for the following futures []
2022-05-12 22:38:41,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220463104}) done waiting for dependent futures
2022-05-12 22:38:41,934 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220463104}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 220463104}
2022-05-12 22:38:41,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:42,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227278848}) to executor  for transfer request: 0.
2022-05-12 22:38:42,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:42,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227278848}) about to wait for the following futures []
2022-05-12 22:38:42,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227278848}) done waiting for dependent futures
2022-05-12 22:38:42,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227278848}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 227278848}
2022-05-12 22:38:42,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:42,894 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235143168}) to executor  for transfer request: 0.
2022-05-12 22:38:42,895 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:42,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235143168}) about to wait for the following futures []
2022-05-12 22:38:42,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235143168}) done waiting for dependent futures
2022-05-12 22:38:42,895 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235143168}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 235143168}
2022-05-12 22:38:42,896 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:42,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187695104}) to executor  for transfer request: 0.
2022-05-12 22:38:42,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:42,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) about to wait for the following futures []
2022-05-12 22:38:42,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) done waiting for dependent futures
2022-05-12 22:38:42,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187695104}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 187695104}
2022-05-12 22:38:42,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:43,752 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179830784}) to executor  for transfer request: 0.
2022-05-12 22:38:43,752 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:43,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) about to wait for the following futures []
2022-05-12 22:38:43,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) done waiting for dependent futures
2022-05-12 22:38:43,753 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179830784}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 179830784}
2022-05-12 22:38:43,753 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:44,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:38:44,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:44,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:38:44,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:38:44,584 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 15466496}
2022-05-12 22:38:44,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:45,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212074496}) to executor  for transfer request: 0.
2022-05-12 22:38:45,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:45,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) about to wait for the following futures []
2022-05-12 22:38:45,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) done waiting for dependent futures
2022-05-12 22:38:45,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212074496}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 212074496}
2022-05-12 22:38:45,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:46,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235405312}) to executor  for transfer request: 0.
2022-05-12 22:38:46,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:46,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235405312}) about to wait for the following futures []
2022-05-12 22:38:46,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235405312}) done waiting for dependent futures
2022-05-12 22:38:46,269 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235405312}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 235405312}
2022-05-12 22:38:46,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:46,588 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220725248}) to executor  for transfer request: 0.
2022-05-12 22:38:46,588 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:46,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220725248}) about to wait for the following futures []
2022-05-12 22:38:46,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220725248}) done waiting for dependent futures
2022-05-12 22:38:46,589 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220725248}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 220725248}
2022-05-12 22:38:46,589 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:46,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204734464}) to executor  for transfer request: 0.
2022-05-12 22:38:46,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:46,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) about to wait for the following futures []
2022-05-12 22:38:46,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) done waiting for dependent futures
2022-05-12 22:38:46,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204734464}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 204734464}
2022-05-12 22:38:46,650 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:46,900 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174850048}) to executor  for transfer request: 0.
2022-05-12 22:38:46,900 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:46,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) about to wait for the following futures []
2022-05-12 22:38:46,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) done waiting for dependent futures
2022-05-12 22:38:46,901 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174850048}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 174850048}
2022-05-12 22:38:46,901 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,547 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196345856}) to executor  for transfer request: 0.
2022-05-12 22:38:47,547 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:47,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) about to wait for the following futures []
2022-05-12 22:38:47,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) done waiting for dependent futures
2022-05-12 22:38:47,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196345856}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 196345856}
2022-05-12 22:38:47,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:50,104 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212336640}) to executor  for transfer request: 0.
2022-05-12 22:38:50,104 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:50,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) about to wait for the following futures []
2022-05-12 22:38:50,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) done waiting for dependent futures
2022-05-12 22:38:50,104 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212336640}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 212336640}
2022-05-12 22:38:50,105 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:50,314 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:38:50,314 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:50,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:38:50,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:38:50,314 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 12582912}
2022-05-12 22:38:50,315 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:50,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180092928}) to executor  for transfer request: 0.
2022-05-12 22:38:50,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:50,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) about to wait for the following futures []
2022-05-12 22:38:50,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) done waiting for dependent futures
2022-05-12 22:38:50,663 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180092928}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 180092928}
2022-05-12 22:38:50,664 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:50,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187957248}) to executor  for transfer request: 0.
2022-05-12 22:38:50,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:50,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) about to wait for the following futures []
2022-05-12 22:38:50,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) done waiting for dependent futures
2022-05-12 22:38:50,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187957248}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 187957248}
2022-05-12 22:38:50,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:51,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235667456}) to executor  for transfer request: 0.
2022-05-12 22:38:51,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:51,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235667456}) about to wait for the following futures []
2022-05-12 22:38:51,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235667456}) done waiting for dependent futures
2022-05-12 22:38:51,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235667456}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 235667456}
2022-05-12 22:38:51,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:51,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227540992}) to executor  for transfer request: 0.
2022-05-12 22:38:51,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:51,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227540992}) about to wait for the following futures []
2022-05-12 22:38:51,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227540992}) done waiting for dependent futures
2022-05-12 22:38:51,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227540992}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 227540992}
2022-05-12 22:38:51,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:51,768 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220987392}) to executor  for transfer request: 0.
2022-05-12 22:38:51,769 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:51,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220987392}) about to wait for the following futures []
2022-05-12 22:38:51,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220987392}) done waiting for dependent futures
2022-05-12 22:38:51,769 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220987392}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 220987392}
2022-05-12 22:38:51,770 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:51,770 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212598784}) to executor  for transfer request: 0.
2022-05-12 22:38:51,770 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:51,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) about to wait for the following futures []
2022-05-12 22:38:51,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) done waiting for dependent futures
2022-05-12 22:38:51,771 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212598784}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 212598784}
2022-05-12 22:38:51,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:51,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196608000}) to executor  for transfer request: 0.
2022-05-12 22:38:51,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:51,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) about to wait for the following futures []
2022-05-12 22:38:51,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) done waiting for dependent futures
2022-05-12 22:38:51,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196608000}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 196608000}
2022-05-12 22:38:51,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,000 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175112192}) to executor  for transfer request: 0.
2022-05-12 22:38:52,001 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:52,001 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) about to wait for the following futures []
2022-05-12 22:38:52,001 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) done waiting for dependent futures
2022-05-12 22:38:52,001 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175112192}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 175112192}
2022-05-12 22:38:52,001 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,261 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204996608}) to executor  for transfer request: 0.
2022-05-12 22:38:52,261 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:52,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) about to wait for the following futures []
2022-05-12 22:38:52,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) done waiting for dependent futures
2022-05-12 22:38:52,262 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204996608}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 204996608}
2022-05-12 22:38:52,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180355072}) to executor  for transfer request: 0.
2022-05-12 22:38:54,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) about to wait for the following futures []
2022-05-12 22:38:54,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) done waiting for dependent futures
2022-05-12 22:38:54,283 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180355072}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 180355072}
2022-05-12 22:38:54,284 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,550 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:38:54,550 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,550 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:38:54,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:38:54,551 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 15728640}
2022-05-12 22:38:54,551 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205258752}) to executor  for transfer request: 0.
2022-05-12 22:38:54,981 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) about to wait for the following futures []
2022-05-12 22:38:54,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) done waiting for dependent futures
2022-05-12 22:38:54,982 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205258752}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 205258752}
2022-05-12 22:38:54,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:55,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221249536}) to executor  for transfer request: 0.
2022-05-12 22:38:55,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:55,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221249536}) about to wait for the following futures []
2022-05-12 22:38:55,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221249536}) done waiting for dependent futures
2022-05-12 22:38:55,549 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221249536}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 221249536}
2022-05-12 22:38:55,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:55,783 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235929600}) to executor  for transfer request: 0.
2022-05-12 22:38:55,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:55,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235929600}) about to wait for the following futures []
2022-05-12 22:38:55,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235929600}) done waiting for dependent futures
2022-05-12 22:38:55,784 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235929600}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 235929600}
2022-05-12 22:38:55,784 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:55,839 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175374336}) to executor  for transfer request: 0.
2022-05-12 22:38:55,840 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:55,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) about to wait for the following futures []
2022-05-12 22:38:55,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) done waiting for dependent futures
2022-05-12 22:38:55,840 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175374336}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 175374336}
2022-05-12 22:38:55,841 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:56,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212860928}) to executor  for transfer request: 0.
2022-05-12 22:38:56,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:56,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) about to wait for the following futures []
2022-05-12 22:38:56,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) done waiting for dependent futures
2022-05-12 22:38:56,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212860928}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 212860928}
2022-05-12 22:38:56,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:56,434 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196870144}) to executor  for transfer request: 0.
2022-05-12 22:38:56,434 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:56,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) about to wait for the following futures []
2022-05-12 22:38:56,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) done waiting for dependent futures
2022-05-12 22:38:56,434 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196870144}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 196870144}
2022-05-12 22:38:56,435 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:56,859 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188219392}) to executor  for transfer request: 0.
2022-05-12 22:38:56,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:56,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) about to wait for the following futures []
2022-05-12 22:38:56,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) done waiting for dependent futures
2022-05-12 22:38:56,859 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188219392}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 188219392}
2022-05-12 22:38:56,860 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:57,385 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180617216}) to executor  for transfer request: 0.
2022-05-12 22:38:57,385 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:57,385 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) about to wait for the following futures []
2022-05-12 22:38:57,385 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) done waiting for dependent futures
2022-05-12 22:38:57,385 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180617216}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 180617216}
2022-05-12 22:38:57,386 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:57,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227803136}) to executor  for transfer request: 0.
2022-05-12 22:38:57,854 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:57,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227803136}) about to wait for the following futures []
2022-05-12 22:38:57,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227803136}) done waiting for dependent futures
2022-05-12 22:38:57,854 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227803136}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 227803136}
2022-05-12 22:38:57,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:58,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213123072}) to executor  for transfer request: 0.
2022-05-12 22:38:58,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:58,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213123072}) about to wait for the following futures []
2022-05-12 22:38:58,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213123072}) done waiting for dependent futures
2022-05-12 22:38:58,331 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213123072}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 213123072}
2022-05-12 22:38:58,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:58,580 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221511680}) to executor  for transfer request: 0.
2022-05-12 22:38:58,580 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:58,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221511680}) about to wait for the following futures []
2022-05-12 22:38:58,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221511680}) done waiting for dependent futures
2022-05-12 22:38:58,580 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221511680}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 221511680}
2022-05-12 22:38:58,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:58,989 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197132288}) to executor  for transfer request: 0.
2022-05-12 22:38:58,989 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:58,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) about to wait for the following futures []
2022-05-12 22:38:58,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) done waiting for dependent futures
2022-05-12 22:38:58,990 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197132288}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 197132288}
2022-05-12 22:38:58,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:59,940 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236191744}) to executor  for transfer request: 0.
2022-05-12 22:38:59,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:59,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236191744}) about to wait for the following futures []
2022-05-12 22:38:59,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236191744}) done waiting for dependent futures
2022-05-12 22:38:59,941 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236191744}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 236191744}
2022-05-12 22:38:59,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205520896}) to executor  for transfer request: 0.
2022-05-12 22:39:00,219 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) about to wait for the following futures []
2022-05-12 22:39:00,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) done waiting for dependent futures
2022-05-12 22:39:00,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205520896}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 205520896}
2022-05-12 22:39:00,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,336 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221773824}) to executor  for transfer request: 0.
2022-05-12 22:39:00,336 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221773824}) about to wait for the following futures []
2022-05-12 22:39:00,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221773824}) done waiting for dependent futures
2022-05-12 22:39:00,336 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221773824}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 221773824}
2022-05-12 22:39:00,337 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,640 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188481536}) to executor  for transfer request: 0.
2022-05-12 22:39:00,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) about to wait for the following futures []
2022-05-12 22:39:00,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) done waiting for dependent futures
2022-05-12 22:39:00,641 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188481536}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 188481536}
2022-05-12 22:39:00,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,726 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:39:00,726 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:39:00,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:39:00,727 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 12845056}
2022-05-12 22:39:00,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228065280}) to executor  for transfer request: 0.
2022-05-12 22:39:00,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228065280}) about to wait for the following futures []
2022-05-12 22:39:00,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228065280}) done waiting for dependent futures
2022-05-12 22:39:00,908 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228065280}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 228065280}
2022-05-12 22:39:00,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:01,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205783040}) to executor  for transfer request: 0.
2022-05-12 22:39:01,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:01,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) about to wait for the following futures []
2022-05-12 22:39:01,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) done waiting for dependent futures
2022-05-12 22:39:01,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205783040}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 205783040}
2022-05-12 22:39:01,650 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:01,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213385216}) to executor  for transfer request: 0.
2022-05-12 22:39:01,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:01,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213385216}) about to wait for the following futures []
2022-05-12 22:39:01,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213385216}) done waiting for dependent futures
2022-05-12 22:39:01,724 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213385216}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 213385216}
2022-05-12 22:39:01,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:01,764 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175636480}) to executor  for transfer request: 0.
2022-05-12 22:39:01,764 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:01,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) about to wait for the following futures []
2022-05-12 22:39:01,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) done waiting for dependent futures
2022-05-12 22:39:01,764 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175636480}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 175636480}
2022-05-12 22:39:01,764 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:01,946 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222035968}) to executor  for transfer request: 0.
2022-05-12 22:39:01,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:01,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222035968}) about to wait for the following futures []
2022-05-12 22:39:01,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222035968}) done waiting for dependent futures
2022-05-12 22:39:01,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222035968}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 222035968}
2022-05-12 22:39:01,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:02,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197394432}) to executor  for transfer request: 0.
2022-05-12 22:39:02,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:02,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) about to wait for the following futures []
2022-05-12 22:39:02,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) done waiting for dependent futures
2022-05-12 22:39:02,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197394432}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 197394432}
2022-05-12 22:39:02,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:02,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236453888}) to executor  for transfer request: 0.
2022-05-12 22:39:02,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:02,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236453888}) about to wait for the following futures []
2022-05-12 22:39:02,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236453888}) done waiting for dependent futures
2022-05-12 22:39:02,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236453888}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 236453888}
2022-05-12 22:39:02,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,074 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222298112}) to executor  for transfer request: 0.
2022-05-12 22:39:03,074 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222298112}) about to wait for the following futures []
2022-05-12 22:39:03,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222298112}) done waiting for dependent futures
2022-05-12 22:39:03,075 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222298112}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 222298112}
2022-05-12 22:39:03,075 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206045184}) to executor  for transfer request: 0.
2022-05-12 22:39:03,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) about to wait for the following futures []
2022-05-12 22:39:03,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) done waiting for dependent futures
2022-05-12 22:39:03,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206045184}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 206045184}
2022-05-12 22:39:03,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,696 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:39:03,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:39:03,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:39:03,697 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 15990784}
2022-05-12 22:39:03,698 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,815 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180879360}) to executor  for transfer request: 0.
2022-05-12 22:39:03,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) about to wait for the following futures []
2022-05-12 22:39:03,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) done waiting for dependent futures
2022-05-12 22:39:03,816 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180879360}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 180879360}
2022-05-12 22:39:03,817 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228327424}) to executor  for transfer request: 0.
2022-05-12 22:39:03,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,817 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228327424}) about to wait for the following futures []
2022-05-12 22:39:03,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228327424}) done waiting for dependent futures
2022-05-12 22:39:03,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228327424}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 228327424}
2022-05-12 22:39:03,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,530 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188743680}) to executor  for transfer request: 0.
2022-05-12 22:39:04,530 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:04,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) about to wait for the following futures []
2022-05-12 22:39:04,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) done waiting for dependent futures
2022-05-12 22:39:04,530 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188743680}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 188743680}
2022-05-12 22:39:04,531 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,533 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175898624}) to executor  for transfer request: 0.
2022-05-12 22:39:04,534 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:04,534 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) about to wait for the following futures []
2022-05-12 22:39:04,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) done waiting for dependent futures
2022-05-12 22:39:04,534 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175898624}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 175898624}
2022-05-12 22:39:04,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:05,255 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222560256}) to executor  for transfer request: 0.
2022-05-12 22:39:05,255 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:05,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222560256}) about to wait for the following futures []
2022-05-12 22:39:05,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222560256}) done waiting for dependent futures
2022-05-12 22:39:05,256 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222560256}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 222560256}
2022-05-12 22:39:05,257 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:05,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197656576}) to executor  for transfer request: 0.
2022-05-12 22:39:05,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:05,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) about to wait for the following futures []
2022-05-12 22:39:05,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) done waiting for dependent futures
2022-05-12 22:39:05,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197656576}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 197656576}
2022-05-12 22:39:05,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:05,440 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213647360}) to executor  for transfer request: 0.
2022-05-12 22:39:05,440 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:05,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213647360}) about to wait for the following futures []
2022-05-12 22:39:05,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213647360}) done waiting for dependent futures
2022-05-12 22:39:05,441 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213647360}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 213647360}
2022-05-12 22:39:05,441 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:05,726 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206307328}) to executor  for transfer request: 0.
2022-05-12 22:39:05,727 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:05,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) about to wait for the following futures []
2022-05-12 22:39:05,727 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) done waiting for dependent futures
2022-05-12 22:39:05,727 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206307328}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 206307328}
2022-05-12 22:39:05,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:06,023 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:39:06,023 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:06,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:39:06,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:39:06,024 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 13107200}
2022-05-12 22:39:06,024 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:06,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222822400}) to executor  for transfer request: 0.
2022-05-12 22:39:06,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:06,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222822400}) about to wait for the following futures []
2022-05-12 22:39:06,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222822400}) done waiting for dependent futures
2022-05-12 22:39:06,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222822400}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 222822400}
2022-05-12 22:39:06,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:07,454 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236716032}) to executor  for transfer request: 0.
2022-05-12 22:39:07,455 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:07,455 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236716032}) about to wait for the following futures []
2022-05-12 22:39:07,455 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236716032}) done waiting for dependent futures
2022-05-12 22:39:07,455 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236716032}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 236716032}
2022-05-12 22:39:07,456 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:08,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213909504}) to executor  for transfer request: 0.
2022-05-12 22:39:08,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:08,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213909504}) about to wait for the following futures []
2022-05-12 22:39:08,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213909504}) done waiting for dependent futures
2022-05-12 22:39:08,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213909504}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 213909504}
2022-05-12 22:39:08,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:08,408 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181141504}) to executor  for transfer request: 0.
2022-05-12 22:39:08,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:08,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) about to wait for the following futures []
2022-05-12 22:39:08,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) done waiting for dependent futures
2022-05-12 22:39:08,409 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181141504}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 181141504}
2022-05-12 22:39:08,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:08,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197918720}) to executor  for transfer request: 0.
2022-05-12 22:39:08,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:08,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) about to wait for the following futures []
2022-05-12 22:39:08,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) done waiting for dependent futures
2022-05-12 22:39:08,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197918720}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 197918720}
2022-05-12 22:39:08,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:08,793 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189005824}) to executor  for transfer request: 0.
2022-05-12 22:39:08,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:08,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) about to wait for the following futures []
2022-05-12 22:39:08,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) done waiting for dependent futures
2022-05-12 22:39:08,794 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189005824}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 189005824}
2022-05-12 22:39:08,794 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,121 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228589568}) to executor  for transfer request: 0.
2022-05-12 22:39:09,121 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228589568}) about to wait for the following futures []
2022-05-12 22:39:09,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228589568}) done waiting for dependent futures
2022-05-12 22:39:09,122 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228589568}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 228589568}
2022-05-12 22:39:09,122 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,242 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236978176}) to executor  for transfer request: 0.
2022-05-12 22:39:09,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236978176}) about to wait for the following futures []
2022-05-12 22:39:09,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236978176}) done waiting for dependent futures
2022-05-12 22:39:09,243 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236978176}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 236978176}
2022-05-12 22:39:09,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,629 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:39:09,629 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:39:09,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:39:09,630 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 13369344}
2022-05-12 22:39:09,630 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,896 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214171648}) to executor  for transfer request: 0.
2022-05-12 22:39:09,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214171648}) about to wait for the following futures []
2022-05-12 22:39:09,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214171648}) done waiting for dependent futures
2022-05-12 22:39:09,897 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214171648}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 214171648}
2022-05-12 22:39:09,897 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206569472}) to executor  for transfer request: 0.
2022-05-12 22:39:09,943 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) about to wait for the following futures []
2022-05-12 22:39:09,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) done waiting for dependent futures
2022-05-12 22:39:09,943 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206569472}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 206569472}
2022-05-12 22:39:09,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:10,172 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223084544}) to executor  for transfer request: 0.
2022-05-12 22:39:10,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:10,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223084544}) about to wait for the following futures []
2022-05-12 22:39:10,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223084544}) done waiting for dependent futures
2022-05-12 22:39:10,173 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223084544}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 223084544}
2022-05-12 22:39:10,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:10,308 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189267968}) to executor  for transfer request: 0.
2022-05-12 22:39:10,308 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:10,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) about to wait for the following futures []
2022-05-12 22:39:10,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) done waiting for dependent futures
2022-05-12 22:39:10,309 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189267968}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 189267968}
2022-05-12 22:39:10,309 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:10,350 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198180864}) to executor  for transfer request: 0.
2022-05-12 22:39:10,350 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:10,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) about to wait for the following futures []
2022-05-12 22:39:10,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) done waiting for dependent futures
2022-05-12 22:39:10,351 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198180864}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 198180864}
2022-05-12 22:39:10,351 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189530112}) to executor  for transfer request: 0.
2022-05-12 22:39:11,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:11,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) about to wait for the following futures []
2022-05-12 22:39:11,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) done waiting for dependent futures
2022-05-12 22:39:11,141 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189530112}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 189530112}
2022-05-12 22:39:11,141 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,277 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198443008}) to executor  for transfer request: 0.
2022-05-12 22:39:11,277 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:11,277 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) about to wait for the following futures []
2022-05-12 22:39:11,277 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) done waiting for dependent futures
2022-05-12 22:39:11,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198443008}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 198443008}
2022-05-12 22:39:11,278 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:39:11,297 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:11,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:39:11,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:39:11,298 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 16252928}
2022-05-12 22:39:11,298 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,584 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181403648}) to executor  for transfer request: 0.
2022-05-12 22:39:11,584 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:11,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) about to wait for the following futures []
2022-05-12 22:39:11,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) done waiting for dependent futures
2022-05-12 22:39:11,585 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181403648}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 181403648}
2022-05-12 22:39:11,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:12,013 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198705152}) to executor  for transfer request: 0.
2022-05-12 22:39:12,013 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:12,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) about to wait for the following futures []
2022-05-12 22:39:12,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) done waiting for dependent futures
2022-05-12 22:39:12,014 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198705152}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 198705152}
2022-05-12 22:39:12,014 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:12,345 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189792256}) to executor  for transfer request: 0.
2022-05-12 22:39:12,345 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:12,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) about to wait for the following futures []
2022-05-12 22:39:12,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) done waiting for dependent futures
2022-05-12 22:39:12,346 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189792256}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 189792256}
2022-05-12 22:39:12,346 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:12,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206831616}) to executor  for transfer request: 0.
2022-05-12 22:39:12,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:12,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) about to wait for the following futures []
2022-05-12 22:39:12,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) done waiting for dependent futures
2022-05-12 22:39:12,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206831616}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 206831616}
2022-05-12 22:39:12,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:12,690 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223346688}) to executor  for transfer request: 0.
2022-05-12 22:39:12,690 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:12,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223346688}) about to wait for the following futures []
2022-05-12 22:39:12,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223346688}) done waiting for dependent futures
2022-05-12 22:39:12,691 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223346688}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 223346688}
2022-05-12 22:39:12,691 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:13,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198967296}) to executor  for transfer request: 0.
2022-05-12 22:39:13,029 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:13,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) about to wait for the following futures []
2022-05-12 22:39:13,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) done waiting for dependent futures
2022-05-12 22:39:13,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198967296}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 198967296}
2022-05-12 22:39:13,030 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:13,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214433792}) to executor  for transfer request: 0.
2022-05-12 22:39:13,208 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:13,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214433792}) about to wait for the following futures []
2022-05-12 22:39:13,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214433792}) done waiting for dependent futures
2022-05-12 22:39:13,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214433792}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 214433792}
2022-05-12 22:39:13,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:13,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228851712}) to executor  for transfer request: 0.
2022-05-12 22:39:13,217 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:13,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228851712}) about to wait for the following futures []
2022-05-12 22:39:13,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228851712}) done waiting for dependent futures
2022-05-12 22:39:13,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228851712}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 228851712}
2022-05-12 22:39:13,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:13,481 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237240320}) to executor  for transfer request: 0.
2022-05-12 22:39:13,482 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:13,482 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237240320}) about to wait for the following futures []
2022-05-12 22:39:13,482 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237240320}) done waiting for dependent futures
2022-05-12 22:39:13,482 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237240320}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 237240320}
2022-05-12 22:39:13,482 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:14,749 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223608832}) to executor  for transfer request: 0.
2022-05-12 22:39:14,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:14,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223608832}) about to wait for the following futures []
2022-05-12 22:39:14,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223608832}) done waiting for dependent futures
2022-05-12 22:39:14,750 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223608832}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 223608832}
2022-05-12 22:39:14,750 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:14,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181665792}) to executor  for transfer request: 0.
2022-05-12 22:39:14,887 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:14,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) about to wait for the following futures []
2022-05-12 22:39:14,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) done waiting for dependent futures
2022-05-12 22:39:14,887 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181665792}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 181665792}
2022-05-12 22:39:14,888 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:15,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190054400}) to executor  for transfer request: 0.
2022-05-12 22:39:15,249 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:15,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) about to wait for the following futures []
2022-05-12 22:39:15,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) done waiting for dependent futures
2022-05-12 22:39:15,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190054400}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 190054400}
2022-05-12 22:39:15,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:15,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207093760}) to executor  for transfer request: 0.
2022-05-12 22:39:15,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:15,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) about to wait for the following futures []
2022-05-12 22:39:15,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) done waiting for dependent futures
2022-05-12 22:39:15,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207093760}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 207093760}
2022-05-12 22:39:15,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:15,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237502464}) to executor  for transfer request: 0.
2022-05-12 22:39:15,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:15,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237502464}) about to wait for the following futures []
2022-05-12 22:39:15,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237502464}) done waiting for dependent futures
2022-05-12 22:39:15,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237502464}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 237502464}
2022-05-12 22:39:15,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:16,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199229440}) to executor  for transfer request: 0.
2022-05-12 22:39:16,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:16,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) about to wait for the following futures []
2022-05-12 22:39:16,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) done waiting for dependent futures
2022-05-12 22:39:16,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199229440}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 199229440}
2022-05-12 22:39:16,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:16,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181927936}) to executor  for transfer request: 0.
2022-05-12 22:39:16,553 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:16,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) about to wait for the following futures []
2022-05-12 22:39:16,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) done waiting for dependent futures
2022-05-12 22:39:16,554 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181927936}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 181927936}
2022-05-12 22:39:16,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:16,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:39:16,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:16,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:39:16,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:39:16,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 13631488}
2022-05-12 22:39:16,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,062 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223870976}) to executor  for transfer request: 0.
2022-05-12 22:39:17,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223870976}) about to wait for the following futures []
2022-05-12 22:39:17,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223870976}) done waiting for dependent futures
2022-05-12 22:39:17,063 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223870976}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 223870976}
2022-05-12 22:39:17,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,302 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237764608}) to executor  for transfer request: 0.
2022-05-12 22:39:17,302 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237764608}) about to wait for the following futures []
2022-05-12 22:39:17,303 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237764608}) done waiting for dependent futures
2022-05-12 22:39:17,303 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237764608}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 237764608}
2022-05-12 22:39:17,303 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,415 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190316544}) to executor  for transfer request: 0.
2022-05-12 22:39:17,416 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) about to wait for the following futures []
2022-05-12 22:39:17,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) done waiting for dependent futures
2022-05-12 22:39:17,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190316544}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 190316544}
2022-05-12 22:39:17,417 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,860 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229113856}) to executor  for transfer request: 0.
2022-05-12 22:39:17,860 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229113856}) about to wait for the following futures []
2022-05-12 22:39:17,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229113856}) done waiting for dependent futures
2022-05-12 22:39:17,860 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229113856}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 229113856}
2022-05-12 22:39:17,861 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:18,035 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:39:18,035 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:18,035 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:18,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:39:18,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:39:18,036 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 16515072}
2022-05-12 22:39:18,036 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:18,477 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224133120}) to executor  for transfer request: 0.
2022-05-12 22:39:18,477 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:18,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224133120}) about to wait for the following futures []
2022-05-12 22:39:18,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224133120}) done waiting for dependent futures
2022-05-12 22:39:18,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224133120}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 224133120}
2022-05-12 22:39:18,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:18,845 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182190080}) to executor  for transfer request: 0.
2022-05-12 22:39:18,845 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:18,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) about to wait for the following futures []
2022-05-12 22:39:18,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) done waiting for dependent futures
2022-05-12 22:39:18,846 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182190080}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 182190080}
2022-05-12 22:39:18,846 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:18,992 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207355904}) to executor  for transfer request: 0.
2022-05-12 22:39:18,992 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:18,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) about to wait for the following futures []
2022-05-12 22:39:18,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) done waiting for dependent futures
2022-05-12 22:39:18,993 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207355904}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 207355904}
2022-05-12 22:39:18,993 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,073 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214695936}) to executor  for transfer request: 0.
2022-05-12 22:39:19,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214695936}) about to wait for the following futures []
2022-05-12 22:39:19,074 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214695936}) done waiting for dependent futures
2022-05-12 22:39:19,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214695936}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 214695936}
2022-05-12 22:39:19,074 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238026752}) to executor  for transfer request: 0.
2022-05-12 22:39:19,315 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,315 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238026752}) about to wait for the following futures []
2022-05-12 22:39:19,315 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238026752}) done waiting for dependent futures
2022-05-12 22:39:19,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238026752}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 238026752}
2022-05-12 22:39:19,316 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,836 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199491584}) to executor  for transfer request: 0.
2022-05-12 22:39:19,836 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) about to wait for the following futures []
2022-05-12 22:39:19,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) done waiting for dependent futures
2022-05-12 22:39:19,837 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199491584}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 199491584}
2022-05-12 22:39:19,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224395264}) to executor  for transfer request: 0.
2022-05-12 22:39:19,920 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224395264}) about to wait for the following futures []
2022-05-12 22:39:19,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224395264}) done waiting for dependent futures
2022-05-12 22:39:19,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224395264}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 224395264}
2022-05-12 22:39:19,921 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:20,719 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182452224}) to executor  for transfer request: 0.
2022-05-12 22:39:20,719 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:20,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) about to wait for the following futures []
2022-05-12 22:39:20,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) done waiting for dependent futures
2022-05-12 22:39:20,720 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182452224}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 182452224}
2022-05-12 22:39:20,720 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:20,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190578688}) to executor  for transfer request: 0.
2022-05-12 22:39:20,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:20,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) about to wait for the following futures []
2022-05-12 22:39:20,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) done waiting for dependent futures
2022-05-12 22:39:20,721 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190578688}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 190578688}
2022-05-12 22:39:20,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:20,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207618048}) to executor  for transfer request: 0.
2022-05-12 22:39:20,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:20,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) about to wait for the following futures []
2022-05-12 22:39:20,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) done waiting for dependent futures
2022-05-12 22:39:20,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207618048}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 207618048}
2022-05-12 22:39:20,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:20,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224657408}) to executor  for transfer request: 0.
2022-05-12 22:39:20,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:20,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224657408}) about to wait for the following futures []
2022-05-12 22:39:20,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224657408}) done waiting for dependent futures
2022-05-12 22:39:20,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224657408}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 224657408}
2022-05-12 22:39:20,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:21,535 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224919552}) to executor  for transfer request: 0.
2022-05-12 22:39:21,535 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:21,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224919552}) about to wait for the following futures []
2022-05-12 22:39:21,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224919552}) done waiting for dependent futures
2022-05-12 22:39:21,536 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224919552}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 224919552}
2022-05-12 22:39:21,536 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:21,554 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199753728}) to executor  for transfer request: 0.
2022-05-12 22:39:21,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:21,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) about to wait for the following futures []
2022-05-12 22:39:21,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) done waiting for dependent futures
2022-05-12 22:39:21,555 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199753728}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 199753728}
2022-05-12 22:39:21,556 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:21,844 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207880192}) to executor  for transfer request: 0.
2022-05-12 22:39:21,845 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:21,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) about to wait for the following futures []
2022-05-12 22:39:21,845 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) done waiting for dependent futures
2022-05-12 22:39:21,845 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207880192}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 207880192}
2022-05-12 22:39:21,846 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,196 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225181696}) to executor  for transfer request: 0.
2022-05-12 22:39:22,196 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225181696}) about to wait for the following futures []
2022-05-12 22:39:22,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225181696}) done waiting for dependent futures
2022-05-12 22:39:22,197 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225181696}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 225181696}
2022-05-12 22:39:22,197 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:39:22,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:39:22,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:39:22,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 13893632}
2022-05-12 22:39:22,403 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,420 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214958080}) to executor  for transfer request: 0.
2022-05-12 22:39:22,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214958080}) about to wait for the following futures []
2022-05-12 22:39:22,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214958080}) done waiting for dependent futures
2022-05-12 22:39:22,421 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214958080}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 214958080}
2022-05-12 22:39:22,422 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,728 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238288896}) to executor  for transfer request: 0.
2022-05-12 22:39:22,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238288896}) about to wait for the following futures []
2022-05-12 22:39:22,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238288896}) done waiting for dependent futures
2022-05-12 22:39:22,729 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238288896}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 238288896}
2022-05-12 22:39:22,729 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,763 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208142336}) to executor  for transfer request: 0.
2022-05-12 22:39:22,763 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) about to wait for the following futures []
2022-05-12 22:39:22,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) done waiting for dependent futures
2022-05-12 22:39:22,764 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208142336}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 208142336}
2022-05-12 22:39:22,764 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:23,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225443840}) to executor  for transfer request: 0.
2022-05-12 22:39:23,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:23,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225443840}) about to wait for the following futures []
2022-05-12 22:39:23,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225443840}) done waiting for dependent futures
2022-05-12 22:39:23,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225443840}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 225443840}
2022-05-12 22:39:23,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:23,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229376000}) to executor  for transfer request: 0.
2022-05-12 22:39:23,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:23,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229376000}) about to wait for the following futures []
2022-05-12 22:39:23,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229376000}) done waiting for dependent futures
2022-05-12 22:39:23,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229376000}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 229376000}
2022-05-12 22:39:23,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:23,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182714368}) to executor  for transfer request: 0.
2022-05-12 22:39:23,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:23,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) about to wait for the following futures []
2022-05-12 22:39:23,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) done waiting for dependent futures
2022-05-12 22:39:23,597 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182714368}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 182714368}
2022-05-12 22:39:23,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:23,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225705984}) to executor  for transfer request: 0.
2022-05-12 22:39:23,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:23,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225705984}) about to wait for the following futures []
2022-05-12 22:39:23,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225705984}) done waiting for dependent futures
2022-05-12 22:39:23,910 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225705984}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 225705984}
2022-05-12 22:39:23,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:23,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190840832}) to executor  for transfer request: 0.
2022-05-12 22:39:23,929 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:23,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) about to wait for the following futures []
2022-05-12 22:39:23,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) done waiting for dependent futures
2022-05-12 22:39:23,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190840832}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 190840832}
2022-05-12 22:39:23,930 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:24,592 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200015872}) to executor  for transfer request: 0.
2022-05-12 22:39:24,592 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:24,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) about to wait for the following futures []
2022-05-12 22:39:24,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) done waiting for dependent futures
2022-05-12 22:39:24,593 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200015872}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 200015872}
2022-05-12 22:39:24,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:24,815 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238551040}) to executor  for transfer request: 0.
2022-05-12 22:39:24,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:24,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238551040}) about to wait for the following futures []
2022-05-12 22:39:24,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238551040}) done waiting for dependent futures
2022-05-12 22:39:24,816 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238551040}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 238551040}
2022-05-12 22:39:24,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:24,832 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208404480}) to executor  for transfer request: 0.
2022-05-12 22:39:24,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:24,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) about to wait for the following futures []
2022-05-12 22:39:24,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) done waiting for dependent futures
2022-05-12 22:39:24,833 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208404480}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 208404480}
2022-05-12 22:39:24,833 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:25,092 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225968128}) to executor  for transfer request: 0.
2022-05-12 22:39:25,092 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:25,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225968128}) about to wait for the following futures []
2022-05-12 22:39:25,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225968128}) done waiting for dependent futures
2022-05-12 22:39:25,093 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225968128}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 225968128}
2022-05-12 22:39:25,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:25,256 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182976512}) to executor  for transfer request: 0.
2022-05-12 22:39:25,256 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:25,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) about to wait for the following futures []
2022-05-12 22:39:25,257 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) done waiting for dependent futures
2022-05-12 22:39:25,257 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182976512}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 182976512}
2022-05-12 22:39:25,257 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,234 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:39:26,234 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:26,234 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:39:26,234 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:39:26,234 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 14155776}
2022-05-12 22:39:26,235 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229638144}) to executor  for transfer request: 0.
2022-05-12 22:39:26,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:26,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229638144}) about to wait for the following futures []
2022-05-12 22:39:26,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229638144}) done waiting for dependent futures
2022-05-12 22:39:26,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229638144}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 229638144}
2022-05-12 22:39:26,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226230272}) to executor  for transfer request: 0.
2022-05-12 22:39:26,317 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:26,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226230272}) about to wait for the following futures []
2022-05-12 22:39:26,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226230272}) done waiting for dependent futures
2022-05-12 22:39:26,317 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226230272}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 226230272}
2022-05-12 22:39:26,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200278016}) to executor  for transfer request: 0.
2022-05-12 22:39:26,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:26,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) about to wait for the following futures []
2022-05-12 22:39:26,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) done waiting for dependent futures
2022-05-12 22:39:26,360 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200278016}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 200278016}
2022-05-12 22:39:26,360 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215220224}) to executor  for transfer request: 0.
2022-05-12 22:39:26,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:26,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215220224}) about to wait for the following futures []
2022-05-12 22:39:26,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215220224}) done waiting for dependent futures
2022-05-12 22:39:26,424 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215220224}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 215220224}
2022-05-12 22:39:26,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,820 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208666624}) to executor  for transfer request: 0.
2022-05-12 22:39:26,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:26,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) about to wait for the following futures []
2022-05-12 22:39:26,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) done waiting for dependent futures
2022-05-12 22:39:26,821 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208666624}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 208666624}
2022-05-12 22:39:26,822 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183238656}) to executor  for transfer request: 0.
2022-05-12 22:39:26,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:26,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) about to wait for the following futures []
2022-05-12 22:39:26,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) done waiting for dependent futures
2022-05-12 22:39:26,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183238656}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 183238656}
2022-05-12 22:39:26,983 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:27,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238813184}) to executor  for transfer request: 0.
2022-05-12 22:39:27,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:27,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238813184}) about to wait for the following futures []
2022-05-12 22:39:27,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238813184}) done waiting for dependent futures
2022-05-12 22:39:27,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238813184}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 238813184}
2022-05-12 22:39:27,051 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:27,122 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191102976}) to executor  for transfer request: 0.
2022-05-12 22:39:27,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:27,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) about to wait for the following futures []
2022-05-12 22:39:27,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) done waiting for dependent futures
2022-05-12 22:39:27,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191102976}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 191102976}
2022-05-12 22:39:27,124 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:28,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208928768}) to executor  for transfer request: 0.
2022-05-12 22:39:28,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:28,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) about to wait for the following futures []
2022-05-12 22:39:28,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) done waiting for dependent futures
2022-05-12 22:39:28,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208928768}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 208928768}
2022-05-12 22:39:28,170 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,070 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191365120}) to executor  for transfer request: 0.
2022-05-12 22:39:29,070 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) about to wait for the following futures []
2022-05-12 22:39:29,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) done waiting for dependent futures
2022-05-12 22:39:29,071 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191365120}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 191365120}
2022-05-12 22:39:29,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,077 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239075328}) to executor  for transfer request: 0.
2022-05-12 22:39:29,077 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239075328}) about to wait for the following futures []
2022-05-12 22:39:29,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239075328}) done waiting for dependent futures
2022-05-12 22:39:29,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239075328}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 239075328}
2022-05-12 22:39:29,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,124 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209190912}) to executor  for transfer request: 0.
2022-05-12 22:39:29,124 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) about to wait for the following futures []
2022-05-12 22:39:29,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) done waiting for dependent futures
2022-05-12 22:39:29,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209190912}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 209190912}
2022-05-12 22:39:29,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,480 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229900288}) to executor  for transfer request: 0.
2022-05-12 22:39:29,481 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229900288}) about to wait for the following futures []
2022-05-12 22:39:29,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229900288}) done waiting for dependent futures
2022-05-12 22:39:29,481 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229900288}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 229900288}
2022-05-12 22:39:29,482 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,871 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:39:29,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:39:29,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:39:29,872 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 14417920}
2022-05-12 22:39:29,872 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:30,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209453056}) to executor  for transfer request: 0.
2022-05-12 22:39:30,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:30,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:30,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) about to wait for the following futures []
2022-05-12 22:39:30,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) done waiting for dependent futures
2022-05-12 22:39:30,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209453056}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 209453056}
2022-05-12 22:39:30,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:30,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200540160}) to executor  for transfer request: 0.
2022-05-12 22:39:30,132 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:30,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) about to wait for the following futures []
2022-05-12 22:39:30,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) done waiting for dependent futures
2022-05-12 22:39:30,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200540160}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 200540160}
2022-05-12 22:39:30,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:30,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183500800}) to executor  for transfer request: 0.
2022-05-12 22:39:30,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:30,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) about to wait for the following futures []
2022-05-12 22:39:30,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) done waiting for dependent futures
2022-05-12 22:39:30,743 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183500800}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 183500800}
2022-05-12 22:39:30,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:30,784 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215482368}) to executor  for transfer request: 0.
2022-05-12 22:39:30,785 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:30,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215482368}) about to wait for the following futures []
2022-05-12 22:39:30,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215482368}) done waiting for dependent futures
2022-05-12 22:39:30,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215482368}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 215482368}
2022-05-12 22:39:30,786 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:31,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230162432}) to executor  for transfer request: 0.
2022-05-12 22:39:31,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:31,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230162432}) about to wait for the following futures []
2022-05-12 22:39:31,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230162432}) done waiting for dependent futures
2022-05-12 22:39:31,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230162432}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 230162432}
2022-05-12 22:39:31,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,158 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200802304}) to executor  for transfer request: 0.
2022-05-12 22:39:32,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) about to wait for the following futures []
2022-05-12 22:39:32,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) done waiting for dependent futures
2022-05-12 22:39:32,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200802304}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 200802304}
2022-05-12 22:39:32,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,160 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191627264}) to executor  for transfer request: 0.
2022-05-12 22:39:32,160 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) about to wait for the following futures []
2022-05-12 22:39:32,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) done waiting for dependent futures
2022-05-12 22:39:32,161 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191627264}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 191627264}
2022-05-12 22:39:32,161 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,348 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:39:32,348 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:39:32,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:39:32,348 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 14680064}
2022-05-12 22:39:32,349 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215744512}) to executor  for transfer request: 0.
2022-05-12 22:39:32,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215744512}) about to wait for the following futures []
2022-05-12 22:39:32,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215744512}) done waiting for dependent futures
2022-05-12 22:39:32,507 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215744512}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 215744512}
2022-05-12 22:39:32,507 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183762944}) to executor  for transfer request: 0.
2022-05-12 22:39:32,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) about to wait for the following futures []
2022-05-12 22:39:32,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) done waiting for dependent futures
2022-05-12 22:39:32,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183762944}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 183762944}
2022-05-12 22:39:32,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:33,260 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239337472}) to executor  for transfer request: 0.
2022-05-12 22:39:33,260 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239337472}) about to wait for the following futures []
2022-05-12 22:39:33,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239337472}) done waiting for dependent futures
2022-05-12 22:39:33,261 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239337472}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 239337472}
2022-05-12 22:39:33,261 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:33,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230424576}) to executor  for transfer request: 0.
2022-05-12 22:39:33,497 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230424576}) about to wait for the following futures []
2022-05-12 22:39:33,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230424576}) done waiting for dependent futures
2022-05-12 22:39:33,498 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230424576}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 230424576}
2022-05-12 22:39:33,499 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:33,712 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:39:33,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:39:33,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:39:33,713 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 14942208}
2022-05-12 22:39:33,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216006656}) to executor  for transfer request: 0.
2022-05-12 22:39:34,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216006656}) about to wait for the following futures []
2022-05-12 22:39:34,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216006656}) done waiting for dependent futures
2022-05-12 22:39:34,005 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216006656}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 216006656}
2022-05-12 22:39:34,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,236 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201064448}) to executor  for transfer request: 0.
2022-05-12 22:39:34,236 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) about to wait for the following futures []
2022-05-12 22:39:34,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) done waiting for dependent futures
2022-05-12 22:39:34,237 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201064448}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 201064448}
2022-05-12 22:39:34,237 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184025088}) to executor  for transfer request: 0.
2022-05-12 22:39:34,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) about to wait for the following futures []
2022-05-12 22:39:34,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) done waiting for dependent futures
2022-05-12 22:39:34,544 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184025088}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 184025088}
2022-05-12 22:39:34,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,941 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191889408}) to executor  for transfer request: 0.
2022-05-12 22:39:34,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) about to wait for the following futures []
2022-05-12 22:39:34,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) done waiting for dependent futures
2022-05-12 22:39:34,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191889408}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 191889408}
2022-05-12 22:39:34,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:35,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:39:35,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:35,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:39:35,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:39:35,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 15204352}
2022-05-12 22:39:35,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,167 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216268800}) to executor  for transfer request: 0.
2022-05-12 22:39:36,167 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216268800}) about to wait for the following futures []
2022-05-12 22:39:36,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216268800}) done waiting for dependent futures
2022-05-12 22:39:36,168 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216268800}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 216268800}
2022-05-12 22:39:36,168 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,499 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239599616}) to executor  for transfer request: 0.
2022-05-12 22:39:36,499 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239599616}) about to wait for the following futures []
2022-05-12 22:39:36,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239599616}) done waiting for dependent futures
2022-05-12 22:39:36,500 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239599616}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 239599616}
2022-05-12 22:39:36,501 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,605 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184287232}) to executor  for transfer request: 0.
2022-05-12 22:39:36,606 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,606 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) about to wait for the following futures []
2022-05-12 22:39:36,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) done waiting for dependent futures
2022-05-12 22:39:36,606 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184287232}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 184287232}
2022-05-12 22:39:36,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230686720}) to executor  for transfer request: 0.
2022-05-12 22:39:36,643 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230686720}) about to wait for the following futures []
2022-05-12 22:39:36,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230686720}) done waiting for dependent futures
2022-05-12 22:39:36,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230686720}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 230686720}
2022-05-12 22:39:36,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:37,119 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192151552}) to executor  for transfer request: 0.
2022-05-12 22:39:37,119 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:37,119 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) about to wait for the following futures []
2022-05-12 22:39:37,120 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) done waiting for dependent futures
2022-05-12 22:39:37,120 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192151552}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 192151552}
2022-05-12 22:39:37,120 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:37,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216530944}) to executor  for transfer request: 0.
2022-05-12 22:39:37,437 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:37,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216530944}) about to wait for the following futures []
2022-05-12 22:39:37,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216530944}) done waiting for dependent futures
2022-05-12 22:39:37,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216530944}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 216530944}
2022-05-12 22:39:37,438 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:37,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239861760}) to executor  for transfer request: 0.
2022-05-12 22:39:37,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:37,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239861760}) about to wait for the following futures []
2022-05-12 22:39:37,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239861760}) done waiting for dependent futures
2022-05-12 22:39:37,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239861760}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 239861760}
2022-05-12 22:39:37,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:37,879 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:39:37,880 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:37,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:39:37,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:39:37,881 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 15466496}
2022-05-12 22:39:37,881 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:38,428 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240123904}) to executor  for transfer request: 0.
2022-05-12 22:39:38,428 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:38,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240123904}) about to wait for the following futures []
2022-05-12 22:39:38,429 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240123904}) done waiting for dependent futures
2022-05-12 22:39:38,429 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240123904}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 240123904}
2022-05-12 22:39:38,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:38,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192413696}) to executor  for transfer request: 0.
2022-05-12 22:39:38,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:38,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) about to wait for the following futures []
2022-05-12 22:39:38,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) done waiting for dependent futures
2022-05-12 22:39:38,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192413696}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 192413696}
2022-05-12 22:39:38,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:38,586 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216793088}) to executor  for transfer request: 0.
2022-05-12 22:39:38,586 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:38,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216793088}) about to wait for the following futures []
2022-05-12 22:39:38,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216793088}) done waiting for dependent futures
2022-05-12 22:39:38,587 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216793088}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 216793088}
2022-05-12 22:39:38,587 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:39,170 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230948864}) to executor  for transfer request: 0.
2022-05-12 22:39:39,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:39,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230948864}) about to wait for the following futures []
2022-05-12 22:39:39,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230948864}) done waiting for dependent futures
2022-05-12 22:39:39,171 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230948864}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 230948864}
2022-05-12 22:39:39,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:39,331 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217055232}) to executor  for transfer request: 0.
2022-05-12 22:39:39,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:39,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217055232}) about to wait for the following futures []
2022-05-12 22:39:39,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217055232}) done waiting for dependent futures
2022-05-12 22:39:39,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217055232}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 217055232}
2022-05-12 22:39:39,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217317376}) to executor  for transfer request: 0.
2022-05-12 22:39:40,024 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217317376}) about to wait for the following futures []
2022-05-12 22:39:40,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217317376}) done waiting for dependent futures
2022-05-12 22:39:40,025 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217317376}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 217317376}
2022-05-12 22:39:40,025 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,290 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192675840}) to executor  for transfer request: 0.
2022-05-12 22:39:40,290 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,291 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,291 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) about to wait for the following futures []
2022-05-12 22:39:40,291 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) done waiting for dependent futures
2022-05-12 22:39:40,291 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192675840}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 192675840}
2022-05-12 22:39:40,291 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,294 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231211008}) to executor  for transfer request: 0.
2022-05-12 22:39:40,294 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231211008}) about to wait for the following futures []
2022-05-12 22:39:40,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231211008}) done waiting for dependent futures
2022-05-12 22:39:40,295 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231211008}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 231211008}
2022-05-12 22:39:40,295 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240386048}) to executor  for transfer request: 0.
2022-05-12 22:39:40,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240386048}) about to wait for the following futures []
2022-05-12 22:39:40,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240386048}) done waiting for dependent futures
2022-05-12 22:39:40,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240386048}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 240386048}
2022-05-12 22:39:40,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,747 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217579520}) to executor  for transfer request: 0.
2022-05-12 22:39:40,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217579520}) about to wait for the following futures []
2022-05-12 22:39:40,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217579520}) done waiting for dependent futures
2022-05-12 22:39:40,748 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217579520}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 217579520}
2022-05-12 22:39:40,748 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:41,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231473152}) to executor  for transfer request: 0.
2022-05-12 22:39:41,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:41,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231473152}) about to wait for the following futures []
2022-05-12 22:39:41,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231473152}) done waiting for dependent futures
2022-05-12 22:39:41,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231473152}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 231473152}
2022-05-12 22:39:41,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:41,606 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217841664}) to executor  for transfer request: 0.
2022-05-12 22:39:41,606 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:41,606 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:41,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217841664}) about to wait for the following futures []
2022-05-12 22:39:41,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217841664}) done waiting for dependent futures
2022-05-12 22:39:41,607 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217841664}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 217841664}
2022-05-12 22:39:41,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:41,629 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240648192}) to executor  for transfer request: 0.
2022-05-12 22:39:41,629 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:41,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240648192}) about to wait for the following futures []
2022-05-12 22:39:41,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240648192}) done waiting for dependent futures
2022-05-12 22:39:41,630 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240648192}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 240648192}
2022-05-12 22:39:41,630 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240910336}) to executor  for transfer request: 0.
2022-05-12 22:39:42,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240910336}) about to wait for the following futures []
2022-05-12 22:39:42,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240910336}) done waiting for dependent futures
2022-05-12 22:39:42,463 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240910336}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 240910336}
2022-05-12 22:39:42,463 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:39:42,561 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:39:42,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:39:42,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 15728640}
2022-05-12 22:39:42,562 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,959 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231735296}) to executor  for transfer request: 0.
2022-05-12 22:39:42,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231735296}) about to wait for the following futures []
2022-05-12 22:39:42,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231735296}) done waiting for dependent futures
2022-05-12 22:39:42,960 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231735296}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 231735296}
2022-05-12 22:39:42,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:43,074 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241172480}) to executor  for transfer request: 0.
2022-05-12 22:39:43,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:43,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241172480}) about to wait for the following futures []
2022-05-12 22:39:43,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241172480}) done waiting for dependent futures
2022-05-12 22:39:43,075 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241172480}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 241172480}
2022-05-12 22:39:43,076 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:43,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241434624}) to executor  for transfer request: 0.
2022-05-12 22:39:43,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:43,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241434624}) about to wait for the following futures []
2022-05-12 22:39:43,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241434624}) done waiting for dependent futures
2022-05-12 22:39:43,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241434624}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 241434624}
2022-05-12 22:39:43,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:43,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231997440}) to executor  for transfer request: 0.
2022-05-12 22:39:43,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:43,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231997440}) about to wait for the following futures []
2022-05-12 22:39:43,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231997440}) done waiting for dependent futures
2022-05-12 22:39:43,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231997440}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 231997440}
2022-05-12 22:39:43,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:43,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:39:43,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:43,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:39:43,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:39:43,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 15990784}
2022-05-12 22:39:43,760 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241696768}) to executor  for transfer request: 0.
2022-05-12 22:39:44,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241696768}) about to wait for the following futures []
2022-05-12 22:39:44,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241696768}) done waiting for dependent futures
2022-05-12 22:39:44,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241696768}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 241696768}
2022-05-12 22:39:44,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,204 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241958912}) to executor  for transfer request: 0.
2022-05-12 22:39:44,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,204 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241958912}) about to wait for the following futures []
2022-05-12 22:39:44,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241958912}) done waiting for dependent futures
2022-05-12 22:39:44,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241958912}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 241958912}
2022-05-12 22:39:44,204 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,349 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232259584}) to executor  for transfer request: 0.
2022-05-12 22:39:44,349 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232259584}) about to wait for the following futures []
2022-05-12 22:39:44,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232259584}) done waiting for dependent futures
2022-05-12 22:39:44,349 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232259584}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 232259584}
2022-05-12 22:39:44,349 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,456 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:39:44,456 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:39:44,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:39:44,456 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 16252928}
2022-05-12 22:39:44,456 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:39:44,943 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,943 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:39:44,943 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:39:44,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:39:44,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,943 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 16515072}
2022-05-12 22:39:44,944 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,944 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:39:44,944 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:39:44,944 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:39:44,944 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,945 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232521728}) to executor  for transfer request: 0.
2022-05-12 22:39:44,945 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232521728}) about to wait for the following futures []
2022-05-12 22:39:44,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232521728}) done waiting for dependent futures
2022-05-12 22:39:44,946 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232521728}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 232521728}
2022-05-12 22:39:44,946 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:45,454 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232783872}) to executor  for transfer request: 0.
2022-05-12 22:39:45,454 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:45,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232783872}) about to wait for the following futures []
2022-05-12 22:39:45,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232783872}) done waiting for dependent futures
2022-05-12 22:39:45,455 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232783872}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 232783872}
2022-05-12 22:39:45,455 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:45,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233046016}) to executor  for transfer request: 0.
2022-05-12 22:39:45,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:45,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233046016}) about to wait for the following futures []
2022-05-12 22:39:45,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233046016}) done waiting for dependent futures
2022-05-12 22:39:45,910 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233046016}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 233046016}
2022-05-12 22:39:45,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:46,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233308160}) to executor  for transfer request: 0.
2022-05-12 22:39:46,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:46,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233308160}) about to wait for the following futures []
2022-05-12 22:39:46,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233308160}) done waiting for dependent futures
2022-05-12 22:39:46,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233308160}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 233308160}
2022-05-12 22:39:46,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:46,717 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233570304}) to executor  for transfer request: 0.
2022-05-12 22:39:46,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:46,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233570304}) about to wait for the following futures []
2022-05-12 22:39:46,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233570304}) done waiting for dependent futures
2022-05-12 22:39:46,718 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233570304}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 233570304}
2022-05-12 22:39:46,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:47,091 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233832448}) to executor  for transfer request: 0.
2022-05-12 22:39:47,091 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:47,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233832448}) about to wait for the following futures []
2022-05-12 22:39:47,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233832448}) done waiting for dependent futures
2022-05-12 22:39:47,092 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233832448}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 233832448}
2022-05-12 22:39:47,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:47,472 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234094592}) to executor  for transfer request: 0.
2022-05-12 22:39:47,472 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:47,472 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234094592}) about to wait for the following futures []
2022-05-12 22:39:47,472 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234094592}) done waiting for dependent futures
2022-05-12 22:39:47,473 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234094592}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 234094592}
2022-05-12 22:39:47,473 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:47,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234356736}) to executor  for transfer request: 0.
2022-05-12 22:39:47,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:47,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234356736}) about to wait for the following futures []
2022-05-12 22:39:47,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234356736}) done waiting for dependent futures
2022-05-12 22:39:47,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234356736}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 234356736}
2022-05-12 22:39:47,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,067 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234618880}) to executor  for transfer request: 0.
2022-05-12 22:39:48,067 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:48,067 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:39:48,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234618880}) about to wait for the following futures []
2022-05-12 22:39:48,067 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:48,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234618880}) done waiting for dependent futures
2022-05-12 22:39:48,067 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,067 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234618880}) with kwargs {'fileobj': <_io.BufferedRandom name=30>, 'offset': 234618880}
2022-05-12 22:39:48,068 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,068 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:39:48,068 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:39:48,068 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:39:48,068 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,432 eolearn.core.eoworkflow DEBUG    Computing DB2Vector(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {}
  meta_info: {}
  bbox: BBox(((239500.0, 1379500.0), (250500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:48,534 eolearn.core.eoworkflow DEBUG    Removing intermediate result for DB2Vector
2022-05-12 22:39:48,536 eolearn.core.eoworkflow DEBUG    Computing VectorToRaster(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((239500.0, 1379500.0), (250500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:48,541 eolearn.core.eoworkflow DEBUG    Removing intermediate result for VectorToRaster
2022-05-12 22:39:48,541 eolearn.core.eoworkflow DEBUG    Computing Extent2Boundary(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((239500.0, 1379500.0), (250500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:48,559 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Boundary
2022-05-12 22:39:48,560 eolearn.core.eoworkflow DEBUG    Computing Extent2Distance(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((239500.0, 1379500.0), (250500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:48,703 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Distance
2022-05-12 22:39:48,705 eolearn.core.eoworkflow DEBUG    Computing SaveTask(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {
    DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
  }
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((239500.0, 1379500.0), (250500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{'eopatch_folder': '30PTU_4_1'})
2022-05-12 22:39:48,709 botocore.loaders DEBUG    Loading JSON file: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/boto3/data/s3/2006-03-01/resources-1.json
2022-05-12 22:39:48,710 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:48,710 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:48,710 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:48,710 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:48,712 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:48,712 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:48,713 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:48,714 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:48,715 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:48,716 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1'}
2022-05-12 22:39:48,716 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:48,716 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:48,716 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:48,716 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:48,716 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:48,717 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:48,717 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:48,717 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:48,717 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:48,717 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:48,717 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:48,717 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:48,717 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:48,718 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:48,718 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:48,718 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:48,718 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:39:48,718 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1
2022-05-12 22:39:48,718 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:48,718 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223948Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:48,718 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223948Z
20220512/us-east-1/s3/aws4_request
3afa7492d006ff791d5cb2265ee8043cb0dd5807d1d3520489b020a4cf8424d6
2022-05-12 22:39:48,718 botocore.auth DEBUG    Signature:
2bcf02bff3d300433423c76b6d987a4938ace094f46eadeaffe060b80baaadf8
2022-05-12 22:39:48,718 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:48,718 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:48,719 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:48,719 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:04,043 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1 HTTP/1.1" 400 0
2022-05-12 22:40:04,043 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BWJKFDP3EVRF99XR', 'x-amz-id-2': 'KfJ5HAOrDRDhOXKLPXN6prAdlMuxV/FyrmsXZyKRCERptSdmsOQlAIahvTjfHk+OtsokCW3obcI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:03 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:04,044 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:04,045 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:04,045 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:04,045 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:04,045 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,045 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,045 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,045 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,045 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,045 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,045 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,045 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,045 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:04,046 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,046 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,046 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,046 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,046 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,046 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:04,046 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:04,046 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:04,046 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224004Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:04,046 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224004Z
20220512/us-east-1/s3/aws4_request
01df9403cfeb2d8a32a03c94a9c8bf2da46d75b8fc5f0ecf83f283365294830a
2022-05-12 22:40:04,046 botocore.auth DEBUG    Signature:
4a50d6bf36e9f18c37e761c05e131e35eeddf2a3b6490fae82ab00c0863996c4
2022-05-12 22:40:04,046 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,046 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:04,047 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:04,047 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:05,642 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:05,643 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': '533B4AQ4DSP0P9RN', 'x-amz-id-2': 'XyCBuE6JNgL069mmMhqpNRF75cOlsfbcIMvYRc80UVsUt/kDt0Kt3yc2YFcsZwdQyvHDrkrQ6+g=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:05 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:05,643 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:05,643 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,644 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:05,644 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,644 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:05,644 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:05,644 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:05,645 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,645 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,645 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,645 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:05,646 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:05,646 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:05,646 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224005Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:05,646 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224005Z
20220512/eu-central-1/s3/aws4_request
66b649f622a46547260a1ed3046915a6a2d8027c99318f33adff82147f909aef
2022-05-12 22:40:05,646 botocore.auth DEBUG    Signature:
0ac8e63213eb9aa617c4da890d84f80381ff40c770e46141df8d17ffcf112050
2022-05-12 22:40:05,647 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,647 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:05,647 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:05,647 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:06,662 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:06,663 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HsdAJ7NziqGf7zWekac4dsrXIMZVX6WIRJf2Voy8fxbJHN0wtoQkilT6Ybv2mUbI0hongJ+dsUc=', 'x-amz-request-id': 'PH0K1V5X21M80N3Z', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:06,663 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,663 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:06,663 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,663 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:06,663 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:06,664 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:06,664 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:06,664 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:06,664 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:06,664 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,664 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,665 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:06,665 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:06,665 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:06,665 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1
2022-05-12 22:40:06,665 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,665 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,665 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/eu-central-1/s3/aws4_request
f6286471707e72a2cb2068f4b4483eef85d41de1086c436e040e3d591fd7c9df
2022-05-12 22:40:06,666 botocore.auth DEBUG    Signature:
37a457ecadb2e3fe2fcb0bfd8ba61e1f7e437edb1e08d18c714ad7df20284bca
2022-05-12 22:40:06,666 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:06,666 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,666 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,752 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1 HTTP/1.1" 404 0
2022-05-12 22:40:06,752 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'PH0YYGKZW0VJS38M', 'x-amz-id-2': 'ETkBa8htp5obwK/kLd2uC6aklCLGZ9NNdEpA9RLRzY+wQWHkptxA7eD5ME6O1/m/3CUQmX8/518=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:05 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:06,752 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,752 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:06,753 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,753 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:06,753 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:06,754 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:06,755 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:06,756 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:06,756 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,756 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,756 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:06,756 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:06,756 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,756 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,757 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:06,757 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:06,757 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,757 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,757 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:06,757 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:06,757 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,757 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,757 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:06,758 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:06,758 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:06,758 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:06,758 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,758 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,758 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/eu-central-1/s3/aws4_request
2ec86dc1c9dcc99833771fc81bdf7c37fdb50c8b59332fc1a516beeaf9161cb8
2022-05-12 22:40:06,759 botocore.auth DEBUG    Signature:
6b65e62469ca28ebfbc01633614c4bfb56f76ed4b725e7b370e0ce8f7df0c8b9
2022-05-12 22:40:06,759 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:06,759 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,759 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,848 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:06,848 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'drRjV8L6qXhtdE/ZSducPSB7idtFr6f3Gxe1O/XuLOkbvFkNY0TYuY92qUOwKkkUEF++WXX9adc=', 'x-amz-request-id': 'PH0GN0R88MXFD99M', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:06,848 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,849 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:06,849 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,849 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:06,849 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'PH0GN0R88MXFD99M', 'HostId': 'drRjV8L6qXhtdE/ZSducPSB7idtFr6f3Gxe1O/XuLOkbvFkNY0TYuY92qUOwKkkUEF++WXX9adc=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'drRjV8L6qXhtdE/ZSducPSB7idtFr6f3Gxe1O/XuLOkbvFkNY0TYuY92qUOwKkkUEF++WXX9adc=', 'x-amz-request-id': 'PH0GN0R88MXFD99M', 'date': 'Thu, 12 May 2022 22:40:07 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:06,850 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:06,854 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:06,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:06,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:06,858 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:06,859 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:06,861 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,861 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,861 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:06,861 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:06,861 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,862 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,862 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:06,862 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,862 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,862 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_1/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:06,862 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:06,862 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,862 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,863 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:06,863 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:06,863 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:06,863 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,863 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,863 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,863 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_1%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,863 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/us-east-1/s3/aws4_request
769895b6bb664cb0ad8adbc2a7e60d5d0600e05f121b2b6dabfe67b6fb633b8e
2022-05-12 22:40:06,863 botocore.auth DEBUG    Signature:
d825061a9c6a5f54a73df45d1067544de786c032d389323d9b13c4bc340684d9
2022-05-12 22:40:06,863 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:06,864 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,864 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,864 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:07,614 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:40:07,615 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'V3SJMCB45JB79MPN', 'x-amz-id-2': 'qCNyYQmGPzsif7mxRoRqiqsMPJ4bubmBs75zQDBuiWiVZkA/HEHDS9WVbafZ5VZ+gohbBEdp62M=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:07,615 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1V3SJMCB45JB79MPNqCNyYQmGPzsif7mxRoRqiqsMPJ4bubmBs75zQDBuiWiVZkA/HEHDS9WVbafZ5VZ+gohbBEdp62M='
2022-05-12 22:40:07,619 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:07,620 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:07,620 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:07,620 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:07,620 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,620 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:07,620 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:07,620 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,620 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,620 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:07,621 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:07,621 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,621 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,621 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:07,621 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_1%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224007Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:07,621 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224007Z
20220512/eu-central-1/s3/aws4_request
0ca8c53ee41a2310579216d7d23e00efacc3cf95143007155842af7b5ef31863
2022-05-12 22:40:07,621 botocore.auth DEBUG    Signature:
bda0517ee93f49fc23c692f8ea425c8ce0f4ba6f7d98da2205a82b2fc5aac288
2022-05-12 22:40:07,622 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:07,622 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:07,622 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:07,623 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:08,589 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,589 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'xUE2GhVYD8TAKI4OQ9sifWTw6ur2jjyCkDluoFUcDSm0C2R2oBWxYcWwwmrsWZ7pD49svtDmop0=', 'x-amz-request-id': '34DTJ79Y2W3ZG9ZC', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,590 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_1/1000/urlfalseeopatches/30PTU_4_1/2022-05-12T11:04:08.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/bbox.pkl2022-05-12T11:04:28.000Z"09910e3b3960fda433df8b6a88f6c3ec"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/timestamp.pkl2022-05-12T11:04:27.000Z"d20f57f9b0299badcdaec2f120421aa8"2089e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/data/eopatches/30PTU_4_1/mask/'
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,591 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,591 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:08,592 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,592 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_1/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:08,592 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,592 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,592 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,592 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_1%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,592 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
07fd54bf677675ccc1b7f43a70d594bc56f71a6649158a77d896feb5bd9b1874
2022-05-12 22:40:08,592 botocore.auth DEBUG    Signature:
9959ecb0df15025ead04cd5e0068d064dfa133cf04202160320c44905d704d0d
2022-05-12 22:40:08,592 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:08,592 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,592 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,682 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_1%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,683 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '4M8NU6tE+k276F0xypuH+lUB8Y2eijwBC1gw8ugMrFbsymv2609lv9UZnVnOP4jsE3JERGbCl9w=', 'x-amz-request-id': '34DX403RDJGCVYRG', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,684 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_1/data/1000/urlfalseeopatches/30PTU_4_1/data/2022-05-12T11:04:14.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/data/BANDS.npy2022-05-12T11:04:29.000Z"d1e0eecf7a3c8a1323d909fce184cee5-29"242000128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/data/CLP.npy2022-05-12T11:04:27.000Z"665cd73a89ce4f97e412b101790e74a0-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:08,686 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,686 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,686 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,686 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,688 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,688 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,688 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:08,688 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,689 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,689 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,689 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_4_1/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,689 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:08,689 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:08,690 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,690 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,691 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,691 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_4_1%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,691 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
e0a32877d033e9931084e1972588de87ed364cf6306240a7448f67475a9a22f1
2022-05-12 22:40:08,691 botocore.auth DEBUG    Signature:
0aec347e940d6d126405f8e5951bd195f34c524b30b870ff0594a93d61e11501
2022-05-12 22:40:08,691 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:08,692 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,692 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,779 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_4_1%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,780 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Qx2CZ7IAtpaUwzdqHsxwnoZOQohblbE7fsPFRbw7ERzh/coV4uuslQT2ZM6DMYCwJS7tLtdqqlg=', 'x-amz-request-id': '34DXH47VJH620Y1T', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,780 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_4_1/mask/1000/urlfalseeopatches/30PTU_4_1/mask/2022-05-12T11:04:19.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/mask/CLM.npy2022-05-12T11:04:28.000Z"cb187bde723884c68a8b21c0a0703b4f-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_4_1/mask/IS_DATA.npy2022-05-12T11:04:28.000Z"bfae081011ff5f449d5d875d74e3b33e-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:08,782 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,782 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,782 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,783 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,783 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,786 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,787 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless'}
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,788 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,788 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,789 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:08,789 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:08,790 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,790 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,790 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
5aea059f123f704bba9f3326486aaaeec29f2bfc37b0273ea7ae5a54a756aca3
2022-05-12 22:40:08,790 botocore.auth DEBUG    Signature:
60bdd1bbb668336ee780f58109d93aa687f933b6d083321f40a459410c2a335f
2022-05-12 22:40:08,790 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,790 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,791 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,877 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:08,877 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DTRWBAK8QXP7KC', 'x-amz-id-2': 'eRIgsV11mxSSFJmYSZJ95hWA6QJyPK9rlYyjp5ZRzs80Z1o+6jlVNNbN8st2aZ2Ald6APaIIAeo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,877 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,878 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,878 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,881 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,881 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless/'}
2022-05-12 22:40:08,881 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,881 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,882 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:08,882 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,883 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,883 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,883 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,883 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,883 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,883 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,883 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:08,883 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:08,884 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,884 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,884 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
8ddde552ae16eae873d3401d694209b0886d0457d0130505fa2e2080b264543a
2022-05-12 22:40:08,884 botocore.auth DEBUG    Signature:
e7e8b08c8a161f3689a78a2aca2a2e56eceb9d38ceb654dace46a36d142bb9f0
2022-05-12 22:40:08,884 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,884 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,885 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,969 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:08,970 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DGNJF9GPSR4NYH', 'x-amz-id-2': 'rhgG14w5fCV1Rh8EdPMbVHM7YAFnJ1bBwx1P8U558sxhPiba19fey3qvYC03eEzKS/8gcH19D5U=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,970 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,970 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,971 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,971 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,971 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,974 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,974 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,976 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,976 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,976 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:08,976 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:08,977 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,977 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,977 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
cbc2ccfde60d6a604acd6cd285ece7a8bdeeb941295d6a6d01b79e6c460a923a
2022-05-12 22:40:08,977 botocore.auth DEBUG    Signature:
cf7889344d7f03a676c67bb70330d1264499df744a734bfe4af6356490b1081a
2022-05-12 22:40:08,977 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,977 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,977 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,060 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,060 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'MhY5GMBQR5j2rFV0TUbbYSgw6SFQ0IMRxZ4kW9yZm7mYTj1LO2LbQ52D5I8wLum8373dS/2kkeI=', 'x-amz-request-id': '58A0EEJDVGW5SJX0', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,060 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,061 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,061 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,062 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,062 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A0EEJDVGW5SJX0', 'HostId': 'MhY5GMBQR5j2rFV0TUbbYSgw6SFQ0IMRxZ4kW9yZm7mYTj1LO2LbQ52D5I8wLum8373dS/2kkeI=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'MhY5GMBQR5j2rFV0TUbbYSgw6SFQ0IMRxZ4kW9yZm7mYTj1LO2LbQ52D5I8wLum8373dS/2kkeI=', 'x-amz-request-id': '58A0EEJDVGW5SJX0', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,062 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,063 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless'}
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,065 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,065 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,065 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:09,065 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:09,065 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,065 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,065 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
97469c04a8c0d187682acccc78324f34ab0c8c1f1265a8b688f53d9b7765b47e
2022-05-12 22:40:09,065 botocore.auth DEBUG    Signature:
20b53f544082368cb39c14e5f560950e6c07a472fd9557d115502534c2c43e0e
2022-05-12 22:40:09,065 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,065 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,065 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,151 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,151 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A4TP11C7QZK0J6', 'x-amz-id-2': '/Ntl430+DZYme/1ON7jcgAgmKbM5rtZtxb0qn8QIO1e7ah0q5YqX+yeEYOkp6tIhGYExWhXv7C4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,151 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,151 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,151 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,152 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless/'}
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,152 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,153 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,153 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,153 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,153 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,153 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,153 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,153 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,153 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:09,153 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:09,153 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,153 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,153 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
19eb08e867f21136dc8c23ab544df56a4a34edda15495250c5a76576de14cd17
2022-05-12 22:40:09,153 botocore.auth DEBUG    Signature:
34f355261c9b7b69f998efbf0937f376f4bba74c99ed6f0cef0383182af595b5
2022-05-12 22:40:09,153 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,153 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,153 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,237 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,237 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AEYRSCJ2T4H29T', 'x-amz-id-2': 'HI/HIQ0ixdCjbdYjbGVniS89pbL/l+S2QdvUBULh2BfoTZojRopu4DJDFF/dkBYJ/GEjhwo49Ss=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,237 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,238 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1'}
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:09,238 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1
2022-05-12 22:40:09,238 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,238 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,239 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
ac5e6e8aafc810fd92985ad7177e572516297e7d5328168675f7c52e3f31f221
2022-05-12 22:40:09,239 botocore.auth DEBUG    Signature:
007ccbf7b8a36b1d2f8aaf8d387748ca4bbd538196b0af644e5abb70cf02859d
2022-05-12 22:40:09,239 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,239 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,239 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,327 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1 HTTP/1.1" 404 0
2022-05-12 22:40:09,327 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58ADD7JSDFT8V261', 'x-amz-id-2': 'ByRsnAVzkKu4Ic2zPUi/ap1j9i2VGUgeIMPZG/VPPjm1hlCL6yTpCIcYrrddNDrNWaaPz350Cug=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,327 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,328 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,328 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,328 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,328 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,329 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,330 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:09,330 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,330 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,330 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,330 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,330 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,330 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,330 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,330 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:09,330 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,331 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,331 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,331 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,331 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,331 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,331 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,331 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,331 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:09,331 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:09,332 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,332 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,332 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
5877aa7868c6d4c6416d82e5cc0824f6213e5183dc0fe51cc04f7998e2cbf492
2022-05-12 22:40:09,332 botocore.auth DEBUG    Signature:
0e2726f4f4b2486c07cf659b0abd171cbffbfcf800fb0d42d5fb3e2767788e8f
2022-05-12 22:40:09,332 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,332 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,333 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,415 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,416 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '4XOOnHEc7e8nDz40bFEvh+X9X79KoieAGdSmE7PogUVkzsoFDkc3OY7OnZOopBnl6akX/PClgVY=', 'x-amz-request-id': '58A0X43SPAACQPMP', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,416 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,417 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,418 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,418 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A0X43SPAACQPMP', 'HostId': '4XOOnHEc7e8nDz40bFEvh+X9X79KoieAGdSmE7PogUVkzsoFDkc3OY7OnZOopBnl6akX/PClgVY=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '4XOOnHEc7e8nDz40bFEvh+X9X79KoieAGdSmE7PogUVkzsoFDkc3OY7OnZOopBnl6akX/PClgVY=', 'x-amz-request-id': '58A0X43SPAACQPMP', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,418 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,420 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,420 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1'}
2022-05-12 22:40:09,420 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,420 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,420 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,420 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,421 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,421 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,421 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,421 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:09,421 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,421 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,421 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,421 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,422 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,422 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,422 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,422 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,422 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:09,422 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1
2022-05-12 22:40:09,422 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,423 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,423 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
ac5e6e8aafc810fd92985ad7177e572516297e7d5328168675f7c52e3f31f221
2022-05-12 22:40:09,423 botocore.auth DEBUG    Signature:
007ccbf7b8a36b1d2f8aaf8d387748ca4bbd538196b0af644e5abb70cf02859d
2022-05-12 22:40:09,423 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,423 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,424 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,505 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1 HTTP/1.1" 404 0
2022-05-12 22:40:09,506 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A28TZJN6GKBB94', 'x-amz-id-2': '/UDkSzo3bbKWz9IgJ1DYWQWq1VGIsd/3pm+uSEaDLf7qJyegwqD+K6ulfncGl1PreQcuj/BflMQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,506 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,506 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,506 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,507 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,509 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,510 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,510 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,510 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:09,510 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,510 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,510 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,510 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,510 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,510 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,510 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,510 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,511 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:09,511 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:09,511 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,511 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,511 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
5877aa7868c6d4c6416d82e5cc0824f6213e5183dc0fe51cc04f7998e2cbf492
2022-05-12 22:40:09,511 botocore.auth DEBUG    Signature:
0e2726f4f4b2486c07cf659b0abd171cbffbfcf800fb0d42d5fb3e2767788e8f
2022-05-12 22:40:09,511 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,511 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,512 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,595 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,596 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'v1CMaz13Wg+GXY/BJsyNv7KeCLCg3mCqMPSzakqXQKUjBJAAMNLMDTiRrDzXb3wPcgYk9nOfztw=', 'x-amz-request-id': '58A9WNKZTS40WTSS', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,596 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,597 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,598 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A9WNKZTS40WTSS', 'HostId': 'v1CMaz13Wg+GXY/BJsyNv7KeCLCg3mCqMPSzakqXQKUjBJAAMNLMDTiRrDzXb3wPcgYk9nOfztw=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'v1CMaz13Wg+GXY/BJsyNv7KeCLCg3mCqMPSzakqXQKUjBJAAMNLMDTiRrDzXb3wPcgYk9nOfztw=', 'x-amz-request-id': '58A9WNKZTS40WTSS', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,598 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,601 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,601 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless'}
2022-05-12 22:40:09,602 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,602 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,602 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,602 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,602 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,602 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,603 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,603 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:09,603 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,603 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,603 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,603 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,603 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,603 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,603 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,604 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,604 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:09,604 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:09,604 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,604 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,604 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
97469c04a8c0d187682acccc78324f34ab0c8c1f1265a8b688f53d9b7765b47e
2022-05-12 22:40:09,605 botocore.auth DEBUG    Signature:
20b53f544082368cb39c14e5f560950e6c07a472fd9557d115502534c2c43e0e
2022-05-12 22:40:09,605 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,605 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,605 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,687 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,687 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A62DW3CM84PAS2', 'x-amz-id-2': 'ek569pRadWpUvlcwfRRQR3X4CHm+jfAiUH+DYsQF+f5Mlfcm/VjpxsEUQzhNWj18IfPzCsTDVqI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,687 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,688 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,688 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,690 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,690 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless/'}
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,691 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,692 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,692 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,692 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,692 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,692 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,692 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,692 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,692 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:09,692 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:09,692 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,692 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,693 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
19eb08e867f21136dc8c23ab544df56a4a34edda15495250c5a76576de14cd17
2022-05-12 22:40:09,693 botocore.auth DEBUG    Signature:
34f355261c9b7b69f998efbf0937f376f4bba74c99ed6f0cef0383182af595b5
2022-05-12 22:40:09,693 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,693 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,693 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,778 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,778 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AB7R57VY36BKPQ', 'x-amz-id-2': 'k3RzaBxcUwighktZIFCPG34YL+x6h2otSNapMipgHs4tfwbrMBZQ3Cs0uzZ3j5njalPeAsQH8rI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,778 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,778 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,778 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,779 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,780 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:09,781 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,781 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:09,781 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:09,781 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:09,781 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:09,782 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,782 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_1/mask_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224009Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:09,782 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
59bcf6263b0dd371453e9307009818ea491e081b74b36014d8cc68444a83fd50
2022-05-12 22:40:09,782 botocore.auth DEBUG    Signature:
47fa9f15beedc380e76248d9750308160329728dfc8b352a3cdc92ec51f3a700
2022-05-12 22:40:09,782 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:09,782 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,782 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,870 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:09,871 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ZQP6I7CTGMHfP2T3AKncYRhadca+4Eldr5AgQfPbyEzQpV/JJtze5r1XXpG2BszvYegi2wkGBjg=', 'x-amz-request-id': '58A63Q4ECM1DP9YY', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,871 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:09,871 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,871 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:09,871 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A63Q4ECM1DP9YY', 'HostId': 'ZQP6I7CTGMHfP2T3AKncYRhadca+4Eldr5AgQfPbyEzQpV/JJtze5r1XXpG2BszvYegi2wkGBjg=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'ZQP6I7CTGMHfP2T3AKncYRhadca+4Eldr5AgQfPbyEzQpV/JJtze5r1XXpG2BszvYegi2wkGBjg=', 'x-amz-request-id': '58A63Q4ECM1DP9YY', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:09,871 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,873 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,873 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:09,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,873 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,874 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,874 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,874 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:09,874 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,874 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,874 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,874 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,874 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,874 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,874 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,874 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,874 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:09,874 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:09,874 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,874 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,874 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
5877aa7868c6d4c6416d82e5cc0824f6213e5183dc0fe51cc04f7998e2cbf492
2022-05-12 22:40:09,874 botocore.auth DEBUG    Signature:
0e2726f4f4b2486c07cf659b0abd171cbffbfcf800fb0d42d5fb3e2767788e8f
2022-05-12 22:40:09,874 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,874 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,874 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,954 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,955 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Jv6xGOH51vEnIiLLlrFQva5nqR8WRX3EJVDQ/xq00Y+mR6cgoeS0I6aWV2YwD4nHiihV+XYWlH4=', 'x-amz-request-id': '58AF8NEKJ7XGCJGR', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,955 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,956 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,956 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,956 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,956 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58AF8NEKJ7XGCJGR', 'HostId': 'Jv6xGOH51vEnIiLLlrFQva5nqR8WRX3EJVDQ/xq00Y+mR6cgoeS0I6aWV2YwD4nHiihV+XYWlH4=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Jv6xGOH51vEnIiLLlrFQva5nqR8WRX3EJVDQ/xq00Y+mR6cgoeS0I6aWV2YwD4nHiihV+XYWlH4=', 'x-amz-request-id': '58AF8NEKJ7XGCJGR', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,957 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,958 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,958 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless'}
2022-05-12 22:40:09,958 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,958 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,958 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,958 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,958 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,959 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,959 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,959 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:09,959 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,959 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,959 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,959 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,959 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,959 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,959 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,959 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,959 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:09,959 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:09,959 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,960 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,960 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
97469c04a8c0d187682acccc78324f34ab0c8c1f1265a8b688f53d9b7765b47e
2022-05-12 22:40:09,960 botocore.auth DEBUG    Signature:
20b53f544082368cb39c14e5f560950e6c07a472fd9557d115502534c2c43e0e
2022-05-12 22:40:09,960 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,960 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,960 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,044 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,044 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A0RZK2KKQHDWMJ', 'x-amz-id-2': 'igiUW4UkdfL8DK0cnJbbZWQYT+i/AM6Jcld2PRtYUMGb6yWxVz2CNAJV3Ussg09qPcs9d8M0mpk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,044 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,045 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,045 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,045 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,045 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,047 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,047 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless/'}
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,048 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,048 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,049 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,049 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,049 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:10,049 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:10,050 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,050 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,050 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
3eb86ac2273ea14e85a7a81420a8ed56fb97451773d74fc49b87695aa5cee517
2022-05-12 22:40:10,050 botocore.auth DEBUG    Signature:
170e3e1ba449ca2cc4f1fcaedb9ff4b482e740652ffc74d0e7d7f579e3008793
2022-05-12 22:40:10,050 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,050 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,050 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,136 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:10,136 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'vdYSKRlPZmCj0e1WProQxL7Jqcmh1b3aQKr1OZlBFZsDYi12HV5ZFZEjI2SK7o6Te5pEGs7TGYc=', 'x-amz-request-id': 'ZX111SAETVPYD36K', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,137 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,137 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,137 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,137 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,138 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX111SAETVPYD36K', 'HostId': 'vdYSKRlPZmCj0e1WProQxL7Jqcmh1b3aQKr1OZlBFZsDYi12HV5ZFZEjI2SK7o6Te5pEGs7TGYc=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'vdYSKRlPZmCj0e1WProQxL7Jqcmh1b3aQKr1OZlBFZsDYi12HV5ZFZEjI2SK7o6Te5pEGs7TGYc=', 'x-amz-request-id': 'ZX111SAETVPYD36K', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,138 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,139 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,140 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless'}
2022-05-12 22:40:10,140 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,140 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,140 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,140 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,140 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,140 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,140 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,140 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:10,140 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,140 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,140 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,141 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:10,141 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:10,141 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,141 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,141 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
2d119f851b444398165d50e91688af5a4ece5b168eb2a3fd5a80489612497054
2022-05-12 22:40:10,141 botocore.auth DEBUG    Signature:
2f09958cdc3bb168ac689e3e5637519dbbba89fbd8fe85ca9e9136e69c4ee19f
2022-05-12 22:40:10,141 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,142 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,142 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,226 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,227 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1F47VXMMHYCQ7K', 'x-amz-id-2': 'vQaNbaCG6llu3+goleVEcmG8wWAWJ3PqRQjUTOlr7Ub2hcwhmCXpbwk2ruCsfjwGxJf1BkjUDNE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,227 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,227 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,227 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,229 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless/'}
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,230 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,230 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,230 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,230 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:10,230 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,230 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,230 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,230 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,231 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,231 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,231 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,231 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,231 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:10,231 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:10,231 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,231 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,231 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
90ae9b27f0dcbe04f7d90cb957551218b749a936f9d23896134bf0acda7e2d43
2022-05-12 22:40:10,232 botocore.auth DEBUG    Signature:
6d490a3c9263f15cf3d469086d23c22532af6b5bf87a2bc0d46a919754940043
2022-05-12 22:40:10,232 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,232 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,232 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,320 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,320 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX11VYDVSNNTWCMK', 'x-amz-id-2': 'GU/gPtXpX5304b2yMFlKMDL2d78pvnmqN6PYS01N77RjfFElTWRcvDOFwtLDDdwaqeiR+XbLdKY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,320 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,320 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,321 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,321 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,321 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,322 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,322 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,322 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,323 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,323 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:10,323 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:10,323 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,323 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,323 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
4cecae8eaf80c6dac557557e98eab7fb0b02146e3c7ed339098f2b6449c0c886
2022-05-12 22:40:10,323 botocore.auth DEBUG    Signature:
fab0ea2e5eea3e34c0926e77e75e2c6e84f8f23d8f34763c020f073ba60653e7
2022-05-12 22:40:10,323 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,323 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,323 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,407 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:10,407 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '9FcVprdY8SCIngCFxZq3BCtne1byKQJtWyn42azvRNlB+Fq+RcM9J4yWbqpb/XKQoTs286EaZkU=', 'x-amz-request-id': 'ZX10PPMYGK5HEDP9', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,407 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,407 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,407 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,407 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,407 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX10PPMYGK5HEDP9', 'HostId': '9FcVprdY8SCIngCFxZq3BCtne1byKQJtWyn42azvRNlB+Fq+RcM9J4yWbqpb/XKQoTs286EaZkU=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '9FcVprdY8SCIngCFxZq3BCtne1byKQJtWyn42azvRNlB+Fq+RcM9J4yWbqpb/XKQoTs286EaZkU=', 'x-amz-request-id': 'ZX10PPMYGK5HEDP9', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,407 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,408 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless'}
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,408 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,408 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,408 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,409 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:10,409 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:10,409 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,409 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,409 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
2d119f851b444398165d50e91688af5a4ece5b168eb2a3fd5a80489612497054
2022-05-12 22:40:10,409 botocore.auth DEBUG    Signature:
2f09958cdc3bb168ac689e3e5637519dbbba89fbd8fe85ca9e9136e69c4ee19f
2022-05-12 22:40:10,409 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,409 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,409 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,490 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,491 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX13AD6272NH7C70', 'x-amz-id-2': 'PHhwaJty5AE7PJ8ceXL5nXmibLg8r+5ER/bKhe3mv7ieSWo7B08xYj1I4FsIxUCzeCPee9UPpjo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,491 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,491 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,491 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,491 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,492 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,492 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,493 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless/'}
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:10,493 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:10,493 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,493 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,494 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
90ae9b27f0dcbe04f7d90cb957551218b749a936f9d23896134bf0acda7e2d43
2022-05-12 22:40:10,494 botocore.auth DEBUG    Signature:
6d490a3c9263f15cf3d469086d23c22532af6b5bf87a2bc0d46a919754940043
2022-05-12 22:40:10,494 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,494 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,494 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,578 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,578 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX13YSPG878737PD', 'x-amz-id-2': 'Z51BOBkUz2oYG6U7262fO734LCoEpiLCl1bJpDInakl18gXesayccKAMUzexu0SooC6Z8Ul7I3M=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,578 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,578 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,579 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,579 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,579 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,581 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,581 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1'}
2022-05-12 22:40:10,581 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,581 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,581 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,581 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,582 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,582 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,582 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,582 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:10,582 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,582 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,582 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,583 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:10,583 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1
2022-05-12 22:40:10,584 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,584 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,584 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
4f36f7d099a3458c5f3c10242b3e70c05b3831f65ccdcf77b00d12145eea43cd
2022-05-12 22:40:10,584 botocore.auth DEBUG    Signature:
35bcf97d1f60be905a8599f7ce83a615ae8df2a438e18dd17f4188041e5e5d49
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,584 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,585 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,668 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1 HTTP/1.1" 404 0
2022-05-12 22:40:10,668 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX10FKQXCPF8H5JV', 'x-amz-id-2': 'hiMMpXyTbTkXJfYJtH+hxnGFOV9aCpyVbgB0xFBocFnIF377V1csnGQsm8AIWKwl5aYvNXnm3Qk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,668 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,668 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,669 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,669 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,669 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,671 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,671 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:10,671 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,671 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,672 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,672 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,672 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,673 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,673 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,674 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:10,674 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:10,674 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,674 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,674 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
4cecae8eaf80c6dac557557e98eab7fb0b02146e3c7ed339098f2b6449c0c886
2022-05-12 22:40:10,675 botocore.auth DEBUG    Signature:
fab0ea2e5eea3e34c0926e77e75e2c6e84f8f23d8f34763c020f073ba60653e7
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,675 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,675 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,755 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:10,756 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'IeOJWwMRt2/7fOmD2lV47E1RNF9FXSNCV5QfqUIJ1punA4KnKfJMvRQegHJULSs6FjRaPJOo2YY=', 'x-amz-request-id': 'ZX10ZHCRS25EFH59', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,756 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,757 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,758 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,758 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,758 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX10ZHCRS25EFH59', 'HostId': 'IeOJWwMRt2/7fOmD2lV47E1RNF9FXSNCV5QfqUIJ1punA4KnKfJMvRQegHJULSs6FjRaPJOo2YY=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'IeOJWwMRt2/7fOmD2lV47E1RNF9FXSNCV5QfqUIJ1punA4KnKfJMvRQegHJULSs6FjRaPJOo2YY=', 'x-amz-request-id': 'ZX10ZHCRS25EFH59', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,758 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,760 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,760 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1'}
2022-05-12 22:40:10,760 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,760 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,761 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,761 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,761 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,761 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,761 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,761 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,762 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,762 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:10,762 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1
2022-05-12 22:40:10,762 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,762 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,762 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
4f36f7d099a3458c5f3c10242b3e70c05b3831f65ccdcf77b00d12145eea43cd
2022-05-12 22:40:10,762 botocore.auth DEBUG    Signature:
35bcf97d1f60be905a8599f7ce83a615ae8df2a438e18dd17f4188041e5e5d49
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,763 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,849 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1 HTTP/1.1" 404 0
2022-05-12 22:40:10,849 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX19BNC605PGJTX5', 'x-amz-id-2': 'CZlg/DULgJX6xwuYGJf8Z8++05BRuZtYCzIPxSbEtcuVBxYAfcqaEYhyM7tbgZTLI4Nu3t09YsI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,850 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,850 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,850 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,850 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,850 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,852 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,853 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:10,853 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,853 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,853 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,853 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,853 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,854 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,854 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,855 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,855 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,855 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:10,855 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:10,855 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,855 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,856 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
4cecae8eaf80c6dac557557e98eab7fb0b02146e3c7ed339098f2b6449c0c886
2022-05-12 22:40:10,856 botocore.auth DEBUG    Signature:
fab0ea2e5eea3e34c0926e77e75e2c6e84f8f23d8f34763c020f073ba60653e7
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,856 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,857 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,940 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:10,940 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'PLIltzgwkQGFExMAVeIBLsznabRxKxjOHATNVRAbX2ufeYfLNFC/8XJFmEI5WOOZOXcgaH0nJfc=', 'x-amz-request-id': 'ZX16E2GH3Q44ENSS', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,941 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,942 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,942 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,942 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,942 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX16E2GH3Q44ENSS', 'HostId': 'PLIltzgwkQGFExMAVeIBLsznabRxKxjOHATNVRAbX2ufeYfLNFC/8XJFmEI5WOOZOXcgaH0nJfc=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'PLIltzgwkQGFExMAVeIBLsznabRxKxjOHATNVRAbX2ufeYfLNFC/8XJFmEI5WOOZOXcgaH0nJfc=', 'x-amz-request-id': 'ZX16E2GH3Q44ENSS', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,942 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,944 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,944 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless'}
2022-05-12 22:40:10,945 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,945 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,945 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,945 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,945 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,945 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,945 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:10,946 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:10,946 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,946 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,946 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
2d119f851b444398165d50e91688af5a4ece5b168eb2a3fd5a80489612497054
2022-05-12 22:40:10,946 botocore.auth DEBUG    Signature:
2f09958cdc3bb168ac689e3e5637519dbbba89fbd8fe85ca9e9136e69c4ee19f
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,947 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,031 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,031 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX172780GCY58S7H', 'x-amz-id-2': 'dAC4D+6V3JVQj/GRm5Wy26PQC0pV9ehTEDKekIcKTo0kYHoZ4x7bSzj6kYOkRQTrRf2qXvCnF7o=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,032 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,032 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,032 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,032 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,033 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,035 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,036 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless/'}
2022-05-12 22:40:11,036 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,036 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,036 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,036 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,036 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,037 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,037 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,038 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:11,038 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:11,039 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,039 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,039 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
0e0d7c1f285237e20f961ed434640434080fe0e4e3256ed7ee7453c584797929
2022-05-12 22:40:11,039 botocore.auth DEBUG    Signature:
dfc56231622ace5dfa79b8d5ccd0badedea03df51b24e7d02dee4106cc1a4751
2022-05-12 22:40:11,039 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,039 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,040 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,122 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,122 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX7P5FW46JMSJC9', 'x-amz-id-2': 'wPZG90vUdofTg23bgyilL7ddhrduPI6alF1sMjyuAPXSg/4LjP0QdPc6Uoj9aZObTz1iTnRa+3s=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,122 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,123 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,123 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,123 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,123 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,124 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:11,124 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:11,124 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:11,124 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:11,124 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,124 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_1/data_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224011Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:11,124 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
51064be609f6489566333fa0a4837886caea4d2a2be7d3002eabcdf5fad3ed71
2022-05-12 22:40:11,125 botocore.auth DEBUG    Signature:
04bba570d3d7bd0d87d5524f192e0f9b4c2750ecf75a6d317120475401b764c6
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:11,125 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,125 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,216 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,216 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '3pnOoN77TbjzhrbqWQMDFx70APvePzZAqBuUQkqNnq0qTcyuZ92SbK4GiLgm1CNUhwAL+3BUMSc=', 'x-amz-request-id': 'HZXAXCW4R2DV70RX', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,216 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,216 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:11,217 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:11,217 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZXAXCW4R2DV70RX', 'HostId': '3pnOoN77TbjzhrbqWQMDFx70APvePzZAqBuUQkqNnq0qTcyuZ92SbK4GiLgm1CNUhwAL+3BUMSc=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '3pnOoN77TbjzhrbqWQMDFx70APvePzZAqBuUQkqNnq0qTcyuZ92SbK4GiLgm1CNUhwAL+3BUMSc=', 'x-amz-request-id': 'HZXAXCW4R2DV70RX', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:11,217 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,218 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,219 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,219 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,219 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,219 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,219 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,219 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,219 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,219 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:11,219 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:11,219 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,219 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,219 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
99e46df574193167ecda2c20fe5dddbbbdbfd6df1511dd4480df89759c266e73
2022-05-12 22:40:11,219 botocore.auth DEBUG    Signature:
36446991a042c92fc441f9a7406f4d65c5d470616fddd4168ddcfc30156bce11
2022-05-12 22:40:11,219 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,219 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,219 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,305 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:11,305 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Sn3Gq+4lWc5TpSo8tC2zEX1YHBp3lkkmNxUtmn0kvIUTH2EPDpnkv20N3KHfK+Exew2GwbrI0Yo=', 'x-amz-request-id': 'HZX6PF8TMMK0650D', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,305 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,306 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,306 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,307 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,307 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX6PF8TMMK0650D', 'HostId': 'Sn3Gq+4lWc5TpSo8tC2zEX1YHBp3lkkmNxUtmn0kvIUTH2EPDpnkv20N3KHfK+Exew2GwbrI0Yo=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Sn3Gq+4lWc5TpSo8tC2zEX1YHBp3lkkmNxUtmn0kvIUTH2EPDpnkv20N3KHfK+Exew2GwbrI0Yo=', 'x-amz-request-id': 'HZX6PF8TMMK0650D', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,307 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,308 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,308 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless'}
2022-05-12 22:40:11,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,309 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:11,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,309 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,310 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,310 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,310 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:11,310 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:11,310 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,310 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,310 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
c6e9ff5b90c5e02647598ad626b83cb82db918fe485345f27a27bcea7448417a
2022-05-12 22:40:11,311 botocore.auth DEBUG    Signature:
54cc56ac530c1fb1fc3879b4b54036068629d8a10353c7bc26b5bce93f16525c
2022-05-12 22:40:11,311 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,311 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,311 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,391 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,392 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX3XR9WAA4PBQPH', 'x-amz-id-2': 'rldHynA9K3fmh7KqmjPMgAkm2xp781P4UtRD/5EKw+J5YqIgkggngBbGWvjvhjli8HuqMVzXPAU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,392 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,392 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,392 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,392 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,393 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,394 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,395 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless/'}
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,395 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,396 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,396 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,396 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,396 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,396 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,396 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,396 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,396 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:11,396 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:11,397 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,397 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,397 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
0e0d7c1f285237e20f961ed434640434080fe0e4e3256ed7ee7453c584797929
2022-05-12 22:40:11,397 botocore.auth DEBUG    Signature:
dfc56231622ace5dfa79b8d5ccd0badedea03df51b24e7d02dee4106cc1a4751
2022-05-12 22:40:11,397 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,397 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,398 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,482 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,483 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '9npRHwvX0SupfmHpFb2KTU7lkTLUjMNDxZ2pnkG1ucDnMKt1qGFHnrjSyg38Sjdfpbp2+cZ+IXI=', 'x-amz-request-id': 'HZX2QF54JVBWVNTM', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,483 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,484 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,484 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,484 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,484 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX2QF54JVBWVNTM', 'HostId': '9npRHwvX0SupfmHpFb2KTU7lkTLUjMNDxZ2pnkG1ucDnMKt1qGFHnrjSyg38Sjdfpbp2+cZ+IXI=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '9npRHwvX0SupfmHpFb2KTU7lkTLUjMNDxZ2pnkG1ucDnMKt1qGFHnrjSyg38Sjdfpbp2+cZ+IXI=', 'x-amz-request-id': 'HZX2QF54JVBWVNTM', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,485 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,486 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,486 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless'}
2022-05-12 22:40:11,487 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,487 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,487 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,487 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,487 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,487 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,487 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,487 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:11,487 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,488 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,488 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,488 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,488 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,488 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,488 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,488 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,488 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:11,489 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:11,489 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,489 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,489 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
88d480c9380d8c27ba5964e2e08d762bc76624e96b62226ee267825898d36299
2022-05-12 22:40:11,489 botocore.auth DEBUG    Signature:
9816f4aeb78a8ded8d68464fa730659f8c56c408ac9a4eee250d0e6dd31298aa
2022-05-12 22:40:11,489 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,489 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,490 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,573 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,574 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXERZ6NKS3CEVJJ', 'x-amz-id-2': 'M2kgz6AoGMpadecuZRwfIu11CWCmsf16RK9zv1dM7oJo21H6ChZo/8KKhxs6TO+TEgHU0qVFggY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,574 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,574 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,574 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,574 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,574 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,575 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless/'}
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,575 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,575 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,575 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,576 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:11,576 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:11,576 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,576 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,576 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
f851eacab3307fbcf9c22350460705811a1c0fff0828942442cbaeea6d7ddbdf
2022-05-12 22:40:11,576 botocore.auth DEBUG    Signature:
17eaa2aca42f98e818eed2abb1788569d079edd5852606ab58f0277c0a843e35
2022-05-12 22:40:11,576 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,576 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,576 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,659 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,660 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX65B7ZKCVSZ52B', 'x-amz-id-2': 'S45Gv7jpf5jBiVQ9bnCNVUUgM2s7VQyfnCCMlfh0v/vmiJJRjsF9pdJbtgMZ8Sn43bFg+aOaVO8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,660 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,660 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,660 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,661 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,661 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,663 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,663 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,664 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,664 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,664 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,664 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,664 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:11,664 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,664 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,664 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,665 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,665 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,665 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,665 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,665 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,665 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:11,665 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:11,665 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,666 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,666 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
99e46df574193167ecda2c20fe5dddbbbdbfd6df1511dd4480df89759c266e73
2022-05-12 22:40:11,666 botocore.auth DEBUG    Signature:
36446991a042c92fc441f9a7406f4d65c5d470616fddd4168ddcfc30156bce11
2022-05-12 22:40:11,666 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,666 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,667 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,752 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:11,753 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7ICa+Vj22XCcWBnHwAxPHqGEoJAiDIVKS+qrzFDl4SUGXBBqD6ijQUNH30SEns7ytOXyJy8bn0Y=', 'x-amz-request-id': 'HZX323F4T9DVEY0G', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,753 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,754 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,754 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,754 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,754 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX323F4T9DVEY0G', 'HostId': '7ICa+Vj22XCcWBnHwAxPHqGEoJAiDIVKS+qrzFDl4SUGXBBqD6ijQUNH30SEns7ytOXyJy8bn0Y=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '7ICa+Vj22XCcWBnHwAxPHqGEoJAiDIVKS+qrzFDl4SUGXBBqD6ijQUNH30SEns7ytOXyJy8bn0Y=', 'x-amz-request-id': 'HZX323F4T9DVEY0G', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,755 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,756 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,756 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless'}
2022-05-12 22:40:11,757 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,757 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,757 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,757 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,757 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,757 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,757 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,757 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:11,757 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,758 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,758 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,758 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,758 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,758 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,758 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,758 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,758 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:11,758 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:11,759 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,759 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,759 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
88d480c9380d8c27ba5964e2e08d762bc76624e96b62226ee267825898d36299
2022-05-12 22:40:11,759 botocore.auth DEBUG    Signature:
9816f4aeb78a8ded8d68464fa730659f8c56c408ac9a4eee250d0e6dd31298aa
2022-05-12 22:40:11,759 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,759 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,760 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,840 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,840 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXE3HXYZRGHD9J3', 'x-amz-id-2': 'ZJ+VONqCBJqykuXpEiUgCPmFLu/9jHImiRRLcbwkY+3S6hGVeFIVISp+l2W5UaG6bIcUjvTzotY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,841 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,841 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,841 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,841 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,841 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,842 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,843 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless/'}
2022-05-12 22:40:11,843 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,843 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,843 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,843 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,843 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,844 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,844 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,844 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:11,844 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,844 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,844 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,844 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,844 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,845 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,845 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,845 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,845 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:11,845 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:11,845 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,845 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,845 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
f851eacab3307fbcf9c22350460705811a1c0fff0828942442cbaeea6d7ddbdf
2022-05-12 22:40:11,845 botocore.auth DEBUG    Signature:
17eaa2aca42f98e818eed2abb1788569d079edd5852606ab58f0277c0a843e35
2022-05-12 22:40:11,846 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,846 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,846 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,930 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,930 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXEJP8NZ49PPAY9', 'x-amz-id-2': 'lUh7Rwj7YIckRc2AX2XCW7mFUdtaiNgT074h09FokDMcxSkfGGlTetkktMudpVydIUQK9p2tEbw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,930 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,931 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,931 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,931 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,931 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,933 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,934 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1'}
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,934 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,935 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,935 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,935 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,936 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,936 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:11,936 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1
2022-05-12 22:40:11,936 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,936 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,936 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
4e279be5d1d9a0e0ccaf93756106dbf01601fc98050f57eaaf607dcc1b40d892
2022-05-12 22:40:11,936 botocore.auth DEBUG    Signature:
e8dcf79767327aede22d41d6d5a81331c33775fa1af1654531996be743f885ba
2022-05-12 22:40:11,937 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,937 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,937 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,022 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1 HTTP/1.1" 404 0
2022-05-12 22:40:12,023 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX0H70WENNB6K9R', 'x-amz-id-2': 'PAKMtqe3Hj25GQG49Ayc40aq/CiemxU2AwcKEcVxPyORZrOy8wbrcsOeHBJQcEprAclxjT7D/MM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,023 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,023 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,024 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,024 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,024 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,025 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,026 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:12,026 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,026 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,026 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,026 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,026 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,026 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,026 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,026 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:12,027 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,027 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,027 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,027 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,027 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,027 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,027 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,027 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,027 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:12,027 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:12,028 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,028 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,028 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
0c5dedd64517db83c6071a1bad91d00ee3527ba614c1b2ea8a78cf75d75fbc6f
2022-05-12 22:40:12,028 botocore.auth DEBUG    Signature:
cfe3b85eb2ec8b0b930949cbb8d3c3f60b6ed0a058118a90ecc8ecb336906762
2022-05-12 22:40:12,028 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,028 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,029 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,111 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:12,112 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'aA13z4dCl18kFxZLZLAhhs84Hy8QZy7Vuivqf5o3hl9Io/iOOUdgKmw1ZPjOPbj+Qv8gJ5HZrj0=', 'x-amz-request-id': 'ZJF7WVH63400A25A', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,112 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,113 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,113 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,113 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,113 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF7WVH63400A25A', 'HostId': 'aA13z4dCl18kFxZLZLAhhs84Hy8QZy7Vuivqf5o3hl9Io/iOOUdgKmw1ZPjOPbj+Qv8gJ5HZrj0=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'aA13z4dCl18kFxZLZLAhhs84Hy8QZy7Vuivqf5o3hl9Io/iOOUdgKmw1ZPjOPbj+Qv8gJ5HZrj0=', 'x-amz-request-id': 'ZJF7WVH63400A25A', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,113 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,115 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,115 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1'}
2022-05-12 22:40:12,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,116 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,116 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,117 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,117 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1
2022-05-12 22:40:12,117 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1
2022-05-12 22:40:12,118 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,118 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,118 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
8f97f6bfeaf37201b88ab26fa5dd8a63032bd6248a793c8f94c6e24fe390e5e2
2022-05-12 22:40:12,118 botocore.auth DEBUG    Signature:
7d7095240f5e6300d79b1318741d886ea802d25980f9a3e11ddd9f2e9f30ed57
2022-05-12 22:40:12,118 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,119 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,119 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,202 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1 HTTP/1.1" 404 0
2022-05-12 22:40:12,202 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJFBE3J6FHJ178FK', 'x-amz-id-2': 'gFq8ttGa85y4dabNxaqzEUFI02axFZfkVtqsuaepeonVOgaEzCVYvLLeeN/b4Ax9brbaeirH4Rw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,202 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,202 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,202 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,203 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,203 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,204 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,205 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,205 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,206 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,206 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,206 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,206 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:12,206 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:12,207 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,207 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,207 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
0c5dedd64517db83c6071a1bad91d00ee3527ba614c1b2ea8a78cf75d75fbc6f
2022-05-12 22:40:12,207 botocore.auth DEBUG    Signature:
cfe3b85eb2ec8b0b930949cbb8d3c3f60b6ed0a058118a90ecc8ecb336906762
2022-05-12 22:40:12,207 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,207 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,208 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,290 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:12,291 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'l8th0sk3GcdamxMxiCwnHUYE0JSfrjAW0OXmjXkOuSMBXBtnAlW/W7TG6klkcrsIlRvADLNfS/M=', 'x-amz-request-id': 'ZJF5DSRRZJY4X02S', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,291 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,292 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,292 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,292 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,292 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF5DSRRZJY4X02S', 'HostId': 'l8th0sk3GcdamxMxiCwnHUYE0JSfrjAW0OXmjXkOuSMBXBtnAlW/W7TG6klkcrsIlRvADLNfS/M=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'l8th0sk3GcdamxMxiCwnHUYE0JSfrjAW0OXmjXkOuSMBXBtnAlW/W7TG6klkcrsIlRvADLNfS/M=', 'x-amz-request-id': 'ZJF5DSRRZJY4X02S', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,292 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,294 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless'}
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,294 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,295 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,295 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,295 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,295 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,295 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,295 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:12,295 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,295 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,295 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,295 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,296 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,296 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,296 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,296 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,296 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:12,296 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:12,296 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,296 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,296 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
aef039ee74caee90d4865daa478ba36e37be3d7eb2cf93cefdf771b2061c19af
2022-05-12 22:40:12,297 botocore.auth DEBUG    Signature:
555a294657ef62afa89e0615bbcc4823a72ddf1838d62ccbe61e5f043ff33c3b
2022-05-12 22:40:12,297 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,297 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,297 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,379 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:12,379 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF1FQJCA35SX2XQ', 'x-amz-id-2': 'YOx4gE79sDFJqQmdIAMP+HSWPY6oZnwDkawxj0c6+De8aeT6odchz9f0TxcWQqydSBwgiHyfimo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,379 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,379 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,380 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,380 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,380 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,381 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,382 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless/'}
2022-05-12 22:40:12,382 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,382 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,382 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,382 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,382 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,382 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,383 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,383 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,383 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,383 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:12,383 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:12,384 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,384 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,384 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
c623b0779df9dba7ce787ed5273b4e0e2f6314be2685725e1ab9fb201ab00e45
2022-05-12 22:40:12,384 botocore.auth DEBUG    Signature:
b8804254c867e344193975fd6a055e5964e9230b01cbad4cbf6ec010373fdf94
2022-05-12 22:40:12,384 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,384 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,384 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,465 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:12,466 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJFASJ6V31FSRV9G', 'x-amz-id-2': 'KlqZR8vWKUTzZj0Y80WzJY9ek3mU3lRp6A8Ud/DLPb6MIXHIGSrzMtReKdo1Kuc6rtqfylUd69k=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,466 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,467 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,467 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,467 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,467 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,469 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,469 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:12,469 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,469 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,469 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,469 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,469 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:12,469 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:12,470 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,470 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,470 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,470 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:12,470 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:12,470 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,470 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,470 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,470 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:12,471 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:12,471 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:12,471 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:12,471 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:12,471 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:12,471 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:12,471 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,471 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_1/vector_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224012Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:12,472 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
1a14b156d6ba9a4fe1e9fd6b01ba4d03994b7f70a4d035cbeea1b4cec3666872
2022-05-12 22:40:12,472 botocore.auth DEBUG    Signature:
17fec09dfb2631504aa2d91c8a34716ccd270ab32b0defb210d89ed3fe5ab6db
2022-05-12 22:40:12,472 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:12,472 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,473 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,563 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:12,564 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'AHaGjKZ7wY+GsvhGqkwLT8FyxqAFHuwNCei7xmK/1Fu3vkv0VyCeJDcjRs5V6y9QoQr2lcP3tDg=', 'x-amz-request-id': 'ZJF8STBMG80K881C', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,564 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,564 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:12,564 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,564 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:12,564 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF8STBMG80K881C', 'HostId': 'AHaGjKZ7wY+GsvhGqkwLT8FyxqAFHuwNCei7xmK/1Fu3vkv0VyCeJDcjRs5V6y9QoQr2lcP3tDg=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'AHaGjKZ7wY+GsvhGqkwLT8FyxqAFHuwNCei7xmK/1Fu3vkv0VyCeJDcjRs5V6y9QoQr2lcP3tDg=', 'x-amz-request-id': 'ZJF8STBMG80K881C', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:12,565 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,566 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,566 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/'}
2022-05-12 22:40:12,566 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,566 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,566 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,566 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,566 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,567 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,567 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,567 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:12,567 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,567 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,567 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,567 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,567 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,567 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,567 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,567 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,567 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/
2022-05-12 22:40:12,567 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/
2022-05-12 22:40:12,567 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,567 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,568 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
0c5dedd64517db83c6071a1bad91d00ee3527ba614c1b2ea8a78cf75d75fbc6f
2022-05-12 22:40:12,568 botocore.auth DEBUG    Signature:
cfe3b85eb2ec8b0b930949cbb8d3c3f60b6ed0a058118a90ecc8ecb336906762
2022-05-12 22:40:12,568 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,568 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,568 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,650 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/ HTTP/1.1" 200 0
2022-05-12 22:40:12,651 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'n9N3Dznfh4XCkpKWdZfTdlcGogIP2mBY/7xaqaojgDCqfIMHp9fvHebsQQRzrlecDy561yon+Ts=', 'x-amz-request-id': 'ZJF700PWVX5QH9S6', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,651 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,652 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,652 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,652 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,652 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF700PWVX5QH9S6', 'HostId': 'n9N3Dznfh4XCkpKWdZfTdlcGogIP2mBY/7xaqaojgDCqfIMHp9fvHebsQQRzrlecDy561yon+Ts=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'n9N3Dznfh4XCkpKWdZfTdlcGogIP2mBY/7xaqaojgDCqfIMHp9fvHebsQQRzrlecDy561yon+Ts=', 'x-amz-request-id': 'ZJF700PWVX5QH9S6', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:08 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 8, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,652 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,653 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,654 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless'}
2022-05-12 22:40:12,654 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,654 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,654 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,654 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,654 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,654 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,655 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,655 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:12,655 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,655 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,655 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,655 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,655 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,655 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,655 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,655 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,655 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:12,656 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:12,656 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,656 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,656 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
aef039ee74caee90d4865daa478ba36e37be3d7eb2cf93cefdf771b2061c19af
2022-05-12 22:40:12,656 botocore.auth DEBUG    Signature:
555a294657ef62afa89e0615bbcc4823a72ddf1838d62ccbe61e5f043ff33c3b
2022-05-12 22:40:12,656 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,657 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,657 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,739 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:12,739 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF522PFW0PTYAV0', 'x-amz-id-2': 'BgoI1VNJxzou0cmTZp5rS9N4UyvDTH9YRESb9g0jTyb/o2ijF/mzzrF3Xwywe2pCLtTC1mHZZKY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,739 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,740 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,740 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,740 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,740 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,743 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,743 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless/'}
2022-05-12 22:40:12,743 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,743 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,744 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,744 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,744 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,744 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,744 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,744 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:12,744 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,744 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,744 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,745 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,745 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,745 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,745 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,745 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,745 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:12,745 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:12,746 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,746 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,746 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
c623b0779df9dba7ce787ed5273b4e0e2f6314be2685725e1ab9fb201ab00e45
2022-05-12 22:40:12,746 botocore.auth DEBUG    Signature:
b8804254c867e344193975fd6a055e5964e9230b01cbad4cbf6ec010373fdf94
2022-05-12 22:40:12,746 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,746 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,747 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,832 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:12,833 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'rwUaZnzzkO2bIfJx/iP0w7w6/P+XVqcInzJknfiV4Ay3D/E9m2jcBENjqDX9AecgZB6N3pjVTq8=', 'x-amz-request-id': 'ZJFFT4Y95NRYK2WB', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,833 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,834 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,834 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,834 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,834 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJFFT4Y95NRYK2WB', 'HostId': 'rwUaZnzzkO2bIfJx/iP0w7w6/P+XVqcInzJknfiV4Ay3D/E9m2jcBENjqDX9AecgZB6N3pjVTq8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'rwUaZnzzkO2bIfJx/iP0w7w6/P+XVqcInzJknfiV4Ay3D/E9m2jcBENjqDX9AecgZB6N3pjVTq8=', 'x-amz-request-id': 'ZJFFT4Y95NRYK2WB', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,835 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,837 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,837 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,838 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,840 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,840 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,841 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,843 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,844 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,848 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,851 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,853 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,853 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,853 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,854 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,858 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,856 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,856 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,858 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless'}
2022-05-12 22:40:12,859 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,860 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,862 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,862 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,862 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,863 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,863 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,863 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,864 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,864 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,865 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,865 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,866 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,867 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,867 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,867 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,867 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless'}
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,869 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless'}
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,869 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless'}
2022-05-12 22:40:12,869 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,871 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,872 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,873 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:12,875 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,875 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,876 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,876 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:12,876 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
236451105ecb9e8128e786d4493cbfcbfc315e88f5f239476ee481a87e23d228
2022-05-12 22:40:12,876 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:12,876 botocore.auth DEBUG    Signature:
7edfb84c6c7de50458d5d758c8f52c9d13a6c535a0032c5f8d28503683c3782e
2022-05-12 22:40:12,876 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,877 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,877 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
156c90c7b380c9946717a8ab89e9fcd441a20653430f708be9948478b86dc82f
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,877 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,877 botocore.auth DEBUG    Signature:
2b934a0c0f7e6d2c73ddf3324adc764e9f6df975749cf9aa3e324a5516d8e639
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,877 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
156c90c7b380c9946717a8ab89e9fcd441a20653430f708be9948478b86dc82f
2022-05-12 22:40:12,877 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,878 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,878 botocore.auth DEBUG    Signature:
2b934a0c0f7e6d2c73ddf3324adc764e9f6df975749cf9aa3e324a5516d8e639
2022-05-12 22:40:12,878 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,878 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,878 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,878 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,878 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:12,879 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,879 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:12,879 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,879 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,879 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,879 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,879 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
8189ab35e687ec7f823e403d81a723b4be2d8be6d1cd78d805901539331571bd
2022-05-12 22:40:12,879 botocore.auth DEBUG    Signature:
ef1196f851c77fa69720c7cd76614dc74e04d017061fa2cf39c87c325e3f3e77
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,880 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,880 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,880 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:23,666 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,667 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCR83ZE30KPA68X', 'x-amz-id-2': 'IbLwn+nHsPGMKCQbIUGWbYGK8OgAn1lbAzfvMhR1gaXw8QfledlGxKxG9SACpPT8HCx/AMWOzl4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,667 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,670 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,670 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,670 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,671 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,671 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,671 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,671 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,672 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,672 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,672 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,672 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,672 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,673 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,673 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,673 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,673 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,673 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,673 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,673 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,674 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,674 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,674 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,674 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,674 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,674 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,675 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,675 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,692 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,692 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCK4CS9XPET8A55', 'x-amz-id-2': 'zbwZyCySlgCTHjBMviRept9YmYvNQupwYswgKLTcDwv0BfC/3R0yh6UK9a++6rP0W3RxmFny+nY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,692 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,694 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,695 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,695 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,695 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,695 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,695 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,696 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,696 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCM6JA3K6T0XSZY', 'x-amz-id-2': 'bdjNUEKxdwHzfItZKrOdirS42AkDbJWIDLXU7LuGlPqPa4XoR/AqB0+avxfvJXYH5oqyUb7eeLw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,696 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,696 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,696 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,697 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,698 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,699 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,699 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,699 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,699 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,699 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,699 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,699 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,699 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,699 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,700 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,700 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,700 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,700 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,700 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,700 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,700 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,700 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,701 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,701 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,701 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,701 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,701 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,701 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,701 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,701 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,702 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,702 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,702 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,702 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,702 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,702 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,703 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,721 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,721 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCPHB23GZ19S8N4', 'x-amz-id-2': 'WcOI28mnSPs/l4Dshk37K/3B+56I7JW3rckPmfY4UZuPzaVeVi7EyG281hgRE5F5e1BGykdYq9o=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,721 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,722 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,722 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,723 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,723 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,723 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,723 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,723 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,723 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,723 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,723 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,723 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,724 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,724 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:24,702 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,702 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAG2ZPDJFG8W0TWZ', 'x-amz-id-2': 'I/wHs1Kt1S2qOkYDbkych+Mo+1flmQL7kZrepsspJPyNZu5Mv1jOzHFTclhfACGnlQfUWoQjudk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,703 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,703 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,703 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,703 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,703 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,703 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,703 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,703 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,703 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,703 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,703 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,703 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,703 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,703 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,704 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,704 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,704 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,704 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,704 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,704 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,704 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,704 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,707 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,708 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAGD3A86H0TRXVX2', 'x-amz-id-2': 'LFEi3OeqVPZSB3Hs23nXWpR+KPGaPHTZkkQR+NmgkvKpyOj8IeMH4khEIDvR7pV/9AIjTPRQp6Y=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,708 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,708 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,708 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,708 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,708 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,709 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,709 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,709 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,709 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,709 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,709 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,709 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,709 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,709 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,709 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,709 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,711 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,711 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAG5NNZV1YYNH7C5', 'x-amz-id-2': 'lP0Gs/7oeNfVLFCtHwtydjT4gCAWZhg7sNEY/5mKoCsDIPou2ZxlbEKW/9vt6P21kHcuTt+0vFo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,711 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,711 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,712 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,712 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,712 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,712 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,712 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,712 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,712 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,712 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,712 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,712 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,712 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,712 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,712 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,712 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,713 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,713 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,713 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,713 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,713 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,713 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,716 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,716 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAGDAJ4BVG1TAMGR', 'x-amz-id-2': 'PmHhONi5zYVRWPpmim/g+wabhIK6OwnK9ftMmDlZyhNKVwENx4hxMBfsLB06sgdiqN+PW+ZYHS0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,716 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,716 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,717 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,717 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,717 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,717 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,717 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,717 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,717 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,717 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,717 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,717 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,717 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,717 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,717 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,718 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,718 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,718 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,718 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,718 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,718 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,718 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:30,034 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,035 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'fEOQWnVodTqTviWST0rvzFSevaxu7/eZ7mUziNE6nK20k7/gjz6fi43RcPV+4wlKsAssXT5dLXs=', 'x-amz-request-id': 'BAY58ZHKSXRKQJ9M', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,035 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,035 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,035 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,035 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,035 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,035 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,035 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:30,035 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,035 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,035 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,035 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,035 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,035 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,035 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:30,035 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:30,036 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,036 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,036 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
37ca8e1871f5c6660145a287e39761d43dabc15d132c3d6349ed4b55e23a7e03
2022-05-12 22:40:30,036 botocore.auth DEBUG    Signature:
dba7ae5f33b25d29c2bb10598d97989c1043936f85bc1c631d4d2cd0fa7e4ed5
2022-05-12 22:40:30,036 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,036 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'zC/0v/NcoHHoAm62yqDjG+ryJmNnNJ7lA4HOBoYs9vgkXcGlRz53q/z4Ij8Qhznro8XfKF+/Zf0=', 'x-amz-request-id': 'BAY8J9S8NP04A4RR', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,036 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,036 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,036 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,037 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,037 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,037 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,037 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,037 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SqiLb/ol4f/sMWbNp86xNzfLvNhOauyfQEhuAPK7jk54RFslEA8PvaaCWX/qCI5zaZdU8rE3drg=', 'x-amz-request-id': 'BAYBA1RFFT34ZVJV', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,038 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:30,038 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,038 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,038 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,038 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,038 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,038 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,038 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,038 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,038 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,038 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,038 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,038 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,038 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:30,038 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:30,038 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,039 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,039 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,039 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,039 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
37ca8e1871f5c6660145a287e39761d43dabc15d132c3d6349ed4b55e23a7e03
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,039 botocore.auth DEBUG    Signature:
dba7ae5f33b25d29c2bb10598d97989c1043936f85bc1c631d4d2cd0fa7e4ed5
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,039 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,039 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:30,039 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,039 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless
2022-05-12 22:40:30,039 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,039 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,040 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,040 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
0c83797426205b265f8da8005e26d89fc964667c959ab8a3816f0d3023e9864d
2022-05-12 22:40:30,040 botocore.auth DEBUG    Signature:
c10f445efd9bb1a940ce969a8038bf1be6c99fb5ae8557959b735d196b1ed2c2
2022-05-12 22:40:30,040 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,040 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,040 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,059 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,060 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'vroOCgz+7O8lLZ8fb3xLNnCY4GC2FGAJSWf8TJvGLJ4cdTZpJxXfL5yASKPZ/HNPLPtFR+sYfZU=', 'x-amz-request-id': 'BAYC8XX2DR2MXJCS', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,060 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,060 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,060 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,060 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,060 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,060 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,060 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:30,060 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,060 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,060 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,060 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,060 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,060 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,060 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:30,060 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless
2022-05-12 22:40:30,061 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,061 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,061 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
eabd89783d35252fc272a070b322bb47aff40e59fd63385ebdb67c42562d3186
2022-05-12 22:40:30,061 botocore.auth DEBUG    Signature:
d3c60ae4f1e86889f084e21651ddacd76e151483f30783da3e1fdaa9c34129bd
2022-05-12 22:40:30,061 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,061 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,061 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,117 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,118 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTHSD3P71GFPFEH', 'x-amz-id-2': 'Z/x6lojWes99qvX/hFW+iWo1JnhAPBfkK4MteeBPyOFGLix7eqYiKGdAeFbr18jZt/ouKRhfUxw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,118 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,118 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,118 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,118 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,118 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,118 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,119 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless/'}
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,120 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:30,120 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:30,120 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,121 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,121 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
ba7e186e38a56f96744aabb4a78cbf1708e11f1578170c1f84539ffbf4cd49cc
2022-05-12 22:40:30,121 botocore.auth DEBUG    Signature:
ebf419d75b16fff1df8bc35800a8591583c6bb815aa159aa0e10904a882e619b
2022-05-12 22:40:30,121 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,121 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,121 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,122 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,123 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTSEPCBQ3DSPE8P', 'x-amz-id-2': 'RJmPvTDUBKHDqGhre7i3hXFJV+QESnyd3KafMO2r9vsSZmfWsrqPcg/sPpF7Tap4rcd158+HcsQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,123 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,123 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,123 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,123 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,123 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,123 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,124 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless/'}
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,124 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,124 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTWRWW6YD83DGX2', 'x-amz-id-2': 'szyfNuRk2XRRfwee5ulp4yooILZUsEDh5tBPvikKLhUamx/NJiFWVLJ9+I3yGfSi1qLnGxU6oo8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,124 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,124 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,124 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,125 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,125 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,125 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:30,126 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,126 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,127 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,127 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,127 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless/'}
2022-05-12 22:40:30,127 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,128 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:30,128 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,128 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/
2022-05-12 22:40:30,128 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:30,129 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,129 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,129 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,129 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,129 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
ba7e186e38a56f96744aabb4a78cbf1708e11f1578170c1f84539ffbf4cd49cc
2022-05-12 22:40:30,129 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,129 botocore.auth DEBUG    Signature:
ebf419d75b16fff1df8bc35800a8591583c6bb815aa159aa0e10904a882e619b
2022-05-12 22:40:30,129 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,129 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,129 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,129 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,129 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,129 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,129 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,129 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,129 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:30,129 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless/
2022-05-12 22:40:30,130 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,130 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,130 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
bd6e5837ecfe1c536480977b301f1397afe12f3ba1ec9654696d1c9af8453488
2022-05-12 22:40:30,130 botocore.auth DEBUG    Signature:
ef6db4bd538f9ace14600d02b6a98751d2e120534bbe73e971b8bca37d3b8ab4
2022-05-12 22:40:30,130 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,130 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,130 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,142 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,143 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTVXXKSVV5CAY1F', 'x-amz-id-2': 'DkXJXkzdaWiUhp13FIQ4S0cH718a6a0jK/BddQkTNvQgVDmRoSJZUjz3hFfXQG1XpVaTMqAWP/c=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,143 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,143 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,143 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,143 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,143 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,143 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,144 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,144 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless/'}
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,145 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,145 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,145 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:30,145 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless/
2022-05-12 22:40:30,145 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,145 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,145 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
852cb7e70bac1b47b7f4aae30fab2c34bb95b99708fb685d36fc0e9e724a78b5
2022-05-12 22:40:30,145 botocore.auth DEBUG    Signature:
bd81e62028a0540b13784c40609bcda414f89f1605ae50d2cc7bf1cfc8dbe875
2022-05-12 22:40:30,145 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,146 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,146 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,202 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,202 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'mJ2ukX++UZUoThRFID2z6APmf/VS5Q+GT0b+e68anNXyHCbx2VFGWni/RZTjffCKG6ZkEEeWdAg=', 'x-amz-request-id': 'EXTXCXY6XY4HN7KT', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,203 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,203 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,203 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTXCXY6XY4HN7KT', 'HostId': 'mJ2ukX++UZUoThRFID2z6APmf/VS5Q+GT0b+e68anNXyHCbx2VFGWni/RZTjffCKG6ZkEEeWdAg=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'mJ2ukX++UZUoThRFID2z6APmf/VS5Q+GT0b+e68anNXyHCbx2VFGWni/RZTjffCKG6ZkEEeWdAg=', 'x-amz-request-id': 'EXTXCXY6XY4HN7KT', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,203 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,204 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,204 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy'}
2022-05-12 22:40:30,204 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,205 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,205 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,205 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,205 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,205 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
296ebd90d8e962333738cf37bb17841799e8e2a15c9ba525d2e8c3cac4e902bd
2022-05-12 22:40:30,205 botocore.auth DEBUG    Signature:
4f8708397f5ca59693d34dc50e42c87cd7e38ae5fea364495e2d42963280a3f2
2022-05-12 22:40:30,205 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,205 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,206 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,212 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,212 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UIVuBL26cGYPsdiljuZtYAgNiH5LTnthhMU/dRWnkhQ9lu4iF5AQ3ESJAfTicJpKWTnbTvRbZZA=', 'x-amz-request-id': 'EXTY3Z2MG43FV6NF', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,212 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,213 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,213 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,213 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTY3Z2MG43FV6NF', 'HostId': 'UIVuBL26cGYPsdiljuZtYAgNiH5LTnthhMU/dRWnkhQ9lu4iF5AQ3ESJAfTicJpKWTnbTvRbZZA=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'UIVuBL26cGYPsdiljuZtYAgNiH5LTnthhMU/dRWnkhQ9lu4iF5AQ3ESJAfTicJpKWTnbTvRbZZA=', 'x-amz-request-id': 'EXTY3Z2MG43FV6NF', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,213 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,213 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,214 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'q3u7HP0mPelfZNJgqMiD5lMzv2w2iu6GKxVth0jY1zvehpFhu5FHB3lYpRUuPPJKifPyVktw/W0=', 'x-amz-request-id': 'EXTMP5PAP8ATQ5SR', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,214 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless/EXTENT.npy'}
2022-05-12 22:40:30,214 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,214 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,214 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,215 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTMP5PAP8ATQ5SR', 'HostId': 'q3u7HP0mPelfZNJgqMiD5lMzv2w2iu6GKxVth0jY1zvehpFhu5FHB3lYpRUuPPJKifPyVktw/W0=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'q3u7HP0mPelfZNJgqMiD5lMzv2w2iu6GKxVth0jY1zvehpFhu5FHB3lYpRUuPPJKifPyVktw/W0=', 'x-amz-request-id': 'EXTMP5PAP8ATQ5SR', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,215 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,215 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,215 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless/DISTANCE.npy'}
2022-05-12 22:40:30,216 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,216 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,216 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,216 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,216 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,216 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,216 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,217 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,217 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,217 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,217 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,217 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
84e6be601cdbdd2a8468f7e9e12fed05690d4fa123feb1e692cd6f0dd37f372e
2022-05-12 22:40:30,217 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,217 botocore.auth DEBUG    Signature:
1fd2a0c78f5e458ce80d388e0e879322794d9049bcc370d36583f4b60918c30c
2022-05-12 22:40:30,217 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,217 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,217 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,217 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,217 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,217 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,217 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,218 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,218 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,218 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
16f27831b95ea2ba90adb260127fcc9e1addd686e869d45e4a6db04977a8608b
2022-05-12 22:40:30,218 botocore.auth DEBUG    Signature:
707f9f33224d74f654dd88336b59b5216b0c027d1253e4a794d65e2e09ff0109
2022-05-12 22:40:30,218 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,218 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,218 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,226 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,226 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 's0hPWRRkX9eLje++j43hpe8PlQkZQbnpKnd3jdktOBfBC56DKA3tWQNWGSYapbL+JtUjqfsCkXo=', 'x-amz-request-id': 'EXTZBJDQGAEQSE86', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,227 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,227 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,227 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,227 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,227 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTZBJDQGAEQSE86', 'HostId': 's0hPWRRkX9eLje++j43hpe8PlQkZQbnpKnd3jdktOBfBC56DKA3tWQNWGSYapbL+JtUjqfsCkXo=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 's0hPWRRkX9eLje++j43hpe8PlQkZQbnpKnd3jdktOBfBC56DKA3tWQNWGSYapbL+JtUjqfsCkXo=', 'x-amz-request-id': 'EXTZBJDQGAEQSE86', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,227 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,228 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl'}
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,228 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,228 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,228 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,228 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,229 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,229 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,229 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,229 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
a18b91c52699efd5f289fd7c88a4c894a555534783c3c22f099a1fa145e6cb7b
2022-05-12 22:40:30,229 botocore.auth DEBUG    Signature:
95ef2b72dc341fd739586959658686306a2985ea05308d1e079696763314bb39
2022-05-12 22:40:30,229 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,229 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,229 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,293 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,294 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTW422MKSB4EMNG', 'x-amz-id-2': 'gNPLWZ2y6LMaBPEF1nJy1QWymd7zZtDTfALzXeQG3vsqqzPN5l3mGAu2Dex7J7YF4sy2uNlAbfY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,294 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,295 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,295 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,295 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,295 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,297 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,297 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy/'}
2022-05-12 22:40:30,297 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,298 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,298 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,298 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,298 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,298 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,298 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,298 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,299 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,299 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,299 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,299 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,299 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,299 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,299 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,299 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,300 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,300 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,300 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,300 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,300 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
49e202ebffae22fea2674a34d55c649c86130e702701ef160c15c56c0e4355e6
2022-05-12 22:40:30,301 botocore.auth DEBUG    Signature:
0eed47fcef4543d792a3666729c25a3441d4c18486fde3e4aa2b19b7d99c1bc7
2022-05-12 22:40:30,301 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless/EXTENT.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,301 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,302 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTZ4H6TZAP1GD8N', 'x-amz-id-2': 'kx0lj+oievTb55ekozNrq8nPAjgGs1OUoFyRYHbNGYG79LYuujmPCa0712Ixorqen9+JBmlr318=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,302 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,302 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,303 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,303 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,302 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,303 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,304 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless/DISTANCE.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,304 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,304 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTN4ESY96D5XEYP', 'x-amz-id-2': 'ChZ/25w1E47F6ZqdkFZkmkwR2eLEzXcufDypSFGvXgnBIountLHOwL3Lkj3BJZk4JTxM0X6WRP4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,306 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,306 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/mask_timeless/EXTENT.npy/'}
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,307 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,308 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/data_timeless/DISTANCE.npy/'}
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,309 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,309 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 404 0
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,310 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,311 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTGG6C3D50BNA2H', 'x-amz-id-2': 'Y6D9u4h4R4esTii3zOsPJbLnkVM5JjVf3f1xPES9RNdkiLdf3p7rN9KBvprlRLSGJKAHKexfRuY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,311 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,311 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,311 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,311 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,311 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,312 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,312 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,312 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,312 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,312 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,312 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,312 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
1b5bcdc3204c2c26041ee4c367b736ec0d0dfcab04851603d4e286b976852e95
2022-05-12 22:40:30,312 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,313 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,313 botocore.auth DEBUG    Signature:
b1bdf1249ebf0223f48c912073f5d17add0dbfc8a07c43640b59a9a1c2f749da
2022-05-12 22:40:30,313 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,313 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl/'}
2022-05-12 22:40:30,313 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,314 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
52d9a35f12843d13d5f5213e58f0f37c95464735ab3fbb3072ec20f9b94932df
2022-05-12 22:40:30,314 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,314 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,314 botocore.auth DEBUG    Signature:
0f091577862a5fd3bd0617718fbf15dca5e4f68c35887acb998f56d15b747d8c
2022-05-12 22:40:30,314 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,314 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,314 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,314 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,315 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,315 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,315 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,316 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,316 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,316 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,316 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,316 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,316 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,316 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,316 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,316 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,316 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,316 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,316 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,316 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
acce7035e104558a8209ce49266ff9710a84181899238076375e2c0e4d8a7b53
2022-05-12 22:40:30,316 botocore.auth DEBUG    Signature:
e607d52580d813b3d79fe9781d44253e2fee30f51b686abba297853cb1a76bb0
2022-05-12 22:40:30,316 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,316 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,316 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,387 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,387 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTWHEWRSS9DFB2K', 'x-amz-id-2': 'ueFCqaiK1M95EgLmbzBvRECv0FWkIlQsTGPfXzGVj+QoosLhVh6A0ybc0p3rDJxmjEasp1HfpXE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,387 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,388 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,388 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,388 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,390 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,391 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,391 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,391 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,393 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,394 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,395 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,395 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,395 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,395 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,396 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,396 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,396 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,396 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,397 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,397 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/mask_timeless/EXTENT.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,398 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTHG1YWJVFWDWXE', 'x-amz-id-2': 'VrBZqNRGxQz1hv153fW7TQI/0FPOslubP247kIkLBKK0RdTpchHNYeTudPStJzhUBItLYoxbyB4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,398 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,398 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,398 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,398 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,399 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,400 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,400 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,400 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,401 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,402 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,405 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl/ HTTP/1.1" 404 0
2022-05-12 22:40:30,405 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_4_1/data_timeless/DISTANCE.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,406 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTRQWQP1TG6XV12', 'x-amz-id-2': 'XCy22hQmDzXFsOfWwT/mzwZYpd0p2FPoQXuTkr9dBE+GU68ZAZNacuxbzuWUaeoNSF6V3HlPXmc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,405 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTV2E6AFSWM8F8W', 'x-amz-id-2': 'Ds070SXiGtJVBkoCrxnlOKEWy6X0TfTCz7KahTer1E1VcMzTJO1B/XhU7kxfCljE5XyaxXIpKiU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,406 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,406 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,406 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,406 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,406 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,406 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,406 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,406 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,406 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,406 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,407 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,407 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,407 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,410 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,410 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,410 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,411 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,414 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,414 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,414 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,414 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,414 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,414 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,419 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,415 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,419 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,420 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,415 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,419 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,421 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,421 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,421 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,422 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,424 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,424 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,426 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,426 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,426 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,426 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,424 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,424 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,426 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,427 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,427 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,427 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,427 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,427 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,427 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,427 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
f36b6ac3f1ab6c80586716888d044cde1d68c40d68fedea8e85a5f2d6519aeaf
2022-05-12 22:40:30,427 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,427 botocore.auth DEBUG    Signature:
328de2a9be1d77ebbf74624de14aed06f30d22269609451fb177d1ad0b281170
2022-05-12 22:40:30,428 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,428 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,428 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,427 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,428 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,428 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,428 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,428 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,428 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,428 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,429 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,429 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,429 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,430 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,432 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,431 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,434 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,435 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,435 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,435 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,435 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,435 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,435 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,435 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
1e72509870fc7309732f29ce2e2c7c343337e8bbdfbe2d55607820cd33aff029
2022-05-12 22:40:30,435 botocore.auth DEBUG    Signature:
4cd21175e7c8b7909590db7f57cf23903c4ad41abbd7e4e380dd9fafaf176908
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,436 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,434 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,436 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,436 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,436 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,437 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,437 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'B0sS5nt7r9iMdSqG874dtg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,437 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,438 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,438 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,438 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,438 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,438 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,438 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
f210d6fdc8f261951d6f05ac23ab3eb12d293b5d2e0d039415cf886940c18fee
2022-05-12 22:40:30,438 botocore.auth DEBUG    Signature:
ae0bbb92544508959f5516d655a193544e2b1576d0e883a3ace68d30f4706ffd
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,438 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,438 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,439 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,439 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,441 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,441 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'S/Wz7xyo6r7KThbY4TUDPg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,441 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,442 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,442 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,442 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,442 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,442 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,442 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,442 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,442 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,442 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,442 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
a6a372cc68bc03d691b490182513def4d9742207385d9d71f8b93672b6aab675
2022-05-12 22:40:30,442 botocore.auth DEBUG    Signature:
86241edf1caf04e5d9722cf40f7d4cc014e12223dae0ffbc374211a8755e0069
2022-05-12 22:40:30,442 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,442 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,442 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,442 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,442 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:31,559 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,564 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,582 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,582 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,634 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,635 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,636 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK2Q5HP9C0ZGCNH', 'x-amz-id-2': 'ZmqCyjS9nPPlYzNTTgKEevHY5z/FoFx/rBimWjRjUe4dihIz5NHuS0Qx+S8D5cfvBm0dbLDEj9s=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,636 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK2Q5HP9C0ZGCNHZmqCyjS9nPPlYzNTTgKEevHY5z/FoFx/rBimWjRjUe4dihIz5NHuS0Qx+S8D5cfvBm0dbLDEj9s='
2022-05-12 22:40:31,640 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,641 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,641 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,641 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,641 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,642 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,642 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,642 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,643 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,643 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 400 None
2022-05-12 22:40:31,644 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,645 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,645 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK3CGBRQJDTRDV9', 'x-amz-id-2': 'q5k8u7oco/6VabU72QID2HkeAJGUxYdOaTeQXesJBLXUz8kgejcgGwfrbAHuGFZ3FQnwlggNFyc=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,645 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,645 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK3CGBRQJDTRDV9q5k8u7oco/6VabU72QID2HkeAJGUxYdOaTeQXesJBLXUz8kgejcgGwfrbAHuGFZ3FQnwlggNFyc='
2022-05-12 22:40:31,646 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,650 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,650 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,651 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,651 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,651 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,651 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,651 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,651 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,651 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,651 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,651 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,651 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
27c46b99747b3d56034b307744aae7f64fa5e162f478540545be85a1da5e826e
2022-05-12 22:40:31,651 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,651 botocore.auth DEBUG    Signature:
5680d78c1ce4aa8f6ab4c9d25713b489d4173933f53fc5a3193f1daf5c7805d4
2022-05-12 22:40:31,651 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,652 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,652 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,652 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,652 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,652 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,652 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,652 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,652 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,652 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,652 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,652 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,652 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,653 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,653 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,653 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
1b31b13880bc85aae4ff03d7fdf534ca9baf75ffe79b88589e7d7a13db090e4b
2022-05-12 22:40:31,653 botocore.auth DEBUG    Signature:
602140876480d4e9986950bd054d59edf474f906d3a62c1fcabc35a5554a3b96
2022-05-12 22:40:31,653 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,653 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,653 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,653 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,653 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,659 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,660 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_4_1/mask_timeless/EXTENT.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,660 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK9DQYP0S51SAJA', 'x-amz-id-2': 'QFe9J5J9hkDi570iQ3k+wzzPSG46YbLeCNJ7H56Q+WmhOq5vkWm1OP02+GzeTCMKmkq3+4fKbmg=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,660 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK9DQYP0S51SAJAQFe9J5J9hkDi570iQ3k+wzzPSG46YbLeCNJ7H56Q+WmhOq5vkWm1OP02+GzeTCMKmkq3+4fKbmg='
2022-05-12 22:40:31,661 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,661 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,661 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,661 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,661 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,661 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,662 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,662 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,662 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,662 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,662 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_1/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,662 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
861017fd34c871afebce0dbf1bd8dedb3d82078a9c228d4894c96666465ae4a4
2022-05-12 22:40:31,662 botocore.auth DEBUG    Signature:
dcdbf9adeb164415d6f1344de5ef670d99c12dcbe60c88b1d62b060aac427c2f
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,662 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,663 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,663 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,663 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,663 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_4_1/data_timeless/DISTANCE.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,664 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK04RAFEG877VTD', 'x-amz-id-2': 'vaTujpeTSEBqoUVtPMC1VYnm6l7YNAmYFfsx94MU6Q3msatoSn/Qks3MVY8MRe4j47uCd3L/af4=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,664 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK04RAFEG877VTDvaTujpeTSEBqoUVtPMC1VYnm6l7YNAmYFfsx94MU6Q3msatoSn/Qks3MVY8MRe4j47uCd3L/af4='
2022-05-12 22:40:31,665 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,665 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,665 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,665 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,665 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,665 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,665 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,666 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,666 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,666 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,666 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_4_1/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,666 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
bc40819e4174dfe3632059be75f65a15f8edfb252de0109bfd2d2921055f9238
2022-05-12 22:40:31,666 botocore.auth DEBUG    Signature:
3771fd2780e7f4ee69dad3897d4a2a7d213f7e9f54a104759c75449642f1ad53
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,666 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,667 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,667 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:34,559 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,563 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,569 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,569 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,650 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,660 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,661 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,661 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,751 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 200 0
2022-05-12 22:40:34,751 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'X29kgW1aivn6E2gDKL5RMNvj1XkAbwnYlI7E3YL0+5egw7IqnURE84J0RkzQTaMHd4f7RMpgcHc=', 'x-amz-request-id': '7894P769HHSV7S99', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"074b12e67b7bafd88c752a86f3be1db6"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:34,752 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:34,752 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:34,752 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:34,752 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:34,752 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:34,753 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:08,193 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 200 0
2022-05-12 22:41:08,194 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'QueEFidHUSTJkZWsqdZWuvosdErfRdvpSPxZOJkm6wDfS4USgH6XZ3o6hyzV1EACEsLqRBVLEpM=', 'x-amz-request-id': '7892JWSBY4RK9R1W', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:08,194 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:08,194 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:08,194 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:08,194 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:08,194 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:08,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:08,797 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_1/mask_timeless/EXTENT.npy HTTP/1.1" 200 0
2022-05-12 22:41:08,798 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'zldEU8LO4K5UQ+Wmnr/OMnHVu5SRG3XSVbrEQUtbHMjVkgOoZAlf0aLKYcr8flkKLTXDn7o/caQ=', 'x-amz-request-id': '78995R5042W7C8RG', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:08,798 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:08,799 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:08,799 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:08,799 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:08,799 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:08,800 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:47,621 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_4_1/data_timeless/DISTANCE.npy HTTP/1.1" 200 0
2022-05-12 22:41:47,621 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Co1LQ08CdJczOSu5KetY7NZ3oTM0xyj4VvrIUTrN8rAjaUFFQ9++UE4SAEwbOZeh2hMf7N+reaU=', 'x-amz-request-id': '789006AP2PJJRKWG', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"4bf5b3ef1ca8eabeca4e16d8e135033e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:47,621 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:47,622 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:47,622 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:47,622 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:47,622 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:47,624 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:47,641 eolearn.core.eoworkflow DEBUG    Removing intermediate result for SaveTask
2022-05-12 22:41:47,643 eolearn.core.eoworkflow DEBUG    Workflow finished with WorkflowResults(
  Dependency(SaveTask):
    EOPatch(
      data: {
        BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
        CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
      }
      mask: {
        CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
        IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
      }
      scalar: {}
      label: {}
      vector: {}
      data_timeless: {
        DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
      }
      mask_timeless: {
        BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
        EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
      }
      scalar_timeless: {}
      label_timeless: {}
      vector_timeless: {
        GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
      }
      meta_info: {}
      bbox: BBox(((239500.0, 1379500.0), (250500.0, 1390500.0)), crs=CRS('32630'))
      timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
    )
)
2022-05-12 22:41:47,644 root         DEBUG    EOWorkflow execution finished

Execution 6

Statistics
2022-05-12 22:21:52,333 eolearn.core.eoworkflow DEBUG    Computing LoadTask(*[], **{'eopatch_folder': '30PTU_3_1'})
2022-05-12 22:21:52,334 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:52,336 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,336 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:52,336 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,339 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:52,341 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,345 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_1/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:52,346 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:52,346 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,346 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,346 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:52,346 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_1%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222152Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:52,346 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222152Z
20220512/us-east-1/s3/aws4_request
63851f49a058fa96bacfa21f9b51ab055200406c41fd6c350437b7e61c5b49a6
2022-05-12 22:21:52,346 botocore.auth DEBUG    Signature:
1e4ecc523ac9dbaa05a67386f93da5090c00cb6969b148c1a8c62960812952b6
2022-05-12 22:21:52,346 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:52,347 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:52,347 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:52,348 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:53,694 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:21:53,695 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'W6EKVNJYVFCYJ797', 'x-amz-id-2': 'oN5WZnkPubf1hvpvXMZJe3H0WLMbaZels045so5uJsP93Z/aEChTv28/qM5bhjlqgRIAwUGXJlo=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:21:52 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:53,695 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1W6EKVNJYVFCYJ797oN5WZnkPubf1hvpvXMZJe3H0WLMbaZels045so5uJsP93Z/aEChTv28/qM5bhjlqgRIAwUGXJlo='
2022-05-12 22:21:53,697 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:53,697 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:53,697 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:53,697 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:53,697 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,697 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:53,699 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:53,699 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,699 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,699 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:53,699 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:53,699 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,699 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,699 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:53,700 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_1%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222153Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:53,700 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222153Z
20220512/eu-central-1/s3/aws4_request
d42bfadb2887364df7223b8cf22d2155a3d445da4ed17c7da6631b9334670ef1
2022-05-12 22:21:53,700 botocore.auth DEBUG    Signature:
c249a05831ffa85445f524f8fab94c11866d57edbb4353e2f9d17393111acfe0
2022-05-12 22:21:53,700 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:53,700 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:53,700 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:53,700 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:54,661 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,662 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'k5zCWCb2Ax9zlXFus+Udr9VUsN6Wkiwf+3QgmbiqVkCWeHPh2B99yWmZKiCPerqm1xA8j1Ceo88=', 'x-amz-request-id': 'XNTZVZG9MHZJSF11', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,662 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_1/1000/urlfalseeopatches/30PTU_3_1/2022-05-12T11:04:03.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/bbox.pkl2022-05-12T11:04:23.000Z"f216c56cedb9629e4ca10bc42be4f89b"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/timestamp.pkl2022-05-12T11:04:23.000Z"d20f57f9b0299badcdaec2f120421aa8"2089e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/data/eopatches/30PTU_3_1/mask/'
2022-05-12 22:21:54,663 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,663 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,663 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,663 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:54,664 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,664 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,664 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,664 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,664 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,664 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,664 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,664 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,664 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,664 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,664 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,665 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_1/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,665 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,665 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,665 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,665 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,665 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,665 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,665 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,665 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,665 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_1%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,665 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
1cab5d62b887a77a18415994a67fddb16df6fcce332138096d01caf0c80e3d4b
2022-05-12 22:21:54,665 botocore.auth DEBUG    Signature:
7538837c7754bd1c556688b0832a901e3b806017abbd60cc297fefcb95385734
2022-05-12 22:21:54,665 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,666 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,666 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,756 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,757 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HVTc2NfzhWrWv7FCDUnXlMWLPCegoyZvPVTzFdh2wA+foH3/+1OXfv9wbJSuaF+4jt1H05zA9s0=', 'x-amz-request-id': 'XNTZKEB73WFBHMW0', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,757 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_1/data/1000/urlfalseeopatches/30PTU_3_1/data/2022-05-12T11:04:14.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/data/BANDS.npy2022-05-12T11:04:23.000Z"28a74130898a2c725c9f77225b96fadd-29"242000128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/data/CLP.npy2022-05-12T11:04:23.000Z"0ad066d03dcf8945d5ee800490dc8253-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,758 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,758 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,759 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,759 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_1/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,759 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,759 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,759 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,760 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,760 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_1%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,760 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
7215d1eea20996db36f2188ee698d3417ee9ce04b9951ac58e1abf8dfdce84de
2022-05-12 22:21:54,760 botocore.auth DEBUG    Signature:
9b742357831a48c2512d1a498159181d189be556976def8b6d55e56a5214777e
2022-05-12 22:21:54,760 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,760 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,760 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,848 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,849 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'cZXtjrFvEHxgpfTEB2tRGBYmejO4nkh4RVPANfVQecHXVXzYDSWm73ZIpghc4i1LvQ8rcBtXpig=', 'x-amz-request-id': 'XNTPMH3V18NXBAJP', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,849 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_1/mask/1000/urlfalseeopatches/30PTU_3_1/mask/2022-05-12T11:04:10.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/mask/CLM.npy2022-05-12T11:04:23.000Z"bcefa9aacb1cb323ee3ba6fbb834d72e-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/mask/IS_DATA.npy2022-05-12T11:04:23.000Z"b325fca684ab8a8fdd2ce5098e8276ed-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,850 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,856 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,857 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,857 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,857 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,859 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,860 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,861 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,872 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,874 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,875 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,875 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,878 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,880 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,881 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,874 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,876 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,877 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,882 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,882 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,886 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,887 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,887 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,888 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,888 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,888 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,891 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,891 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:54,891 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:54,891 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,891 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,891 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
a82e814b25612269405937a76de7514bbf26d6a1d728db525e30499d04534d60
2022-05-12 22:21:54,891 botocore.auth DEBUG    Signature:
a737c668a772ef766124a9e8628624b118e267a402a5b03ec08a73a384a13a62
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,892 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,892 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,894 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,897 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,902 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,903 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,906 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,907 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,908 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,908 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,909 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,909 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,909 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,910 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,910 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,910 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,914 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,914 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,914 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,914 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,914 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,916 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/bbox.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,915 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,916 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,917 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,917 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,917 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,917 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,917 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,918 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,918 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,918 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,918 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,918 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,919 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,920 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,921 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,921 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,921 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,921 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,921 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/bbox.pkl
2022-05-12 22:21:54,921 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,921 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:54,921 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,921 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,921 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/bbox.pkl
2022-05-12 22:21:54,921 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:54,921 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:54,922 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,922 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,922 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,922 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:54,922 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,922 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,922 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,922 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/bbox.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,923 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,923 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask/IS_DATA.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,923 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,923 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,923 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
e78a52b153b899ec1d8807f49244e9a640e4c40ecfd33ae1684e3acd22b456fb
2022-05-12 22:21:54,923 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data/CLP.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,923 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
4b487d03881e192d832399b3f95f26cd15faf19ee7e136812d06cefe879c398c
2022-05-12 22:21:54,923 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,923 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:54,923 botocore.auth DEBUG    Signature:
110b7c17d2abcfdf4b0a8e74c77c7c8c00d939ca3bd1154cdeb94bbd651311de
2022-05-12 22:21:54,923 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
4be6c370ac6ef435e8a523e6df1ed6b67415dc9546d09d59a70d8e240ecc2a37
2022-05-12 22:21:54,923 botocore.auth DEBUG    Signature:
e391df9ca96f7864e274460d916b60983cbfda44791e1a381a811eafe45f4898
2022-05-12 22:21:54,923 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/timestamp.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,923 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:54,923 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,924 botocore.auth DEBUG    Signature:
24474fe629424204b8cfc3f1690f872d1510a0cdff7b39eb79e11fcfb0acad74
2022-05-12 22:21:54,924 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,924 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,924 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,924 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,925 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,925 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,925 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,925 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask/CLM.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,925 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,925 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,925 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,925 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,925 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
24442e550aefcb162345e0d394202aae3afd19a368b5553b0d7f13706608364f
2022-05-12 22:21:54,925 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,926 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,926 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,926 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,926 botocore.auth DEBUG    Signature:
e8570f99936fc9a18689b1ae4348eb2086735042cee893779d38208307f1b78b
2022-05-12 22:21:54,926 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,927 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,927 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,927 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,927 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,927 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,927 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,927 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,927 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,927 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,928 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/timestamp.pkl
2022-05-12 22:21:54,928 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,928 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/timestamp.pkl
2022-05-12 22:21:54,928 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,928 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,928 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/timestamp.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,928 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
fda9d17a67e12cf80d3664c02d4efc7eb95f730de72de281e5ee612e47478f3c
2022-05-12 22:21:54,928 botocore.auth DEBUG    Signature:
fb324a7390bedadb7bb4f941fab8643d1bb5a6d6e5c2224ae34c07b83fc3fdfe
2022-05-12 22:21:54,928 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,928 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,928 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,929 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,929 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:55,603 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,603 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K9T0FY1P28Z43Q', 'x-amz-id-2': 'wZokto2UZIxzoP9kcz5Jl0144JQnmLKFI8aw/ftF83SXLE5UC+CcrZd+lkzqOfEmt8JbDkNeBIE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,604 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,605 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,605 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,605 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,606 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,607 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,607 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,607 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,607 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,607 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,607 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,607 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,607 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,607 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,607 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,607 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,607 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,607 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,607 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,608 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,608 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,608 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,608 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,616 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask/IS_DATA.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,616 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K1YATQT4NMVY47', 'x-amz-id-2': 'JKxHnD+NGFAVwNAOaeb0ZQq/x0ur5kkaJyl/aeFL7KG6+HL4dO0iYN34Bk8jmWS9kot2jloVKt0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,616 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,621 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,622 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,622 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,622 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,622 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,622 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/bbox.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,622 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KD5F197T0VDSE6', 'x-amz-id-2': 'TXgo0fqRlUE/yU8ILT69WZpT93tyEOai4bXVzi0X2fkTwXS9keTDyg6v9Mx8QtfadfmUoGRB/Ag=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,622 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,624 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,625 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,627 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,627 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,627 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,627 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,627 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,627 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,627 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,628 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,628 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,628 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data/CLP.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,628 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KD2KVB313MRXW3', 'x-amz-id-2': 'ae43VTwF/kw3Ije8+RlnnwdQJQUIL8iqE+sO9mVP/mXl5kRi1pxN9Q0LJPircZkjcLyz74rt04k=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,628 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,631 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,632 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,632 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,632 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,632 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,633 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,633 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,633 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,633 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,633 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,633 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,634 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,634 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,634 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,635 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,635 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,635 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,635 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,635 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,635 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,635 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,635 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,639 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/timestamp.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,639 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K3MF8M5034965K', 'x-amz-id-2': 'apphzjn7BAKX+mwCMa8wDkNd0eYay/10LuW67maV165X57KHKtwe57ko09z3p+6LwpeqX/lu+KA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,639 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,642 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,642 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,642 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,642 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,642 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,642 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,642 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,643 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,643 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,643 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,643 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,643 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,644 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,644 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,644 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,644 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,644 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,644 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,645 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,645 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,645 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,645 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,654 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask/CLM.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,654 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KB1NAXV098B655', 'x-amz-id-2': 'kcsBjy22u47Z4T14qd909v2NDDvc3+JJKkG+vuboUAKz594Hc9RziHIw/uFqxHf43MIABkAO1gg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,654 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,657 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,657 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,658 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,658 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,658 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,658 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,659 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,659 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,659 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,659 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,659 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,659 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,659 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:56,636 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,637 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JTKHZNT9CMC1Y6', 'x-amz-id-2': 'SVNj+WBALPYinMKM14iID6E1gIfh6AkxNVHSbREi8MOHtyY65yafAi2RAxRyGjftz0GwscD+LxY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,637 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,637 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,637 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,638 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,638 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,638 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,638 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,638 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,638 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,638 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,639 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,639 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,639 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,639 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,641 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,641 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JYMJ7771X7BNTX', 'x-amz-id-2': 'iY8XfVpqiN/QkFeHb7TlHB3MsdTRY5JL/MO2r4b995j1/kmiSYhHYi9k7IOATw+Y7QLe+i7etAs=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,641 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,642 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,642 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,642 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,642 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,642 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,642 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,642 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,642 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,642 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,642 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,642 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,643 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,643 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,647 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,648 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JVEM49DN4ZTCGJ', 'x-amz-id-2': 'ZUOb1XO6fXcp6ixBZHDmGVV2fO6VGUumiT63zWia+IAnPzO5Fh+Ifkn3bdDjjgN7gw6NVL9zx9Q=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,648 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,648 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,648 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,648 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,648 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,648 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,648 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,649 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,649 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,649 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,649 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,649 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,649 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,650 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JRAF674NCE17SM', 'x-amz-id-2': 'av3vPqgL5iLhEDWJK3jy4XzjQOHEjmZH8Ooht+/Q6SJll0FSvqv8CIv+rAo2JvCeVWddF7iba/I=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,650 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,650 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,650 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,651 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,651 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,651 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,651 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,651 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,651 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,651 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,651 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,652 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,652 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,652 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,652 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,652 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,652 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,658 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,659 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JPFEWCA30Z09XX', 'x-amz-id-2': 'f8NqqHzxPYREx2I9Zsmt8deWfdNmZ4j8mo65CZ1V3tb2j3XfamE1sHY6Kczlk/mWlEbv0JEtHMI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,659 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,659 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,659 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,659 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,659 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,660 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,660 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,660 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,660 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,660 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,661 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,661 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,661 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,661 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,661 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,661 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,661 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,662 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,662 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,662 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,663 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JNTXCKJMY2CNJD', 'x-amz-id-2': 'Echu9hYmSWoSYtFuANQkVf5B4COkLFsHFuCKAaSIq3FNbpvXV/wd+9jVAx6mc6ptOvOFSPGfHMM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,663 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,663 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,663 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,663 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,663 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,663 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,663 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,664 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,664 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,664 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,664 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,664 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,664 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,664 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,665 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,665 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,601 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,601 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'wQyyrGT50WgNjHCrOHN8/0HNnjvwn3KFoz1UO7zi3Vl+FC9bWLLe1fdpMMgaFpHwQkzyFBMm29Y=', 'x-amz-request-id': '4P7TKKQQYH9WSATN', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,601 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,601 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,602 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,602 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,602 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,602 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,602 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,602 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,603 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,603 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,603 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
acc87606e5af34615b245d73913082d395eac67a4f1672ba4dc7192b08c32d52
2022-05-12 22:21:57,603 botocore.auth DEBUG    Signature:
1d4bb24797dde3bf4617bc4755440c8054485f5ae527845edc6aad1c18848791
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,603 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,603 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,603 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,612 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,613 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'L2Lo/9B/i/Z4AKQiO8HPoEkTvkp8sFEJPgWYseeQvvyTUpCbF8GINDRgHYz6Ru+bO6RsKM6TUwo=', 'x-amz-request-id': '4P7K84F8EFBR7K4T', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,613 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,613 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,613 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,613 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,613 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,613 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,613 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,613 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,614 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,614 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,614 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,614 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,614 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,614 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,614 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,614 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,614 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,614 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,614 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b1ac0d1cb9658f4078fe61b9f5e9d924009e386e4b2b3b246f0073bcd179bd22
2022-05-12 22:21:57,615 botocore.auth DEBUG    Signature:
ccc2e5752b3cdd4fa3ab051556e25811ec7340453d88ecaa2caf7a6d465b85c2
2022-05-12 22:21:57,615 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,615 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,615 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,615 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,616 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,616 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'aEgQ4eF3hgU1BpJKMGF2AklHOEZRaZjOuUPmmNH+4bywaKL+e8PxgTLkhhPmt6L1N63CsUawnCk=', 'x-amz-request-id': '4P7RTH7MVX56EQRF', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,617 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,617 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,617 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,617 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,617 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,617 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,618 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,618 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,618 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,618 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b9d847a575b19ef86cca662cf8e083c1a02f2422d7eeca686c1efd93ead690b7
2022-05-12 22:21:57,618 botocore.auth DEBUG    Signature:
50614a8be5e19ed6478d629e2c05f5911b8634542a537b828de4fac638846beb
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,618 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,619 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,620 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,620 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'CLRwwy3RONVm1Vr7tYSSl5vWTjc+/3CL5lenXTytlFccTw8cD5VnTtYHY/E2dSlnL4+PtTsSO6U=', 'x-amz-request-id': '4P7N32TPAG8V71K5', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,620 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,620 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,620 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,621 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,621 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,621 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,621 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,622 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,622 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,622 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,622 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
c5cca270a6688cdaf44bbc47f6b0ef0868e556e6e32f2e744e0f02480f897a19
2022-05-12 22:21:57,622 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+lXH0N8mewb1sTwS716isB6vtcREHRuugkJZXYp6HVWfFyCpLcjQMr4SmVuPaddz74AG5CZP8p4=', 'x-amz-request-id': '4P7JSV0YYQ0P744A', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,622 botocore.auth DEBUG    Signature:
f1cbfaa14e45c13d0ee9eb03bd11175ae9421f6d1e5cf17c1f1d5bc95c7b3517
2022-05-12 22:21:57,622 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,622 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,623 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,623 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,628 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,628 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,628 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/timestamp.pkl
2022-05-12 22:21:57,623 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,628 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,629 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,629 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'LConAn4Ily9lIJjtaKPmzdroRrEbEk3n2HjSadm05HlYJNlkXxf2SLOvh/1YLgxMeY4TNHcLIgQ=', 'x-amz-request-id': '4P7V42P51Z4J07K6', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,629 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,629 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,623 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,629 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,629 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,630 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,630 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,630 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,630 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,630 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,631 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,631 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/timestamp.pkl
2022-05-12 22:21:57,631 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,631 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/timestamp.pkl
2022-05-12 22:21:57,631 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/bbox.pkl
2022-05-12 22:21:57,631 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,631 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,632 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,632 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,632 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d1dedfffce6378acd02f6b6553d3ace2f4385d891886b740c3652d46cb18f807
2022-05-12 22:21:57,632 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,632 botocore.auth DEBUG    Signature:
86461b286aacab89f01ad9c25475b70e8fd54321bba35d1af922f864151dae1f
2022-05-12 22:21:57,632 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,632 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,632 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,632 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,633 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,633 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,633 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,633 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,634 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/bbox.pkl
2022-05-12 22:21:57,634 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/bbox.pkl
2022-05-12 22:21:57,634 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,634 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,634 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
8c17186d705011ab0438ae1620f11abaa1528fac70c0886dea33d16902d873af
2022-05-12 22:21:57,634 botocore.auth DEBUG    Signature:
fa3279cc5bda76fa4aad678c822ad8ae91bb4c74e4b258934f20a77562c54eb4
2022-05-12 22:21:57,634 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,634 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,634 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,634 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,691 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask/CLM.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,691 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '0XBS/cwy3SW+1qc+mxAUX9DMZ8Shh578IBqeuj/Ix4l6YZNCkPeZ5iKrBzWRwYxAdUBxQ5Qttqo=', 'x-amz-request-id': '4P7HD18WARCJFPDC', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"bcefa9aacb1cb323ee3ba6fbb834d72e-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,691 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,694 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,694 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,694 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,694 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,694 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,695 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,695 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,695 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,695 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,697 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,697 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,698 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,699 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask/IS_DATA.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,699 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'IhSsL8dQ0mvJlP2xacKSaJ6Y2mFh4Fn8U2OpR020mobJt4GyTcPJZcUyoQPtggXGAWb3VYUPmDY=', 'x-amz-request-id': '4P7Q409BD256CYH7', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"b325fca684ab8a8fdd2ce5098e8276ed-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,699 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,700 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,700 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,700 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,700 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,699 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,701 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,701 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,702 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,701 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,702 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,702 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,701 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,701 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,711 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,707 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,711 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'xTfvOf+aeXgq53tI6VoFGAUGRSZNsK8JnHvMevuTkRNJfqHYbFcI837NNggg6PW1iMLnb/AtN+c=', 'x-amz-request-id': '4P7W9TC8XFTX9BBP', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '242000128'}
2022-05-12 22:21:57,711 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,712 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,712 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,710 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,707 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,713 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,713 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,713 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data/CLP.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,702 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=35>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,713 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,715 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
86bed888d2c1b950b418f357542644e0d9a602d2819461f95ffb9f7c029ec0e5
2022-05-12 22:21:57,715 botocore.auth DEBUG    Signature:
9122a6a088c7b95a074b209bb4b6e2cfcc00016e3df7d4a3d455594fad357aa8
2022-05-12 22:21:57,715 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,715 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,715 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,715 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,712 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,716 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,711 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,716 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,717 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,717 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,717 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,717 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,717 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
290299e4afc0c7f89601ce0bb5cec4795433e7e5341a5c7ff916659546ced085
2022-05-12 22:21:57,717 botocore.auth DEBUG    Signature:
29c37feea8cfd71e204ac906c39814e37ac98fb409b6838f7f7fed1d643b78e6
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,718 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,718 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,718 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,719 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/timestamp.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,720 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'yyyL2emSJSwySGCGfng8IkyqbVjHoEz9oQnwUhP8W0ICjJk11wua/E3kDcbxV5mHQ4olyct7+FA=', 'x-amz-request-id': '4P7P0DM14J00GSN0', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"d20f57f9b0299badcdaec2f120421aa8"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '2089'}
2022-05-12 22:21:57,720 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,701 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,721 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=35>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,714 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ysk0ZxkvpC3GbbJyttSN6l4hGVnBtXz/iw+U4+BpfRwDqg9FFPQYsSsAtq54XP2zbJLxCJ/w74Q=', 'x-amz-request-id': '4P7SG5EEK53DV4AK', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"0ad066d03dcf8945d5ee800490dc8253-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,713 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,721 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=35>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,723 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,722 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,724 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,722 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,725 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,722 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,721 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,724 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,724 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,725 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/bbox.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,727 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1G22dcUWIvj3cZ0SHtJlBc0PkMCePn/oebTo41ffTdGmY5f09mnmic0toBCn0up2cybA3uqlH90=', 'x-amz-request-id': '4P7RBBXFNWG66ERV', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"f216c56cedb9629e4ca10bc42be4f89b"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,727 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,730 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,730 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,727 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,713 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,731 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,725 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,729 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,731 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,732 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,731 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,731 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,731 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,734 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,727 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,735 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,733 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,735 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,736 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=35>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,734 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/bbox.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,731 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/timestamp.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,730 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,733 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,738 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/timestamp.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,725 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,743 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,743 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,744 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,744 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,745 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/bbox.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,747 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/bbox.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,747 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/bbox.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/bbox.pkl', 'fileobj': <_io.BufferedRandom name=37>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,743 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,745 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,748 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,747 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,749 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,746 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,738 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/timestamp.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,749 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,751 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,751 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
eadf118969603d13404751a6e20cc453153d3a89d943db8c2db03501abeb2442
2022-05-12 22:21:57,751 botocore.auth DEBUG    Signature:
29a845169d7ea4cf23483a902a289d08df7efcfe1f9a13baf6c6c0feff83c41f
2022-05-12 22:21:57,750 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,752 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,752 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b54b5b4afbbc285f4d9af2d6a44bb5627c3a491759e3a69cd2013e98c8786d0e
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,752 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,753 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,752 botocore.auth DEBUG    Signature:
f2c615b06f2b0675b2bb498552d72c24b40dac6822562e410266d52f446655f4
2022-05-12 22:21:57,752 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,755 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,756 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,756 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,756 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,756 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
3d514b95dd7e2ee338d6e70da64e25b624160da1c20fde9acbc7ed3f49b70281
2022-05-12 22:21:57,756 botocore.auth DEBUG    Signature:
d14c16cac9891c609649613bc5331e7149bf233d8f6255d5a29fa2aa3599d59c
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,755 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,755 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,756 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,759 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,757 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,750 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/timestamp.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/timestamp.pkl', 'fileobj': <_io.BufferedRandom name=38>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) about to wait for the following futures []
2022-05-12 22:21:57,758 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) about to wait for the following futures []
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,759 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,768 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=33>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,760 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,765 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,765 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) done waiting for dependent futures
2022-05-12 22:21:57,768 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=33554432-41943039'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 33554432, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,759 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,754 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,769 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,752 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,770 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,771 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=33>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
832e528a607576318651435525ac1c4113f0ecc204e1d83efa42ca0761a7c37a
2022-05-12 22:21:57,770 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,773 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask/IS_DATA.npy
2022-05-12 22:21:57,769 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.auth DEBUG    Signature:
c0c2fcb1a43cc53ae63ea5bb326bb75bb0c925e2d798b33225716ee825c6c6c0
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,776 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/bbox.pkl
2022-05-12 22:21:57,773 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,774 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) about to wait for the following futures []
2022-05-12 22:21:57,774 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,768 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/timestamp.pkl
2022-05-12 22:21:57,769 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
764375d1453a34a7b8a2b85096965d82daf74bbfc95810cf21633abc16931353
2022-05-12 22:21:57,778 botocore.auth DEBUG    Signature:
0e7024c2dd51c53a9adab4cea73383004c2c40783d598ac0a4922493fcdd6c53
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) done waiting for dependent futures
2022-05-12 22:21:57,761 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) done waiting for dependent futures
2022-05-12 22:21:57,777 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=33>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,774 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask/CLM.npy
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=33>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,780 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,781 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,779 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=41943040-50331647'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 41943040, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,772 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,760 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,780 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,782 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,782 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
7f118e4420704dba46682cee9ac5c21c9c7b478ffc88142f64d3e426908ec180
2022-05-12 22:21:57,782 botocore.auth DEBUG    Signature:
5c98cd63f9ed32ab418d48b732367bacaf1a86c392dd5e311c7ee05136a3c752
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,783 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,783 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,779 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=25165824-33554431'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,784 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,779 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,785 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,785 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) about to wait for the following futures []
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,782 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,786 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,781 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,778 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/bbox.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,778 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,788 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,785 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,785 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) done waiting for dependent futures
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,789 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,788 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=58720256-67108863'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 58720256, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,789 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,790 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
64aa3efe0c07a21bf28f5e835d8205059b624ba7fe08664923a1e39ae7fc7114
2022-05-12 22:21:57,782 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,790 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) about to wait for the following futures []
2022-05-12 22:21:57,790 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) done waiting for dependent futures
2022-05-12 22:21:57,789 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/timestamp.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,789 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=33554432-41943039', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,782 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,776 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,790 botocore.auth DEBUG    Signature:
aaeadfe85e670905368b5c0dc78b21afe760b366e5a8bf6d9de936fd319575d0
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,792 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,788 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,790 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=50331648-58720255'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 50331648, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,795 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,788 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,796 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,791 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
8e68bd9982e147c8cb2aeaa7d0c7a6ac87d02c14d3c326b9f6e7e3c69a816eb1
2022-05-12 22:21:57,796 botocore.auth DEBUG    Signature:
ef8712a1298fbc559511da1b1f84b9964ca56a355e7efcc0b2412137f5370ac5
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-33554431', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/bbox.pkl
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=50331648-58720255', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,798 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,798 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,800 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,800 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,797 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/bbox.pkl
2022-05-12 22:21:57,799 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) about to wait for the following futures []
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/timestamp.pkl
2022-05-12 22:21:57,801 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/timestamp.pkl
2022-05-12 22:21:57,798 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,801 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
5679bdbb1a7c69f5ea2bc92afc1dc4534e081c6ab0eac2ccfae8f99d72b540e4
2022-05-12 22:21:57,800 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,800 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,802 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) about to wait for the following futures []
2022-05-12 22:21:57,801 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,800 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,799 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,801 botocore.auth DEBUG    Signature:
e22f8286a2a5e77730740bdc4bfadc31d3624e0ebcda5009a80af516cba2335e
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,803 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,803 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=41943040-50331647', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,803 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,801 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) done waiting for dependent futures
2022-05-12 22:21:57,804 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=75497472-83886079'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 75497472, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,802 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) done waiting for dependent futures
2022-05-12 22:21:57,802 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
12585c7b8e4e1ecc51885c13057f5340fea9c5982c99da4c200b497e78091225
2022-05-12 22:21:57,800 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d86356f8e7e5a0d5e2fc729c197a7442d89668ec6cba931aa48588c7e93899d8
2022-05-12 22:21:57,804 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=67108864-75497471'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 67108864, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,806 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,803 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,805 botocore.auth DEBUG    Signature:
e8eaae0dedec6fe0e4803620c9ee2b44aa8c87eac0fc36f5b6c0a4a57564a429
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,806 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
c9c063aadac96a953f3c3419c9b01784b424607afaea67604b47dd8847a41682
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,806 botocore.auth DEBUG    Signature:
a814909dde122399290fe3a9e4c1e88f4562f3ee5d96e95fd04f990ea2e7acef
2022-05-12 22:21:57,807 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=50331648-58720255
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,809 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
5d0e18e8f06138f0bee1b36aa20b21a6e50643441577956bf9ff0ec9706a76c6
2022-05-12 22:21:57,807 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,808 botocore.auth DEBUG    Signature:
d5ca37b571a1f73690fc26e018575bc2c6c2ddbf2af0b8fbd44d621900005e42
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,809 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,807 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,809 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,809 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=33554432-41943039
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,811 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,809 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/CLP.npy
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,809 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,811 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
5ed20160648f1cec6488f642d70e1962d385257dacb572c680a760ebdf12e595
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,810 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
9bb1aae9151dbc44ef9d2c07001874d786f97e2698acc879f04eb8fa44c08230
2022-05-12 22:21:57,811 botocore.auth DEBUG    Signature:
b14c20605965b17474883defb153455305bcd3faa0e3a29197070beacdb645f0
2022-05-12 22:21:57,810 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,810 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
f7716d03048fbb1fb4c248a370566678bb9935b7902a50bc9bfb640b95a76858
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,809 botocore.auth DEBUG    Signature:
12a374af6a72b4bdfd856a0ac3920c74b3f331e8061542865d2bdf498bf726ea
2022-05-12 22:21:57,811 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,811 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,812 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,811 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-33554431
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,813 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
ae247bfcaacc25678bcef525d18b0bd11b457cb2bfee28bc094822a45790bc08
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,813 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,812 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,812 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,812 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,812 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,813 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,811 botocore.auth DEBUG    Signature:
68830813bec30a7f480f91f3a06024d9293cc85dd6f219dbe1d24a1d1803d980
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,813 botocore.auth DEBUG    Signature:
8d815a25d3eab7f98798c78b6505e10474b712b1eadb1777822b9608ef6629d9
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,812 botocore.auth DEBUG    Signature:
8b1c0635fa159f455ff11877164265c6503262a230393df83665abab356129f5
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=58720256-67108863', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,813 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,817 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,814 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
e08d204a1ec375713b5a7da2426727f52f0a8a3dc6c6ec9815773345f7f3698b
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,818 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,818 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,817 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,814 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,817 botocore.auth DEBUG    Signature:
5845b6d18e8a146c983c4f4b3b472d51d05af70fb80d8885f60c7076460d5693
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,817 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,819 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,817 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,819 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,818 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,817 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,820 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,816 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,816 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,820 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,820 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=41943040-50331647
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,821 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
94f18ad427d96dac71228d428441b6a67dc4dcfbc4116ae09b995315870602f3
2022-05-12 22:21:57,820 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,820 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,819 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,820 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,821 urllib3.connectionpool DEBUG    Starting new HTTPS connection (6): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,820 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,821 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,821 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,821 urllib3.connectionpool DEBUG    Starting new HTTPS connection (5): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,821 botocore.auth DEBUG    Signature:
e8d13a67fa8d07180c90939bf6f3fff60694ecb246a92068931bd7533cf13a93
2022-05-12 22:21:57,822 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,822 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,822 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,822 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=67108864-75497471', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,822 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,822 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,821 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,823 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,823 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=75497472-83886079', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,823 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,823 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,823 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,824 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,824 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,824 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=58720256-67108863
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,824 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
92d686ebc26268c0dc87fda2f895fa2d540fd484077cccc4402d105d831117d3
2022-05-12 22:21:57,824 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,824 urllib3.connectionpool DEBUG    Starting new HTTPS connection (7): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,824 botocore.auth DEBUG    Signature:
73dd193842bb582c819c25d269ae990adf4e7c83d7eee11d065744fbe7d01f17
2022-05-12 22:21:57,825 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,824 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,824 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,825 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,824 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,825 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,825 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,825 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,825 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,826 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,826 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,826 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,826 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,826 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,826 urllib3.connectionpool DEBUG    Starting new HTTPS connection (8): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,826 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,826 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,826 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,827 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,827 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,827 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,827 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=67108864-75497471
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,827 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,827 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:21:57,827 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
9359f9afe696ba6cc0dd97265f86d7140115162b9e6d1c71bdcef88208a67d8a
2022-05-12 22:21:57,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,827 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,827 botocore.auth DEBUG    Signature:
b0ae6fb8042902d729cc743ff90a84cbfa4ca1e87335bc36ff6c699d3355ffb3
2022-05-12 22:21:57,828 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,828 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=75497472-83886079
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,828 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,828 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
228dbaa7cededd1625f7574d04212efb987cc824e771633393771bbb184e7137
2022-05-12 22:21:57,828 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,828 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,828 botocore.auth DEBUG    Signature:
7be8d4e29d0fe3d240f88ec3188ebfae1ec28d989c7b2385fc89f9814a9be7f7
2022-05-12 22:21:57,828 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,828 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,828 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,828 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,829 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,829 urllib3.connectionpool DEBUG    Starting new HTTPS connection (9): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,829 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,829 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,829 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,829 urllib3.connectionpool DEBUG    Starting new HTTPS connection (10): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,829 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,830 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,830 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,830 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,911 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,912 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '85V9iXMkoPd7bxEbV/+e+adTNO0XxW/7Rpkfx9bUDQBf+ZsYx4zkgOiIduCoVYwRLw07UEEojeY=', 'x-amz-request-id': '4P7V8702ZXMGXPJV', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"bcefa9aacb1cb323ee3ba6fbb834d72e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,912 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,912 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,913 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,913 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,940 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,940 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'C15vQIlEtXDhGvWX7Q2Oni5BsvCeQRu7RkhWmebxlMu0FHMWpu0hfvVu+860ycHTXf1v0UfV2/c=', 'x-amz-request-id': '4P7W1MG0BD2Q7FZS', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"b325fca684ab8a8fdd2ce5098e8276ed-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,940 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,941 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,941 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,942 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/timestamp.pkl HTTP/1.1" 200 2089
2022-05-12 22:21:57,942 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,942 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'sSdFMvKI6zmyyMgnPhjmOw8+sNQuQbl09NNd1cdwWl4vowOia7eadsi9cszmD5Qo0RvoV5R8vNg=', 'x-amz-request-id': '4P7NCBCNX0FGH4CT', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"d20f57f9b0299badcdaec2f120421aa8"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '2089'}
2022-05-12 22:21:57,943 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,943 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,944 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,944 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,944 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 0}
2022-05-12 22:21:57,944 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,944 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,945 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,966 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,967 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '484MBnjDXVLWFrI77P9Z3hY0Os+tALloeJZdnp+0TZO9euWNGYSd9wI7/R4VK9wZYbX5xcasCKk=', 'x-amz-request-id': '4P7S1SR72JXWKST1', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,967 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,967 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,967 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,967 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,984 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/bbox.pkl HTTP/1.1" 200 184
2022-05-12 22:21:57,984 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'MXh63FACJ9h9t07FozGbxcXK7L7136iFdfq3biHilt0gCR2358ylIRO6PbFj/Mm4Jmr/WLyS1aE=', 'x-amz-request-id': '4P7VVA851G4FBJBN', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"f216c56cedb9629e4ca10bc42be4f89b"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,984 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,985 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,985 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,985 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 0}
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,986 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,986 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:58,025 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:58,025 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'JcO1DvwQtno78jezvG7d8AfDM4fD/XOegwUUsK0WQHvHzHBX7q0gqUAAvXsKwJxtF6P/1f5fGR4=', 'x-amz-request-id': '4P7Z2HMFHK7XR3CX', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"0ad066d03dcf8945d5ee800490dc8253-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:58,025 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:58,026 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:58,026 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:58,026 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:59,677 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:21:59,677 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:59,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:21:59,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:21:59,678 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 8388608}
2022-05-12 22:21:59,679 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:01,307 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:01,307 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:01,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:01,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:01,308 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 0}
2022-05-12 22:22:01,309 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:01,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:01,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:01,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:01,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:01,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 0}
2022-05-12 22:22:01,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:04,498 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:04,498 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:04,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:04,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:04,499 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 8650752}
2022-05-12 22:22:04,499 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:04,645 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:04,645 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:04,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:04,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:04,646 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 16777216}
2022-05-12 22:22:04,646 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:06,794 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:06,794 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:06,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:06,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:06,795 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 262144}
2022-05-12 22:22:06,795 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:07,221 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:07,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:07,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 262144}
2022-05-12 22:22:07,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:07,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:07,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:07,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 17039360}
2022-05-12 22:22:07,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:08,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:08,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:08,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:08,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 8912896}
2022-05-12 22:22:08,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,900 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/mask/CLM.npy HTTP/1.1" 206 5084304
2022-05-12 22:22:08,901 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Pt05t1BZ5W8FiDS3c73dgKRpEk1JPglJNArvcLFibAoXczRH0ZSHVQiXe9ZR5FbywwKM749mGX8=', 'x-amz-request-id': '8ZJMNZF18CZY435J', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"bcefa9aacb1cb323ee3ba6fbb834d72e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:22:08,901 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,901 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,901 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,901 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,922 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,922 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NwxZN4p+rAcqXM2LLSkd9tRnOA4m+NDwrJ2BNjQ6HLtYY2/b/zQWGvimcB0/FGdeRZR5I8+mSnY=', 'x-amz-request-id': '8ZJNACY53XK2Y1ZQ', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 33554432-41943039/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,923 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,923 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,923 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,923 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,939 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,939 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'vtApJzI5dSW5kmX5m8JFNjv+MvxSmCQyL0XO1yfHC67W+MmhegUAQvodxJaWAf+5wG331mtsgKQ=', 'x-amz-request-id': '8ZJVSYN5D16V8VTH', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,940 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,940 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,940 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,940 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,999 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/CLP.npy HTTP/1.1" 206 5084304
2022-05-12 22:22:09,000 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'aOx2/OCHOh96aYCsH+Dqp4cwLGDoBryzr9KRoZK0l+uGukOQJqMmjAe1wqIqLVlfo2MEyM6hR8c=', 'x-amz-request-id': '8ZJGZ6RFK1KS9WHE', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"0ad066d03dcf8945d5ee800490dc8253-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:22:09,000 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,001 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,001 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,001 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,005 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,005 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1exmhZCUOb9IvWlNlRcDM7bhf+R+adMhtWE6pwKN64vvzapOjq8Wgjuzi3toxm8wr2TBJWuQUGs=', 'x-amz-request-id': '8ZJM58WJ8HV7XZN6', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"b325fca684ab8a8fdd2ce5098e8276ed-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,005 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,006 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,006 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,006 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,007 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,007 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ZUZtp3Uly0aNZIDN6fJ/saiKTWbeyVvotSJNTIp5Mp/TGwS+YUhZMLN7xdS0Cr9TrE43FdIvPOI=', 'x-amz-request-id': '8ZJYV7WFVXES6C04', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 58720256-67108863/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,007 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,009 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,009 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,010 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,049 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,049 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '10lZW7Y/8kd+PiEgTZCZJySf8NuLF+qmje7MVI8J+uZw5X0kOUTaRrQwS8tHqKw/SdF0Dbz43jQ=', 'x-amz-request-id': '8ZJTT1H40G41F5K4', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 50331648-58720255/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,049 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,050 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,050 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,050 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,082 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,082 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'KRz9CtUucFhEfTkVVMWZlbPFrtdfv7/ZYp1rwznJEQo738z7xkurEMPwbU+AXy4G9Yk2dAKajo4=', 'x-amz-request-id': '8ZJX41SD9JFF9QDW', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,082 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,083 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,083 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,083 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,128 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,128 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'GBSXAPejtQc1EFx72Sv3Azn9ZUeMRcqVN9jfV95/UGvVhqFvQ2sG4YCe35ACGVAD70JDpI2SNlc=', 'x-amz-request-id': '8ZJX2Z3AW8DCHBKB', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"bcefa9aacb1cb323ee3ba6fbb834d72e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,128 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,129 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,129 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,129 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,135 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,135 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jsDnUbjg749F4oAf+j4m02ZiGdE5oqv+ck4VOZGOJoV5yT08FHhxtIizqtW+WSzzwykRM3ArJF0=', 'x-amz-request-id': '8ZJXSW2AAENGPK45', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 67108864-75497471/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,135 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,136 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,136 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,136 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,237 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,237 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'yrKHzJpoKOCwWTWEn/KDhr7UcEzWSqqwIINB/fLXkWgLMt/f8vXUP33t+ir+BBT2Uk8tmO5u58c=', 'x-amz-request-id': 'MCAHN8BB6J42609K', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-33554431/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,237 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,238 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,238 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,238 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,318 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,318 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ItM34wQ7PRA0xAHgN0E8Bjgxv9wiamoymHLFUd1Kwir6sMiaeKnelIPR3UJfwZUsC37ip0lQwkY=', 'x-amz-request-id': 'MCAYP5HDKNW658NN', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"0ad066d03dcf8945d5ee800490dc8253-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,318 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,319 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,319 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,319 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,319 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,320 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qJkDxz+VaVnEd9D4TpX6iM6FoGSacPhtqgT/BF2E9kOgeCMS4EcZtzmLuU0LwyjNB3XK5mZIwjI=', 'x-amz-request-id': 'MCAHEPSC00PS3VKB', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 41943040-50331647/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,320 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,320 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,320 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,320 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,370 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/mask/IS_DATA.npy HTTP/1.1" 206 5084304
2022-05-12 22:22:09,371 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'wBhYQrVNSwICC3nDBC2TCpo9QJvmSXOS2fKuQ+1tWxT6BGmXuLQlqRhvBqJApObYCDcy7/Z/qkU=', 'x-amz-request-id': 'MCAMMP6G4JXWZD5F', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"b325fca684ab8a8fdd2ce5098e8276ed-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:22:09,371 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,371 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,372 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,372 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,621 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,622 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'lmlhfWcTbCTvGaTsRTvbiaF7AndZFN09AacrfH+vxj00WT/xE4TuFnGq4/9FC0ZD1NlAEvdpUI4=', 'x-amz-request-id': 'MCAQV7PVAJ1VNSWM', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"bcefa9aacb1cb323ee3ba6fbb834d72e-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,622 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,623 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,623 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,623 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,646 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,646 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'JK7NaNCoha0CLmvGcQGZfDxaPMy+eFJE4ORoDtuD4uiGsBVraSrdsvGJ3OToRnF3RmDbgkrlVac=', 'x-amz-request-id': 'MCAKDYY96TBE01DJ', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"0ad066d03dcf8945d5ee800490dc8253-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,646 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,647 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,647 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,647 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,708 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,708 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'GQvs7bE9ck6qmSSwJV6dnvzJbqNqkXa7tR6l4tiogE7dx7+mybc3jeQbM5vH7hCFFVa4e9oiPHA=', 'x-amz-request-id': 'MCAP8GA54SGASA7F', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"b325fca684ab8a8fdd2ce5098e8276ed-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,709 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,710 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,710 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,710 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:10,623 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:10,623 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'KNZiB8up+X4oocpxtR3GqSvhinoozowpmkuAOr0+97qYu3oaBaCBImFUGXItiGwJA9Ks3OaNehE=', 'x-amz-request-id': 'YV0Z4DD1043N59Y6', 'Date': 'Thu, 12 May 2022 22:22:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 75497472-83886079/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:10,623 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:10,624 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:10,624 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:10,624 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:17,923 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:17,923 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:17,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:17,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:17,924 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 17301504}
2022-05-12 22:22:17,924 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:18,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:18,791 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:18,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:18,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:18,791 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 524288}
2022-05-12 22:22:18,792 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:21,870 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:21,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:21,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:21,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:21,872 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 524288}
2022-05-12 22:22:21,872 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:22,285 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58720256}) to executor  for transfer request: 0.
2022-05-12 22:22:22,285 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:22,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) about to wait for the following futures []
2022-05-12 22:22:22,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) done waiting for dependent futures
2022-05-12 22:22:22,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58720256}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 58720256}
2022-05-12 22:22:22,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:22,740 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:22:22,741 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:22,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:22:22,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:22:22,741 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 9175040}
2022-05-12 22:22:22,742 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:23,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:23,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:23,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 25165824}
2022-05-12 22:22:23,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50331648}) to executor  for transfer request: 0.
2022-05-12 22:22:24,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) about to wait for the following futures []
2022-05-12 22:22:24,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) done waiting for dependent futures
2022-05-12 22:22:24,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50331648}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 50331648}
2022-05-12 22:22:24,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41943040}) to executor  for transfer request: 0.
2022-05-12 22:22:24,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) about to wait for the following futures []
2022-05-12 22:22:24,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) done waiting for dependent futures
2022-05-12 22:22:24,787 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41943040}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 41943040}
2022-05-12 22:22:24,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:25,118 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:25,118 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:25,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:25,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:25,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 25165824}
2022-05-12 22:22:25,119 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:25,524 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67108864}) to executor  for transfer request: 0.
2022-05-12 22:22:25,524 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:25,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) about to wait for the following futures []
2022-05-12 22:22:25,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) done waiting for dependent futures
2022-05-12 22:22:25,524 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67108864}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 67108864}
2022-05-12 22:22:25,525 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:25,592 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:25,592 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:25,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:25,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:25,593 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 16777216}
2022-05-12 22:22:25,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:25,626 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:25,626 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:25,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:25,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:25,626 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 8388608}
2022-05-12 22:22:25,627 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:25,814 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:25,815 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:25,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:25,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:25,815 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 16777216}
2022-05-12 22:22:25,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:26,102 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:26,102 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:26,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:26,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:26,102 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 25165824}
2022-05-12 22:22:26,103 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:26,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33554432}) to executor  for transfer request: 0.
2022-05-12 22:22:26,259 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:26,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) about to wait for the following futures []
2022-05-12 22:22:26,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) done waiting for dependent futures
2022-05-12 22:22:26,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33554432}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 33554432}
2022-05-12 22:22:26,260 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:32,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:32,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:32,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:32,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:32,418 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 0}
2022-05-12 22:22:32,418 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:33,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:33,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:33,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:33,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:33,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 8388608}
2022-05-12 22:22:33,102 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:33,130 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:33,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:33,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:33,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:33,131 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 786432}
2022-05-12 22:22:33,131 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:33,546 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58982400}) to executor  for transfer request: 0.
2022-05-12 22:22:33,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:33,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) about to wait for the following futures []
2022-05-12 22:22:33,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) done waiting for dependent futures
2022-05-12 22:22:33,547 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58982400}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 58982400}
2022-05-12 22:22:33,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:33,936 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:22:33,936 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:33,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:22:33,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:22:33,936 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 9437184}
2022-05-12 22:22:33,936 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,322 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75497472}) to executor  for transfer request: 0.
2022-05-12 22:22:34,323 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) about to wait for the following futures []
2022-05-12 22:22:34,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) done waiting for dependent futures
2022-05-12 22:22:34,323 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75497472}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 75497472}
2022-05-12 22:22:34,324 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:34,382 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:34,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:34,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 17039360}
2022-05-12 22:22:34,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,713 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:22:34,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,714 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:22:34,714 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:22:34,714 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 17563648}
2022-05-12 22:22:34,714 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:35,597 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50593792}) to executor  for transfer request: 0.
2022-05-12 22:22:35,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:35,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) about to wait for the following futures []
2022-05-12 22:22:35,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) done waiting for dependent futures
2022-05-12 22:22:35,598 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50593792}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 50593792}
2022-05-12 22:22:35,598 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:35,811 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42205184}) to executor  for transfer request: 0.
2022-05-12 22:22:35,811 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:35,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) about to wait for the following futures []
2022-05-12 22:22:35,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) done waiting for dependent futures
2022-05-12 22:22:35,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42205184}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 42205184}
2022-05-12 22:22:35,812 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,586 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:36,587 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:36,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:36,587 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 0}
2022-05-12 22:22:36,587 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,629 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:36,629 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:36,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:36,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 25427968}
2022-05-12 22:22:36,630 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,941 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:36,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:36,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:36,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 786432}
2022-05-12 22:22:36,942 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:38,614 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33816576}) to executor  for transfer request: 0.
2022-05-12 22:22:38,614 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:38,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) about to wait for the following futures []
2022-05-12 22:22:38,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) done waiting for dependent futures
2022-05-12 22:22:38,615 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33816576}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 33816576}
2022-05-12 22:22:38,615 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:39,415 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:39,416 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:39,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:39,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:39,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 8650752}
2022-05-12 22:22:39,417 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:40,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67371008}) to executor  for transfer request: 0.
2022-05-12 22:22:40,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:40,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) about to wait for the following futures []
2022-05-12 22:22:40,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) done waiting for dependent futures
2022-05-12 22:22:40,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67371008}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 67371008}
2022-05-12 22:22:40,726 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:41,488 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:41,488 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:41,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:41,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:41,489 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 17039360}
2022-05-12 22:22:41,489 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:44,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:44,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:44,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:44,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:44,424 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 25427968}
2022-05-12 22:22:44,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:45,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59244544}) to executor  for transfer request: 0.
2022-05-12 22:22:45,651 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:45,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) about to wait for the following futures []
2022-05-12 22:22:45,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) done waiting for dependent futures
2022-05-12 22:22:45,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59244544}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 59244544}
2022-05-12 22:22:45,652 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:47,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:47,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:47,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 262144}
2022-05-12 22:22:47,170 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,498 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:22:47,498 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:22:47,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:22:47,499 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 1048576}
2022-05-12 22:22:47,500 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67633152}) to executor  for transfer request: 0.
2022-05-12 22:22:49,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) about to wait for the following futures []
2022-05-12 22:22:49,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) done waiting for dependent futures
2022-05-12 22:22:49,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67633152}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 67633152}
2022-05-12 22:22:49,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:50,084 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50855936}) to executor  for transfer request: 0.
2022-05-12 22:22:50,085 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:50,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) about to wait for the following futures []
2022-05-12 22:22:50,085 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) done waiting for dependent futures
2022-05-12 22:22:50,085 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50855936}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 50855936}
2022-05-12 22:22:50,085 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:50,604 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:50,605 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:50,605 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:50,605 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:50,605 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 25427968}
2022-05-12 22:22:50,605 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:51,028 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:51,028 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:51,028 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:51,028 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:51,029 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 17301504}
2022-05-12 22:22:51,029 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:51,717 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:51,718 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:51,718 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:51,718 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:51,718 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 8912896}
2022-05-12 22:22:51,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,142 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34078720}) to executor  for transfer request: 0.
2022-05-12 22:22:52,143 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) about to wait for the following futures []
2022-05-12 22:22:52,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) done waiting for dependent futures
2022-05-12 22:22:52,143 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34078720}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 34078720}
2022-05-12 22:22:52,143 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,765 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:52,765 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:52,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:52,765 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 25165824}
2022-05-12 22:22:52,766 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:53,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:53,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:53,542 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 8388608}
2022-05-12 22:22:53,542 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:54,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:22:54,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:54,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:22:54,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:22:54,083 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 1048576}
2022-05-12 22:22:54,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:55,813 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:55,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:55,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:55,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:55,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 262144}
2022-05-12 22:22:55,814 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:55,978 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:22:55,979 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:55,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:22:55,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:22:55,979 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 9699328}
2022-05-12 22:22:55,980 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:58,840 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:22:58,840 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:58,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:22:58,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:22:58,841 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 1310720}
2022-05-12 22:22:58,841 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:00,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:00,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:00,681 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 17825792}
2022-05-12 22:23:00,682 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,747 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:00,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:00,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:00,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 9175040}
2022-05-12 22:23:00,748 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:02,170 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59506688}) to executor  for transfer request: 0.
2022-05-12 22:23:02,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:02,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) about to wait for the following futures []
2022-05-12 22:23:02,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) done waiting for dependent futures
2022-05-12 22:23:02,171 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59506688}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 59506688}
2022-05-12 22:23:02,171 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:02,204 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:02,205 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:02,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:02,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:02,205 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 17301504}
2022-05-12 22:23:02,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:03,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67895296}) to executor  for transfer request: 0.
2022-05-12 22:23:03,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:03,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) about to wait for the following futures []
2022-05-12 22:23:03,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) done waiting for dependent futures
2022-05-12 22:23:03,102 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67895296}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 67895296}
2022-05-12 22:23:03,102 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:03,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51118080}) to executor  for transfer request: 0.
2022-05-12 22:23:03,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:03,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) about to wait for the following futures []
2022-05-12 22:23:03,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) done waiting for dependent futures
2022-05-12 22:23:03,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51118080}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 51118080}
2022-05-12 22:23:03,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:04,595 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34340864}) to executor  for transfer request: 0.
2022-05-12 22:23:04,595 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:04,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) about to wait for the following futures []
2022-05-12 22:23:04,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) done waiting for dependent futures
2022-05-12 22:23:04,595 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34340864}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 34340864}
2022-05-12 22:23:04,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:06,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42467328}) to executor  for transfer request: 0.
2022-05-12 22:23:06,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:06,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) about to wait for the following futures []
2022-05-12 22:23:06,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) done waiting for dependent futures
2022-05-12 22:23:06,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42467328}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 42467328}
2022-05-12 22:23:06,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,521 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:23:07,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:23:07,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:23:07,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 524288}
2022-05-12 22:23:07,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:07,805 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:07,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:07,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:07,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:07,806 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 1310720}
2022-05-12 22:23:07,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,966 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:08,966 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:08,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:08,967 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 17563648}
2022-05-12 22:23:08,967 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:09,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:23:09,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:09,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:23:09,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:23:09,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 8650752}
2022-05-12 22:23:09,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:10,153 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:10,153 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:10,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:10,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:10,153 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 1572864}
2022-05-12 22:23:10,154 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:10,424 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:23:10,424 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:10,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:23:10,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:23:10,425 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 16777216}
2022-05-12 22:23:10,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:10,653 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59768832}) to executor  for transfer request: 0.
2022-05-12 22:23:10,653 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:10,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) about to wait for the following futures []
2022-05-12 22:23:10,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) done waiting for dependent futures
2022-05-12 22:23:10,654 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59768832}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 59768832}
2022-05-12 22:23:10,654 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,354 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:12,354 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:12,355 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:12,355 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 9437184}
2022-05-12 22:23:12,355 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,402 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:12,402 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:12,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:12,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 9961472}
2022-05-12 22:23:12,403 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:12,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:12,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:12,418 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 25690112}
2022-05-12 22:23:12,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34603008}) to executor  for transfer request: 0.
2022-05-12 22:23:12,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) about to wait for the following futures []
2022-05-12 22:23:12,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) done waiting for dependent futures
2022-05-12 22:23:12,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34603008}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 34603008}
2022-05-12 22:23:12,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:23:12,987 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:23:12,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:23:12,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 8650752}
2022-05-12 22:23:12,988 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:14,900 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:14,900 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:14,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:14,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:14,900 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 18087936}
2022-05-12 22:23:14,901 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:15,088 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51380224}) to executor  for transfer request: 0.
2022-05-12 22:23:15,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:15,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) about to wait for the following futures []
2022-05-12 22:23:15,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) done waiting for dependent futures
2022-05-12 22:23:15,089 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51380224}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 51380224}
2022-05-12 22:23:15,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:16,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:23:16,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:16,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:23:16,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:23:16,584 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 524288}
2022-05-12 22:23:16,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:20,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:20,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:20,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:20,226 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 786432}
2022-05-12 22:23:20,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:20,854 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:20,854 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:20,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:20,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 25690112}
2022-05-12 22:23:20,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:22,291 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60030976}) to executor  for transfer request: 0.
2022-05-12 22:23:22,292 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:22,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) about to wait for the following futures []
2022-05-12 22:23:22,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) done waiting for dependent futures
2022-05-12 22:23:22,292 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60030976}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 60030976}
2022-05-12 22:23:22,292 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:22,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:22,796 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:22,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:22,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:22,797 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 17825792}
2022-05-12 22:23:22,798 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34865152}) to executor  for transfer request: 0.
2022-05-12 22:23:23,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) about to wait for the following futures []
2022-05-12 22:23:23,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) done waiting for dependent futures
2022-05-12 22:23:23,569 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34865152}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 34865152}
2022-05-12 22:23:23,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,598 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42729472}) to executor  for transfer request: 0.
2022-05-12 22:23:23,599 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) about to wait for the following futures []
2022-05-12 22:23:23,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) done waiting for dependent futures
2022-05-12 22:23:23,599 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42729472}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 42729472}
2022-05-12 22:23:23,599 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51642368}) to executor  for transfer request: 0.
2022-05-12 22:23:25,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) about to wait for the following futures []
2022-05-12 22:23:25,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) done waiting for dependent futures
2022-05-12 22:23:25,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51642368}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 51642368}
2022-05-12 22:23:25,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:25,413 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:25,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:25,413 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 10223616}
2022-05-12 22:23:25,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:25,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:25,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:25,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 1572864}
2022-05-12 22:23:25,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:25,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:25,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:25,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 17563648}
2022-05-12 22:23:25,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:26,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:23:26,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:26,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:23:26,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:23:26,372 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 25427968}
2022-05-12 22:23:26,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:27,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:27,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:27,252 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 1835008}
2022-05-12 22:23:27,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,460 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:27,460 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:27,461 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:27,461 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 9699328}
2022-05-12 22:23:27,461 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,305 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:30,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:30,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:30,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 25952256}
2022-05-12 22:23:30,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:31,223 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:31,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:31,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:31,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:31,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 18350080}
2022-05-12 22:23:31,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:32,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:32,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:32,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:32,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:32,173 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 1048576}
2022-05-12 22:23:32,173 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:34,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42991616}) to executor  for transfer request: 0.
2022-05-12 22:23:34,375 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:34,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) about to wait for the following futures []
2022-05-12 22:23:34,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) done waiting for dependent futures
2022-05-12 22:23:34,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42991616}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 42991616}
2022-05-12 22:23:34,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:34,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60293120}) to executor  for transfer request: 0.
2022-05-12 22:23:34,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:34,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) about to wait for the following futures []
2022-05-12 22:23:34,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) done waiting for dependent futures
2022-05-12 22:23:34,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60293120}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 60293120}
2022-05-12 22:23:34,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,156 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35127296}) to executor  for transfer request: 0.
2022-05-12 22:23:35,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) about to wait for the following futures []
2022-05-12 22:23:35,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) done waiting for dependent futures
2022-05-12 22:23:35,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35127296}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 35127296}
2022-05-12 22:23:35,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:37,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:23:37,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:37,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:23:37,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:23:37,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 2097152}
2022-05-12 22:23:37,679 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:37,793 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:23:37,794 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:37,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:23:37,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:23:37,795 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 8912896}
2022-05-12 22:23:37,795 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:38,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:38,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:38,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 18087936}
2022-05-12 22:23:38,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,714 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68157440}) to executor  for transfer request: 0.
2022-05-12 22:23:38,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,714 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) about to wait for the following futures []
2022-05-12 22:23:38,714 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) done waiting for dependent futures
2022-05-12 22:23:38,714 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68157440}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 68157440}
2022-05-12 22:23:38,715 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:39,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:39,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:39,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 9961472}
2022-05-12 22:23:39,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,438 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:39,438 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:39,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:39,439 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 786432}
2022-05-12 22:23:39,439 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51904512}) to executor  for transfer request: 0.
2022-05-12 22:23:42,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) about to wait for the following futures []
2022-05-12 22:23:42,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) done waiting for dependent futures
2022-05-12 22:23:42,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51904512}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 51904512}
2022-05-12 22:23:42,516 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,582 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:44,582 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:44,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:44,583 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 1835008}
2022-05-12 22:23:44,583 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,929 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:23:44,929 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:23:44,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:23:44,930 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 10485760}
2022-05-12 22:23:44,930 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:45,305 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35389440}) to executor  for transfer request: 0.
2022-05-12 22:23:45,305 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:45,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) about to wait for the following futures []
2022-05-12 22:23:45,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) done waiting for dependent futures
2022-05-12 22:23:45,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35389440}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 35389440}
2022-05-12 22:23:45,306 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:46,200 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60555264}) to executor  for transfer request: 0.
2022-05-12 22:23:46,200 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:46,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) about to wait for the following futures []
2022-05-12 22:23:46,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) done waiting for dependent futures
2022-05-12 22:23:46,201 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60555264}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 60555264}
2022-05-12 22:23:46,201 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:46,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:46,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:46,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:46,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:46,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 1310720}
2022-05-12 22:23:46,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:46,813 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43253760}) to executor  for transfer request: 0.
2022-05-12 22:23:46,813 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:46,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) about to wait for the following futures []
2022-05-12 22:23:46,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) done waiting for dependent futures
2022-05-12 22:23:46,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43253760}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 43253760}
2022-05-12 22:23:46,814 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:47,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:23:47,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:47,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:23:47,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:23:47,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 2359296}
2022-05-12 22:23:47,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,361 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75759616}) to executor  for transfer request: 0.
2022-05-12 22:23:50,361 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) about to wait for the following futures []
2022-05-12 22:23:50,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) done waiting for dependent futures
2022-05-12 22:23:50,362 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75759616}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 75759616}
2022-05-12 22:23:50,362 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:23:50,496 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:23:50,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:23:50,496 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 8912896}
2022-05-12 22:23:50,497 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:50,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:50,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:50,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 18350080}
2022-05-12 22:23:50,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:51,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:51,236 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:51,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:51,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:51,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 25952256}
2022-05-12 22:23:51,237 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:51,899 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:23:51,899 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:51,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:23:51,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:23:51,900 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 18612224}
2022-05-12 22:23:51,900 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:52,602 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:52,602 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:52,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:52,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:52,603 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 26214400}
2022-05-12 22:23:52,603 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:52,900 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68419584}) to executor  for transfer request: 0.
2022-05-12 22:23:52,900 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:52,901 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) about to wait for the following futures []
2022-05-12 22:23:52,901 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) done waiting for dependent futures
2022-05-12 22:23:52,901 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68419584}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 68419584}
2022-05-12 22:23:52,901 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:53,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:53,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:53,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:53,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:53,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 1048576}
2022-05-12 22:23:53,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:54,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35651584}) to executor  for transfer request: 0.
2022-05-12 22:23:54,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:54,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) about to wait for the following futures []
2022-05-12 22:23:54,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) done waiting for dependent futures
2022-05-12 22:23:54,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35651584}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 35651584}
2022-05-12 22:23:54,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,104 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:55,104 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:55,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:55,105 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 17825792}
2022-05-12 22:23:55,105 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,589 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:23:55,589 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:23:55,590 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:23:55,590 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 17039360}
2022-05-12 22:23:55,590 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:55,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:55,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:55,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 10223616}
2022-05-12 22:23:55,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:57,118 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52166656}) to executor  for transfer request: 0.
2022-05-12 22:23:57,119 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:57,119 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) about to wait for the following futures []
2022-05-12 22:23:57,119 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) done waiting for dependent futures
2022-05-12 22:23:57,119 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52166656}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 52166656}
2022-05-12 22:23:57,120 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:57,669 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:23:57,669 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:57,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:23:57,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:23:57,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 2621440}
2022-05-12 22:23:57,670 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,959 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43515904}) to executor  for transfer request: 0.
2022-05-12 22:23:58,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) about to wait for the following futures []
2022-05-12 22:23:58,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) done waiting for dependent futures
2022-05-12 22:23:58,959 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43515904}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 43515904}
2022-05-12 22:23:58,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:01,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:01,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:01,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:01,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:01,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 2097152}
2022-05-12 22:24:01,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:01,189 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:24:01,189 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:01,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:24:01,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:24:01,190 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 25690112}
2022-05-12 22:24:01,190 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:01,418 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60817408}) to executor  for transfer request: 0.
2022-05-12 22:24:01,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:01,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) about to wait for the following futures []
2022-05-12 22:24:01,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) done waiting for dependent futures
2022-05-12 22:24:01,419 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60817408}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 60817408}
2022-05-12 22:24:01,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:01,531 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:01,531 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:01,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:01,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:01,532 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 10747904}
2022-05-12 22:24:01,532 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:03,185 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:24:03,185 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:03,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:24:03,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:24:03,186 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 1572864}
2022-05-12 22:24:03,186 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:04,910 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35913728}) to executor  for transfer request: 0.
2022-05-12 22:24:04,910 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:04,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) about to wait for the following futures []
2022-05-12 22:24:04,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) done waiting for dependent futures
2022-05-12 22:24:04,911 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35913728}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 35913728}
2022-05-12 22:24:04,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:06,406 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:24:06,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:06,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:24:06,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:24:06,407 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 2883584}
2022-05-12 22:24:06,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:24:09,395 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:24:09,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:24:09,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 18612224}
2022-05-12 22:24:09,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68681728}) to executor  for transfer request: 0.
2022-05-12 22:24:09,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) about to wait for the following futures []
2022-05-12 22:24:09,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) done waiting for dependent futures
2022-05-12 22:24:09,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68681728}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 68681728}
2022-05-12 22:24:09,688 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,899 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:24:09,899 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:24:09,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:24:09,900 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 1310720}
2022-05-12 22:24:09,900 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:11,040 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52428800}) to executor  for transfer request: 0.
2022-05-12 22:24:11,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:11,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) about to wait for the following futures []
2022-05-12 22:24:11,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) done waiting for dependent futures
2022-05-12 22:24:11,041 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52428800}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 52428800}
2022-05-12 22:24:11,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:11,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:24:11,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:11,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:24:11,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:24:11,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 26214400}
2022-05-12 22:24:11,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:12,106 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:12,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:12,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 2359296}
2022-05-12 22:24:12,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,182 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61079552}) to executor  for transfer request: 0.
2022-05-12 22:24:12,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) about to wait for the following futures []
2022-05-12 22:24:12,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) done waiting for dependent futures
2022-05-12 22:24:12,183 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61079552}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 61079552}
2022-05-12 22:24:12,184 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:12,942 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:12,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:12,943 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 10485760}
2022-05-12 22:24:12,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,011 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:24:13,012 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:24:13,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:24:13,012 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 1835008}
2022-05-12 22:24:13,013 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,861 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43778048}) to executor  for transfer request: 0.
2022-05-12 22:24:13,861 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) about to wait for the following futures []
2022-05-12 22:24:13,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) done waiting for dependent futures
2022-05-12 22:24:13,861 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43778048}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 43778048}
2022-05-12 22:24:13,862 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:14,502 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:14,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:14,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:14,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:14,503 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 18874368}
2022-05-12 22:24:14,504 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:15,975 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:24:15,976 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:15,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:24:15,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:24:15,976 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 3145728}
2022-05-12 22:24:15,977 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:16,206 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36175872}) to executor  for transfer request: 0.
2022-05-12 22:24:16,206 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:16,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) about to wait for the following futures []
2022-05-12 22:24:16,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) done waiting for dependent futures
2022-05-12 22:24:16,207 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36175872}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 36175872}
2022-05-12 22:24:16,207 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:18,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:24:18,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:18,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:24:18,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:24:18,397 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 18087936}
2022-05-12 22:24:18,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:18,451 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:18,451 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:18,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:18,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:18,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 11010048}
2022-05-12 22:24:18,452 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:24:20,595 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:24:20,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:24:20,595 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 9175040}
2022-05-12 22:24:20,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:22,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36438016}) to executor  for transfer request: 0.
2022-05-12 22:24:22,355 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:22,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) about to wait for the following futures []
2022-05-12 22:24:22,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) done waiting for dependent futures
2022-05-12 22:24:22,356 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36438016}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 36438016}
2022-05-12 22:24:22,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:23,263 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:23,263 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:23,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:23,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:23,263 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 2097152}
2022-05-12 22:24:23,264 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68943872}) to executor  for transfer request: 0.
2022-05-12 22:24:24,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) about to wait for the following futures []
2022-05-12 22:24:24,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) done waiting for dependent futures
2022-05-12 22:24:24,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68943872}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 68943872}
2022-05-12 22:24:24,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,339 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61341696}) to executor  for transfer request: 0.
2022-05-12 22:24:24,339 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,339 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) about to wait for the following futures []
2022-05-12 22:24:24,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) done waiting for dependent futures
2022-05-12 22:24:24,340 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61341696}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 61341696}
2022-05-12 22:24:24,340 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,876 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:24:24,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:24:24,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:24:24,877 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 9175040}
2022-05-12 22:24:24,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:25,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52690944}) to executor  for transfer request: 0.
2022-05-12 22:24:25,148 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:25,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) about to wait for the following futures []
2022-05-12 22:24:25,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) done waiting for dependent futures
2022-05-12 22:24:25,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52690944}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 52690944}
2022-05-12 22:24:25,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:25,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:24:25,273 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:25,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:24:25,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:24:25,273 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 25952256}
2022-05-12 22:24:25,274 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:25,491 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:25,491 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:25,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:25,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:25,491 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 18874368}
2022-05-12 22:24:25,492 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44040192}) to executor  for transfer request: 0.
2022-05-12 22:24:26,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) about to wait for the following futures []
2022-05-12 22:24:26,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) done waiting for dependent futures
2022-05-12 22:24:26,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44040192}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 44040192}
2022-05-12 22:24:26,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:27,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:24:27,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:27,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:24:27,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:24:27,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 3407872}
2022-05-12 22:24:27,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:27,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:27,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:27,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:27,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:27,389 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 2621440}
2022-05-12 22:24:27,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:28,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:28,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:28,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 10747904}
2022-05-12 22:24:28,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,158 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:24:30,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:24:30,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:24:30,159 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 11272192}
2022-05-12 22:24:30,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,383 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36700160}) to executor  for transfer request: 0.
2022-05-12 22:24:30,383 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) about to wait for the following futures []
2022-05-12 22:24:30,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) done waiting for dependent futures
2022-05-12 22:24:30,384 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36700160}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 36700160}
2022-05-12 22:24:30,384 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,534 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:24:30,534 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:24:30,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:24:30,534 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 26476544}
2022-05-12 22:24:30,534 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:32,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52953088}) to executor  for transfer request: 0.
2022-05-12 22:24:32,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:32,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) about to wait for the following futures []
2022-05-12 22:24:32,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) done waiting for dependent futures
2022-05-12 22:24:32,401 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52953088}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 52953088}
2022-05-12 22:24:32,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:33,478 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:24:33,478 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:33,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:24:33,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:24:33,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 17301504}
2022-05-12 22:24:33,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:33,481 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61603840}) to executor  for transfer request: 0.
2022-05-12 22:24:33,481 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:33,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) about to wait for the following futures []
2022-05-12 22:24:33,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) done waiting for dependent futures
2022-05-12 22:24:33,481 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61603840}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 61603840}
2022-05-12 22:24:33,481 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:24:36,646 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:24:36,646 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:24:36,646 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 25690112}
2022-05-12 22:24:36,647 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:37,561 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:37,562 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:37,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:37,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:37,562 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 2359296}
2022-05-12 22:24:37,562 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:38,358 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:24:38,358 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:38,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:24:38,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:24:38,359 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 3670016}
2022-05-12 22:24:38,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:38,848 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36962304}) to executor  for transfer request: 0.
2022-05-12 22:24:38,848 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:38,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) about to wait for the following futures []
2022-05-12 22:24:38,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) done waiting for dependent futures
2022-05-12 22:24:38,848 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36962304}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 36962304}
2022-05-12 22:24:38,848 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:39,466 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:39,466 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:39,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:39,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:39,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 19136512}
2022-05-12 22:24:39,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:39,473 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:24:39,473 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:39,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:24:39,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:24:39,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 18350080}
2022-05-12 22:24:39,474 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:41,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69206016}) to executor  for transfer request: 0.
2022-05-12 22:24:41,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:41,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) about to wait for the following futures []
2022-05-12 22:24:41,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) done waiting for dependent futures
2022-05-12 22:24:41,102 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69206016}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 69206016}
2022-05-12 22:24:41,102 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:41,978 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:24:41,979 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:41,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:24:41,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:24:41,979 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 2883584}
2022-05-12 22:24:41,979 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,117 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:24:42,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:24:42,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:24:42,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 1572864}
2022-05-12 22:24:42,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,590 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:24:42,590 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:24:42,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:24:42,591 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 11534336}
2022-05-12 22:24:42,591 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,683 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:24:42,683 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:24:42,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:24:42,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 26476544}
2022-05-12 22:24:42,684 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:43,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61865984}) to executor  for transfer request: 0.
2022-05-12 22:24:43,132 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:43,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) about to wait for the following futures []
2022-05-12 22:24:43,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) done waiting for dependent futures
2022-05-12 22:24:43,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61865984}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 61865984}
2022-05-12 22:24:43,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:44,642 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44302336}) to executor  for transfer request: 0.
2022-05-12 22:24:44,642 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:44,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) about to wait for the following futures []
2022-05-12 22:24:44,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) done waiting for dependent futures
2022-05-12 22:24:44,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44302336}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 44302336}
2022-05-12 22:24:44,643 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:45,522 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37224448}) to executor  for transfer request: 0.
2022-05-12 22:24:45,522 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:45,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) about to wait for the following futures []
2022-05-12 22:24:45,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) done waiting for dependent futures
2022-05-12 22:24:45,523 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37224448}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 37224448}
2022-05-12 22:24:45,523 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:46,108 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:46,108 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:46,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:46,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:46,109 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 11010048}
2022-05-12 22:24:46,109 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:49,031 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:24:49,031 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:49,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:24:49,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:24:49,031 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 3932160}
2022-05-12 22:24:49,032 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:49,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53215232}) to executor  for transfer request: 0.
2022-05-12 22:24:49,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:49,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) about to wait for the following futures []
2022-05-12 22:24:49,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) done waiting for dependent futures
2022-05-12 22:24:49,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53215232}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 53215232}
2022-05-12 22:24:49,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,450 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62128128}) to executor  for transfer request: 0.
2022-05-12 22:24:52,451 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,451 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) about to wait for the following futures []
2022-05-12 22:24:52,451 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) done waiting for dependent futures
2022-05-12 22:24:52,451 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62128128}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 62128128}
2022-05-12 22:24:52,451 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:53,994 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:24:53,994 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:53,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:24:53,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:24:53,995 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 26214400}
2022-05-12 22:24:53,995 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:54,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69468160}) to executor  for transfer request: 0.
2022-05-12 22:24:54,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:54,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) about to wait for the following futures []
2022-05-12 22:24:54,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) done waiting for dependent futures
2022-05-12 22:24:54,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69468160}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 69468160}
2022-05-12 22:24:54,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:54,344 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:24:54,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:54,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:24:54,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:24:54,345 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 11796480}
2022-05-12 22:24:54,346 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:54,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:54,642 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:54,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:54,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:54,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 2621440}
2022-05-12 22:24:54,643 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:55,569 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:24:55,569 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:55,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:24:55,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:24:55,570 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 4194304}
2022-05-12 22:24:55,570 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:56,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37486592}) to executor  for transfer request: 0.
2022-05-12 22:24:56,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:56,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) about to wait for the following futures []
2022-05-12 22:24:56,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) done waiting for dependent futures
2022-05-12 22:24:56,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37486592}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 37486592}
2022-05-12 22:24:56,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:57,780 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:57,780 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:57,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:57,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:57,780 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 19136512}
2022-05-12 22:24:57,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,698 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44564480}) to executor  for transfer request: 0.
2022-05-12 22:24:58,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) about to wait for the following futures []
2022-05-12 22:24:58,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) done waiting for dependent futures
2022-05-12 22:24:58,699 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44564480}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 44564480}
2022-05-12 22:24:58,699 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:59,430 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:24:59,430 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:59,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:24:59,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:24:59,431 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 3145728}
2022-05-12 22:24:59,431 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:00,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:25:00,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:00,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:25:00,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:25:00,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 11272192}
2022-05-12 22:25:00,516 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:00,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:25:00,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:00,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:25:00,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:25:00,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 18612224}
2022-05-12 22:25:00,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:01,561 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:25:01,561 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:01,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:25:01,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:25:01,562 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 19398656}
2022-05-12 22:25:01,562 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:03,028 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62390272}) to executor  for transfer request: 0.
2022-05-12 22:25:03,028 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:03,028 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) about to wait for the following futures []
2022-05-12 22:25:03,028 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) done waiting for dependent futures
2022-05-12 22:25:03,028 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62390272}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 62390272}
2022-05-12 22:25:03,029 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:03,339 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:25:03,339 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:03,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:25:03,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:25:03,340 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 26738688}
2022-05-12 22:25:03,341 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:03,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53477376}) to executor  for transfer request: 0.
2022-05-12 22:25:03,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:03,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) about to wait for the following futures []
2022-05-12 22:25:03,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) done waiting for dependent futures
2022-05-12 22:25:03,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53477376}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 53477376}
2022-05-12 22:25:03,694 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,191 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:25:04,191 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:25:04,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:25:04,192 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 9437184}
2022-05-12 22:25:04,192 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,573 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:25:04,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:25:04,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:25:04,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 26738688}
2022-05-12 22:25:04,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,575 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:25:04,575 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:25:04,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:25:04,576 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 17563648}
2022-05-12 22:25:04,576 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,775 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:25:04,775 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,775 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:25:04,775 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:25:04,776 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 4456448}
2022-05-12 22:25:04,776 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,832 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69730304}) to executor  for transfer request: 0.
2022-05-12 22:25:04,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) about to wait for the following futures []
2022-05-12 22:25:04,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) done waiting for dependent futures
2022-05-12 22:25:04,833 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69730304}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 69730304}
2022-05-12 22:25:04,833 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:05,022 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37748736}) to executor  for transfer request: 0.
2022-05-12 22:25:05,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:05,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) about to wait for the following futures []
2022-05-12 22:25:05,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) done waiting for dependent futures
2022-05-12 22:25:05,023 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37748736}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 37748736}
2022-05-12 22:25:05,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:05,110 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:05,110 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:05,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:05,111 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:05,111 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 12058624}
2022-05-12 22:25:05,111 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:08,214 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:25:08,214 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:08,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:25:08,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:25:08,215 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 2883584}
2022-05-12 22:25:08,215 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:08,305 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:25:08,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:08,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:25:08,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:25:08,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 1835008}
2022-05-12 22:25:08,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,530 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:25:09,530 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:25:09,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:25:09,531 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 9437184}
2022-05-12 22:25:09,531 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38010880}) to executor  for transfer request: 0.
2022-05-12 22:25:12,324 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) about to wait for the following futures []
2022-05-12 22:25:12,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) done waiting for dependent futures
2022-05-12 22:25:12,325 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38010880}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 38010880}
2022-05-12 22:25:12,325 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:13,709 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:25:13,709 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:13,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:25:13,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:25:13,710 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 4718592}
2022-05-12 22:25:13,710 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:14,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53739520}) to executor  for transfer request: 0.
2022-05-12 22:25:14,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:14,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) about to wait for the following futures []
2022-05-12 22:25:14,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) done waiting for dependent futures
2022-05-12 22:25:14,497 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53739520}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 53739520}
2022-05-12 22:25:14,497 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:15,124 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:25:15,124 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:15,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:25:15,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:25:15,125 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 11534336}
2022-05-12 22:25:15,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:16,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:16,949 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:16,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:16,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:16,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 3407872}
2022-05-12 22:25:16,950 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,661 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76021760}) to executor  for transfer request: 0.
2022-05-12 22:25:17,661 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) about to wait for the following futures []
2022-05-12 22:25:17,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) done waiting for dependent futures
2022-05-12 22:25:17,662 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76021760}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 76021760}
2022-05-12 22:25:17,662 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,755 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69992448}) to executor  for transfer request: 0.
2022-05-12 22:25:17,755 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,756 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) about to wait for the following futures []
2022-05-12 22:25:17,756 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) done waiting for dependent futures
2022-05-12 22:25:17,756 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69992448}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 69992448}
2022-05-12 22:25:17,756 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,765 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:25:17,765 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:25:17,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:25:17,765 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 19660800}
2022-05-12 22:25:17,766 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,599 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62652416}) to executor  for transfer request: 0.
2022-05-12 22:25:18,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) about to wait for the following futures []
2022-05-12 22:25:18,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) done waiting for dependent futures
2022-05-12 22:25:18,600 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62652416}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 62652416}
2022-05-12 22:25:18,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,931 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:25:18,931 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:25:18,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:25:18,931 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 3145728}
2022-05-12 22:25:18,932 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:20,125 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:20,125 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:20,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:20,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:20,126 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 12320768}
2022-05-12 22:25:20,126 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:23,033 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:25:23,033 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:23,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:25:23,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:25:23,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 4980736}
2022-05-12 22:25:23,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:23,525 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:25:23,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:23,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:25:23,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:25:23,526 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 18874368}
2022-05-12 22:25:23,526 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38273024}) to executor  for transfer request: 0.
2022-05-12 22:25:24,925 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) about to wait for the following futures []
2022-05-12 22:25:24,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) done waiting for dependent futures
2022-05-12 22:25:24,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38273024}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 38273024}
2022-05-12 22:25:24,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:25,128 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44826624}) to executor  for transfer request: 0.
2022-05-12 22:25:25,128 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:25,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) about to wait for the following futures []
2022-05-12 22:25:25,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) done waiting for dependent futures
2022-05-12 22:25:25,129 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44826624}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 44826624}
2022-05-12 22:25:25,129 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:26,675 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:25:26,675 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:26,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:25:26,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:25:26,676 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 19922944}
2022-05-12 22:25:26,676 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:26,791 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62914560}) to executor  for transfer request: 0.
2022-05-12 22:25:26,791 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:26,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) about to wait for the following futures []
2022-05-12 22:25:26,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) done waiting for dependent futures
2022-05-12 22:25:26,791 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62914560}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 62914560}
2022-05-12 22:25:26,792 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:30,837 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:25:30,837 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:30,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:25:30,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:25:30,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 5242880}
2022-05-12 22:25:30,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:31,339 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38535168}) to executor  for transfer request: 0.
2022-05-12 22:25:31,339 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:31,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) about to wait for the following futures []
2022-05-12 22:25:31,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) done waiting for dependent futures
2022-05-12 22:25:31,340 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38535168}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 38535168}
2022-05-12 22:25:31,341 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:32,477 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:32,477 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:32,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:32,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:32,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 11796480}
2022-05-12 22:25:32,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:32,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70254592}) to executor  for transfer request: 0.
2022-05-12 22:25:32,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:32,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) about to wait for the following futures []
2022-05-12 22:25:32,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) done waiting for dependent futures
2022-05-12 22:25:32,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70254592}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 70254592}
2022-05-12 22:25:32,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:34,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45088768}) to executor  for transfer request: 0.
2022-05-12 22:25:34,105 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:34,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) about to wait for the following futures []
2022-05-12 22:25:34,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) done waiting for dependent futures
2022-05-12 22:25:34,105 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45088768}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 45088768}
2022-05-12 22:25:34,106 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:34,120 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:25:34,120 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:34,120 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:25:34,120 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:25:34,121 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 27000832}
2022-05-12 22:25:34,121 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:34,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:34,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:34,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:34,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:34,326 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 12582912}
2022-05-12 22:25:34,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:35,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:35,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:35,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:35,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:35,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 3407872}
2022-05-12 22:25:35,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,795 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63176704}) to executor  for transfer request: 0.
2022-05-12 22:25:36,796 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) about to wait for the following futures []
2022-05-12 22:25:36,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) done waiting for dependent futures
2022-05-12 22:25:36,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63176704}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 63176704}
2022-05-12 22:25:36,797 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54001664}) to executor  for transfer request: 0.
2022-05-12 22:25:36,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) about to wait for the following futures []
2022-05-12 22:25:36,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) done waiting for dependent futures
2022-05-12 22:25:36,908 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54001664}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 54001664}
2022-05-12 22:25:36,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:39,378 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:25:39,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:39,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:25:39,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:25:39,379 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 5505024}
2022-05-12 22:25:39,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:39,838 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:25:39,839 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:39,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:25:39,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:25:39,839 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 27000832}
2022-05-12 22:25:39,839 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:40,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38797312}) to executor  for transfer request: 0.
2022-05-12 22:25:40,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:40,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) about to wait for the following futures []
2022-05-12 22:25:40,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) done waiting for dependent futures
2022-05-12 22:25:40,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38797312}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 38797312}
2022-05-12 22:25:40,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:43,016 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45350912}) to executor  for transfer request: 0.
2022-05-12 22:25:43,016 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:43,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) about to wait for the following futures []
2022-05-12 22:25:43,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) done waiting for dependent futures
2022-05-12 22:25:43,017 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45350912}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 45350912}
2022-05-12 22:25:43,017 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:43,729 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:25:43,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:43,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:25:43,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:25:43,730 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 3670016}
2022-05-12 22:25:43,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,095 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:25:44,096 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:25:44,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:25:44,096 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 19136512}
2022-05-12 22:25:44,097 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:45,603 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63438848}) to executor  for transfer request: 0.
2022-05-12 22:25:45,604 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:45,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) about to wait for the following futures []
2022-05-12 22:25:45,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) done waiting for dependent futures
2022-05-12 22:25:45,604 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63438848}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 63438848}
2022-05-12 22:25:45,604 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:46,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70516736}) to executor  for transfer request: 0.
2022-05-12 22:25:46,637 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:46,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) about to wait for the following futures []
2022-05-12 22:25:46,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) done waiting for dependent futures
2022-05-12 22:25:46,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70516736}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 70516736}
2022-05-12 22:25:46,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:46,774 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:25:46,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:46,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:25:46,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:25:46,775 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 20185088}
2022-05-12 22:25:46,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:47,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:47,922 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:47,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:47,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:47,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 12058624}
2022-05-12 22:25:47,923 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:48,071 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:25:48,071 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:48,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:25:48,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:25:48,071 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 12845056}
2022-05-12 22:25:48,072 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:48,227 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:25:48,227 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:48,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:25:48,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:25:48,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 2097152}
2022-05-12 22:25:48,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:48,450 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:25:48,450 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:48,451 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:25:48,451 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:25:48,451 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 17825792}
2022-05-12 22:25:48,452 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:48,602 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39059456}) to executor  for transfer request: 0.
2022-05-12 22:25:48,602 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:48,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) about to wait for the following futures []
2022-05-12 22:25:48,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) done waiting for dependent futures
2022-05-12 22:25:48,603 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39059456}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 39059456}
2022-05-12 22:25:48,603 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:49,448 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:25:49,448 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:49,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:25:49,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:25:49,449 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 27262976}
2022-05-12 22:25:49,449 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:49,587 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:25:49,587 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:49,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:25:49,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:25:49,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 3670016}
2022-05-12 22:25:49,588 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:49,800 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:25:49,800 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:49,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:25:49,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:25:49,801 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 19398656}
2022-05-12 22:25:49,801 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:25:50,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:25:50,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:25:50,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 9699328}
2022-05-12 22:25:50,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:52,291 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:25:52,292 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:52,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:25:52,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:25:52,292 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 5767168}
2022-05-12 22:25:52,293 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:53,523 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76283904}) to executor  for transfer request: 0.
2022-05-12 22:25:53,523 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:53,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) about to wait for the following futures []
2022-05-12 22:25:53,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) done waiting for dependent futures
2022-05-12 22:25:53,524 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76283904}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 76283904}
2022-05-12 22:25:53,524 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:53,984 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63700992}) to executor  for transfer request: 0.
2022-05-12 22:25:53,984 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:53,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) about to wait for the following futures []
2022-05-12 22:25:53,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) done waiting for dependent futures
2022-05-12 22:25:53,985 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63700992}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 63700992}
2022-05-12 22:25:53,986 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:54,552 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45613056}) to executor  for transfer request: 0.
2022-05-12 22:25:54,553 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:54,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) about to wait for the following futures []
2022-05-12 22:25:54,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) done waiting for dependent futures
2022-05-12 22:25:54,553 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45613056}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 45613056}
2022-05-12 22:25:54,554 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:55,031 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39321600}) to executor  for transfer request: 0.
2022-05-12 22:25:55,031 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:55,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) about to wait for the following futures []
2022-05-12 22:25:55,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) done waiting for dependent futures
2022-05-12 22:25:55,032 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39321600}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 39321600}
2022-05-12 22:25:55,032 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:58,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70778880}) to executor  for transfer request: 0.
2022-05-12 22:25:58,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:58,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) about to wait for the following futures []
2022-05-12 22:25:58,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) done waiting for dependent futures
2022-05-12 22:25:58,417 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70778880}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 70778880}
2022-05-12 22:25:58,418 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:59,353 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:25:59,354 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:59,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:25:59,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:25:59,354 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 3932160}
2022-05-12 22:25:59,354 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:01,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:26:01,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:01,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:26:01,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:26:01,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 13107200}
2022-05-12 22:26:01,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:01,805 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:26:01,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:01,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:26:01,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:26:01,806 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 20447232}
2022-05-12 22:26:01,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:01,970 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54263808}) to executor  for transfer request: 0.
2022-05-12 22:26:01,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:01,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) about to wait for the following futures []
2022-05-12 22:26:01,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) done waiting for dependent futures
2022-05-12 22:26:01,971 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54263808}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 54263808}
2022-05-12 22:26:01,971 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:02,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63963136}) to executor  for transfer request: 0.
2022-05-12 22:26:02,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:02,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) about to wait for the following futures []
2022-05-12 22:26:02,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) done waiting for dependent futures
2022-05-12 22:26:02,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63963136}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 63963136}
2022-05-12 22:26:02,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:03,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:26:03,039 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:03,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:26:03,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:26:03,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 19398656}
2022-05-12 22:26:03,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:03,077 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:26:03,077 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:03,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:26:03,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:26:03,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 6029312}
2022-05-12 22:26:03,078 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:03,559 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:26:03,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:03,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:26:03,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:26:03,560 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 12320768}
2022-05-12 22:26:03,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:26:04,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:26:04,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:26:04,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 9699328}
2022-05-12 22:26:04,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:05,183 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76546048}) to executor  for transfer request: 0.
2022-05-12 22:26:05,183 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:05,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) about to wait for the following futures []
2022-05-12 22:26:05,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) done waiting for dependent futures
2022-05-12 22:26:05,183 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76546048}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 76546048}
2022-05-12 22:26:05,184 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:06,231 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:26:06,231 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:06,231 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:26:06,232 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:26:06,232 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 3932160}
2022-05-12 22:26:06,232 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:06,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:26:06,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:06,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:26:06,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:26:06,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 26476544}
2022-05-12 22:26:06,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:07,962 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71041024}) to executor  for transfer request: 0.
2022-05-12 22:26:07,962 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:07,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) about to wait for the following futures []
2022-05-12 22:26:07,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) done waiting for dependent futures
2022-05-12 22:26:07,962 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71041024}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 71041024}
2022-05-12 22:26:07,963 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39583744}) to executor  for transfer request: 0.
2022-05-12 22:26:08,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) about to wait for the following futures []
2022-05-12 22:26:08,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) done waiting for dependent futures
2022-05-12 22:26:08,542 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39583744}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 39583744}
2022-05-12 22:26:08,542 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,285 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45875200}) to executor  for transfer request: 0.
2022-05-12 22:26:09,285 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) about to wait for the following futures []
2022-05-12 22:26:09,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) done waiting for dependent futures
2022-05-12 22:26:09,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45875200}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 45875200}
2022-05-12 22:26:09,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:26:10,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:10,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:26:10,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:26:10,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 6291456}
2022-05-12 22:26:10,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,936 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:26:10,936 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:10,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:26:10,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:26:10,936 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 27525120}
2022-05-12 22:26:10,937 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,996 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64225280}) to executor  for transfer request: 0.
2022-05-12 22:26:10,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:10,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) about to wait for the following futures []
2022-05-12 22:26:10,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) done waiting for dependent futures
2022-05-12 22:26:10,997 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64225280}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 64225280}
2022-05-12 22:26:10,997 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:11,562 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:26:11,562 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:11,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:26:11,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:26:11,562 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 4194304}
2022-05-12 22:26:11,563 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:13,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:13,249 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:13,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:13,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:13,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 13369344}
2022-05-12 22:26:13,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:14,555 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:26:14,555 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:14,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:26:14,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:26:14,556 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 20709376}
2022-05-12 22:26:14,556 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:15,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39845888}) to executor  for transfer request: 0.
2022-05-12 22:26:15,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:15,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) about to wait for the following futures []
2022-05-12 22:26:15,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) done waiting for dependent futures
2022-05-12 22:26:15,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39845888}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 39845888}
2022-05-12 22:26:15,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:16,456 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:26:16,456 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:16,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:26:16,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:26:16,456 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 27262976}
2022-05-12 22:26:16,457 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:16,584 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:26:16,584 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:16,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:26:16,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:26:16,585 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 2359296}
2022-05-12 22:26:16,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:18,759 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71303168}) to executor  for transfer request: 0.
2022-05-12 22:26:18,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:18,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) about to wait for the following futures []
2022-05-12 22:26:18,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) done waiting for dependent futures
2022-05-12 22:26:18,760 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71303168}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 71303168}
2022-05-12 22:26:18,760 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:19,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:26:19,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:19,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:26:19,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:26:19,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 6553600}
2022-05-12 22:26:19,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:19,814 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:26:19,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:19,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:26:19,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:26:19,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 19660800}
2022-05-12 22:26:19,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,229 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76808192}) to executor  for transfer request: 0.
2022-05-12 22:26:20,230 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) about to wait for the following futures []
2022-05-12 22:26:20,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) done waiting for dependent futures
2022-05-12 22:26:20,230 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76808192}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 76808192}
2022-05-12 22:26:20,231 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,815 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64487424}) to executor  for transfer request: 0.
2022-05-12 22:26:20,815 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) about to wait for the following futures []
2022-05-12 22:26:20,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) done waiting for dependent futures
2022-05-12 22:26:20,816 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64487424}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 64487424}
2022-05-12 22:26:20,816 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:21,900 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:26:21,900 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:21,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:26:21,901 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:26:21,901 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 4456448}
2022-05-12 22:26:21,901 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:22,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:26:22,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:22,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:26:22,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:26:22,163 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 12582912}
2022-05-12 22:26:22,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,120 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40108032}) to executor  for transfer request: 0.
2022-05-12 22:26:27,121 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) about to wait for the following futures []
2022-05-12 22:26:27,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) done waiting for dependent futures
2022-05-12 22:26:27,121 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40108032}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 40108032}
2022-05-12 22:26:27,122 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,228 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46137344}) to executor  for transfer request: 0.
2022-05-12 22:26:27,228 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) about to wait for the following futures []
2022-05-12 22:26:27,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) done waiting for dependent futures
2022-05-12 22:26:27,229 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46137344}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 46137344}
2022-05-12 22:26:27,229 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,378 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64749568}) to executor  for transfer request: 0.
2022-05-12 22:26:27,379 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) about to wait for the following futures []
2022-05-12 22:26:27,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) done waiting for dependent futures
2022-05-12 22:26:27,379 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64749568}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 64749568}
2022-05-12 22:26:27,380 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:26:27,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:26:27,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:26:27,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 27787264}
2022-05-12 22:26:27,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,854 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:27,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:27,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:27,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 13631488}
2022-05-12 22:26:27,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:29,555 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:26:29,555 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:29,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:26:29,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:26:29,556 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 4194304}
2022-05-12 22:26:29,556 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:29,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71565312}) to executor  for transfer request: 0.
2022-05-12 22:26:29,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:29,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) about to wait for the following futures []
2022-05-12 22:26:29,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) done waiting for dependent futures
2022-05-12 22:26:29,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71565312}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 71565312}
2022-05-12 22:26:29,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:26:30,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:26:30,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:26:30,238 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 20971520}
2022-05-12 22:26:30,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,743 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:26:30,743 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:26:30,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:26:30,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 6815744}
2022-05-12 22:26:30,746 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:33,889 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77070336}) to executor  for transfer request: 0.
2022-05-12 22:26:33,889 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:33,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) about to wait for the following futures []
2022-05-12 22:26:33,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) done waiting for dependent futures
2022-05-12 22:26:33,889 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77070336}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 77070336}
2022-05-12 22:26:33,890 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:35,125 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:35,125 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:35,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:35,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:35,125 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 4718592}
2022-05-12 22:26:35,126 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:35,357 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:26:35,358 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:35,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:26:35,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:26:35,358 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 26738688}
2022-05-12 22:26:35,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:26:37,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:37,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:26:37,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:26:37,166 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 12845056}
2022-05-12 22:26:37,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,261 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:26:37,261 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:37,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:26:37,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:26:37,261 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 19922944}
2022-05-12 22:26:37,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40370176}) to executor  for transfer request: 0.
2022-05-12 22:26:37,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:37,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) about to wait for the following futures []
2022-05-12 22:26:37,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) done waiting for dependent futures
2022-05-12 22:26:37,682 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40370176}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 40370176}
2022-05-12 22:26:37,682 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:38,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65011712}) to executor  for transfer request: 0.
2022-05-12 22:26:38,323 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:38,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) about to wait for the following futures []
2022-05-12 22:26:38,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) done waiting for dependent futures
2022-05-12 22:26:38,324 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65011712}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 65011712}
2022-05-12 22:26:38,324 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,785 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:26:39,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:26:39,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:26:39,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 7077888}
2022-05-12 22:26:39,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71827456}) to executor  for transfer request: 0.
2022-05-12 22:26:39,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) about to wait for the following futures []
2022-05-12 22:26:39,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) done waiting for dependent futures
2022-05-12 22:26:39,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71827456}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 71827456}
2022-05-12 22:26:39,835 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46399488}) to executor  for transfer request: 0.
2022-05-12 22:26:41,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) about to wait for the following futures []
2022-05-12 22:26:41,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) done waiting for dependent futures
2022-05-12 22:26:41,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46399488}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 46399488}
2022-05-12 22:26:41,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,456 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:26:41,456 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:26:41,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:26:41,456 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 2621440}
2022-05-12 22:26:41,456 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:26:41,471 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:26:41,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:26:41,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 18087936}
2022-05-12 22:26:41,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:43,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:26:43,933 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:43,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:26:43,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:26:43,934 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 9961472}
2022-05-12 22:26:43,934 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:44,329 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77332480}) to executor  for transfer request: 0.
2022-05-12 22:26:44,329 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:44,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) about to wait for the following futures []
2022-05-12 22:26:44,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) done waiting for dependent futures
2022-05-12 22:26:44,329 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77332480}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 77332480}
2022-05-12 22:26:44,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:45,211 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40632320}) to executor  for transfer request: 0.
2022-05-12 22:26:45,211 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:45,211 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) about to wait for the following futures []
2022-05-12 22:26:45,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) done waiting for dependent futures
2022-05-12 22:26:45,212 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40632320}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 40632320}
2022-05-12 22:26:45,212 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:45,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:26:45,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:45,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:26:45,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:26:45,443 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 21233664}
2022-05-12 22:26:45,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:45,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:26:45,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:45,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:26:45,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:26:45,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 19660800}
2022-05-12 22:26:45,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:46,438 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:26:46,438 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:46,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:26:46,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:26:46,439 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 7340032}
2022-05-12 22:26:46,439 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:47,430 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:47,430 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:47,431 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:47,431 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:47,431 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 13893632}
2022-05-12 22:26:47,431 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:48,825 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:26:48,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:48,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:26:48,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:26:48,826 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 28049408}
2022-05-12 22:26:48,826 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:48,861 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:26:48,861 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:48,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:26:48,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:26:48,862 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 4980736}
2022-05-12 22:26:48,862 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:51,664 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65273856}) to executor  for transfer request: 0.
2022-05-12 22:26:51,664 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:51,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) about to wait for the following futures []
2022-05-12 22:26:51,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) done waiting for dependent futures
2022-05-12 22:26:51,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65273856}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 65273856}
2022-05-12 22:26:51,665 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:52,181 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:26:52,181 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:52,181 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:26:52,181 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:26:52,182 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 27000832}
2022-05-12 22:26:52,182 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:53,883 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:26:53,883 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:53,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:26:53,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:26:53,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 7602176}
2022-05-12 22:26:53,884 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:56,205 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40894464}) to executor  for transfer request: 0.
2022-05-12 22:26:56,205 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:56,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) about to wait for the following futures []
2022-05-12 22:26:56,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) done waiting for dependent futures
2022-05-12 22:26:56,205 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40894464}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 40894464}
2022-05-12 22:26:56,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:57,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72089600}) to executor  for transfer request: 0.
2022-05-12 22:26:57,219 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:57,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) about to wait for the following futures []
2022-05-12 22:26:57,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) done waiting for dependent futures
2022-05-12 22:26:57,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72089600}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 72089600}
2022-05-12 22:26:57,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:57,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46661632}) to executor  for transfer request: 0.
2022-05-12 22:26:57,279 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:57,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) about to wait for the following futures []
2022-05-12 22:26:57,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) done waiting for dependent futures
2022-05-12 22:26:57,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46661632}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 46661632}
2022-05-12 22:26:57,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:58,389 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77594624}) to executor  for transfer request: 0.
2022-05-12 22:26:58,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:58,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) about to wait for the following futures []
2022-05-12 22:26:58,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) done waiting for dependent futures
2022-05-12 22:26:58,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77594624}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 77594624}
2022-05-12 22:26:58,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:58,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:26:58,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:58,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:26:58,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:26:58,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 20185088}
2022-05-12 22:26:58,543 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:59,493 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:26:59,493 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:59,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:26:59,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:26:59,494 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 5242880}
2022-05-12 22:26:59,494 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:59,534 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:26:59,534 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:59,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:26:59,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:26:59,535 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 25952256}
2022-05-12 22:26:59,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:00,200 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:27:00,200 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:00,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:27:00,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:27:00,201 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 4456448}
2022-05-12 22:27:00,201 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:00,814 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:27:00,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:00,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:27:00,815 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:27:00,815 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 13107200}
2022-05-12 22:27:00,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:27:01,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:27:01,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:27:01,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 14155776}
2022-05-12 22:27:01,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:27:01,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:27:01,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:27:01,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 21495808}
2022-05-12 22:27:01,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:02,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:27:02,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:02,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:27:02,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:27:02,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 7864320}
2022-05-12 22:27:02,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:03,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65536000}) to executor  for transfer request: 0.
2022-05-12 22:27:03,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:03,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) about to wait for the following futures []
2022-05-12 22:27:03,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) done waiting for dependent futures
2022-05-12 22:27:03,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65536000}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 65536000}
2022-05-12 22:27:03,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:03,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54525952}) to executor  for transfer request: 0.
2022-05-12 22:27:03,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:03,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) about to wait for the following futures []
2022-05-12 22:27:03,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) done waiting for dependent futures
2022-05-12 22:27:03,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54525952}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 54525952}
2022-05-12 22:27:03,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:04,479 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41156608}) to executor  for transfer request: 0.
2022-05-12 22:27:04,479 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:04,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) about to wait for the following futures []
2022-05-12 22:27:04,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) done waiting for dependent futures
2022-05-12 22:27:04,479 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41156608}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 41156608}
2022-05-12 22:27:04,480 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:05,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:27:05,219 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:05,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:27:05,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:27:05,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 2883584}
2022-05-12 22:27:05,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:06,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:27:06,466 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:06,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:27:06,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:27:06,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 5505024}
2022-05-12 22:27:06,467 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:08,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72351744}) to executor  for transfer request: 0.
2022-05-12 22:27:08,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:08,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) about to wait for the following futures []
2022-05-12 22:27:08,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) done waiting for dependent futures
2022-05-12 22:27:08,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72351744}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 72351744}
2022-05-12 22:27:08,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:09,705 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65798144}) to executor  for transfer request: 0.
2022-05-12 22:27:09,705 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:09,705 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) about to wait for the following futures []
2022-05-12 22:27:09,705 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) done waiting for dependent futures
2022-05-12 22:27:09,706 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65798144}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 65798144}
2022-05-12 22:27:09,706 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:09,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:27:09,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:09,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:27:09,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:27:09,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 28311552}
2022-05-12 22:27:09,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:10,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77856768}) to executor  for transfer request: 0.
2022-05-12 22:27:10,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:10,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) about to wait for the following futures []
2022-05-12 22:27:10,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) done waiting for dependent futures
2022-05-12 22:27:10,269 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77856768}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 77856768}
2022-05-12 22:27:10,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:11,311 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:27:11,311 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:11,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:27:11,312 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:27:11,312 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 27525120}
2022-05-12 22:27:11,313 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:12,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:27:12,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:12,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:27:12,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:27:12,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 21757952}
2022-05-12 22:27:12,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,579 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:27:13,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:27:13,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:27:13,579 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 27262976}
2022-05-12 22:27:13,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46923776}) to executor  for transfer request: 0.
2022-05-12 22:27:13,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) about to wait for the following futures []
2022-05-12 22:27:13,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) done waiting for dependent futures
2022-05-12 22:27:13,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46923776}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 46923776}
2022-05-12 22:27:13,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:27:13,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:27:13,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:27:13,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 14417920}
2022-05-12 22:27:13,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,585 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41418752}) to executor  for transfer request: 0.
2022-05-12 22:27:14,585 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:14,586 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) about to wait for the following futures []
2022-05-12 22:27:14,586 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) done waiting for dependent futures
2022-05-12 22:27:14,586 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41418752}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 41418752}
2022-05-12 22:27:14,586 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,969 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:27:14,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:14,970 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,970 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) about to wait for the following futures []
2022-05-12 22:27:14,970 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) done waiting for dependent futures
2022-05-12 22:27:14,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:27:14,970 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=83886080-92274687'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 83886080, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:27:14,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:27:14,970 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:14,971 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:14,971 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:14,971 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:14,971 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:14,971 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 8126464}
2022-05-12 22:27:14,971 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:14,971 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:27:14,971 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:27:14,971 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,971 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:14,972 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:14,972 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=83886080-92274687', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:27:14,972 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:14,972 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:27:14,972 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:14,972 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:14,972 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:27:14,972 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:27:14,972 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:27:14,972 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:27:14,972 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:27:14,972 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=83886080-92274687
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222714Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:27:14,973 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222714Z
20220512/eu-central-1/s3/aws4_request
ae44aa5b6635bc2ca89d1f573feb9a0174bf550b2cefffc2ecb80af6e5be7b9b
2022-05-12 22:27:14,973 botocore.auth DEBUG    Signature:
3107c4e1b0b68a46ca346a4b517ec98bc6485ebe4cf21eed5c85194ab7866e3f
2022-05-12 22:27:14,973 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:14,973 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:14,973 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:27:14,973 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:27:15,191 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:27:15,192 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'knQ7pzqEw/IMpz3TJLIW9+Yu7fmunqj58qUCWjdGHbcGZTYmKtdoiS/4A0JhjK4zol8tqNh5HYk=', 'x-amz-request-id': 'BDRJ5YWR2TKDREJ1', 'Date': 'Thu, 12 May 2022 22:27:16 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 83886080-92274687/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:27:15,192 botocore.parsers DEBUG    Response body:

2022-05-12 22:27:15,192 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:27:15,193 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:27:15,193 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:27:16,698 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:27:16,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:27:16,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:27:16,699 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 5767168}
2022-05-12 22:27:16,699 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72613888}) to executor  for transfer request: 0.
2022-05-12 22:27:16,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) about to wait for the following futures []
2022-05-12 22:27:16,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) done waiting for dependent futures
2022-05-12 22:27:16,787 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72613888}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 72613888}
2022-05-12 22:27:16,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:18,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41680896}) to executor  for transfer request: 0.
2022-05-12 22:27:18,458 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:18,458 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:18,458 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) about to wait for the following futures []
2022-05-12 22:27:18,459 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) done waiting for dependent futures
2022-05-12 22:27:18,459 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=92274688-100663295'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 92274688, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:27:18,459 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:18,459 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:18,459 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:18,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) about to wait for the following futures []
2022-05-12 22:27:18,459 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:18,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) done waiting for dependent futures
2022-05-12 22:27:18,460 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:18,460 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41680896}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 41680896}
2022-05-12 22:27:18,460 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:18,460 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:27:18,460 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:27:18,461 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:18,461 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:18,461 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:18,461 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=92274688-100663295', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:27:18,461 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:18,461 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:27:18,461 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:18,461 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:18,461 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:27:18,461 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:27:18,462 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:27:18,462 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:27:18,462 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:27:18,462 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=92274688-100663295
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222718Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:27:18,462 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222718Z
20220512/eu-central-1/s3/aws4_request
18f4602d06053d6498dd20fdd0adef10b6004e855acb8a73050baefcc30b94a0
2022-05-12 22:27:18,462 botocore.auth DEBUG    Signature:
a4d90f562d7942f83c9337eebe9c88c557068da323f13bd725b6219ee61354f6
2022-05-12 22:27:18,462 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:18,463 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:18,463 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:27:18,463 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:27:18,639 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:27:18,640 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '39uTAMofRXO2DbtasvQb949C/pAItGz9FZTwHwWPOaVi1EG37noqycmvyDMSDgh0rGe16aBq6mQ=', 'x-amz-request-id': 'TJTNA3STWXCENMWH', 'Date': 'Thu, 12 May 2022 22:27:19 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 92274688-100663295/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:27:18,640 botocore.parsers DEBUG    Response body:

2022-05-12 22:27:18,640 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:27:18,641 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:27:18,641 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:27:18,896 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:27:18,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:18,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:27:18,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:27:18,896 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 9961472}
2022-05-12 22:27:18,897 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:20,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66060288}) to executor  for transfer request: 0.
2022-05-12 22:27:20,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:20,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) about to wait for the following futures []
2022-05-12 22:27:20,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) done waiting for dependent futures
2022-05-12 22:27:20,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66060288}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 66060288}
2022-05-12 22:27:20,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:20,635 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78118912}) to executor  for transfer request: 0.
2022-05-12 22:27:20,636 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:20,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) about to wait for the following futures []
2022-05-12 22:27:20,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) done waiting for dependent futures
2022-05-12 22:27:20,636 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78118912}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 78118912}
2022-05-12 22:27:20,637 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:21,174 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:27:21,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:21,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:27:21,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:27:21,175 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 20447232}
2022-05-12 22:27:21,175 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,232 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92274688}) to executor  for transfer request: 0.
2022-05-12 22:27:25,232 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) about to wait for the following futures []
2022-05-12 22:27:25,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) done waiting for dependent futures
2022-05-12 22:27:25,233 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92274688}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 92274688}
2022-05-12 22:27:25,233 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:27:25,424 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:27:25,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:27:25,424 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 27525120}
2022-05-12 22:27:25,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66322432}) to executor  for transfer request: 0.
2022-05-12 22:27:25,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) about to wait for the following futures []
2022-05-12 22:27:25,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) done waiting for dependent futures
2022-05-12 22:27:25,994 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66322432}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 66322432}
2022-05-12 22:27:25,995 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:27,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:27:27,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:27,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:27:27,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:27:27,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 4718592}
2022-05-12 22:27:27,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:27,120 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83886080}) to executor  for transfer request: 0.
2022-05-12 22:27:27,121 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:27,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) about to wait for the following futures []
2022-05-12 22:27:27,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) done waiting for dependent futures
2022-05-12 22:27:27,121 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83886080}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 83886080}
2022-05-12 22:27:27,122 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:27,865 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:27:27,865 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:27,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:27:27,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:27:27,866 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 22020096}
2022-05-12 22:27:27,866 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,093 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:27:28,093 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,094 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:27:28,094 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:27:28,094 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 13369344}
2022-05-12 22:27:28,094 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,490 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:27:28,490 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:27:28,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:27:28,490 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 10223616}
2022-05-12 22:27:28,491 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,826 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:27:28,826 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:27:28,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:27:28,827 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 28573696}
2022-05-12 22:27:28,828 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:29,621 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:27:29,621 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:29,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:27:29,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:27:29,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 3145728}
2022-05-12 22:27:29,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:30,699 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:27:30,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:30,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:27:30,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:27:30,699 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 18350080}
2022-05-12 22:27:30,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:30,818 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:27:30,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:30,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:27:30,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:27:30,819 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 6029312}
2022-05-12 22:27:30,819 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:31,368 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78381056}) to executor  for transfer request: 0.
2022-05-12 22:27:31,368 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:31,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) about to wait for the following futures []
2022-05-12 22:27:31,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) done waiting for dependent futures
2022-05-12 22:27:31,369 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78381056}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 78381056}
2022-05-12 22:27:31,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:32,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72876032}) to executor  for transfer request: 0.
2022-05-12 22:27:32,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:32,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) about to wait for the following futures []
2022-05-12 22:27:32,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) done waiting for dependent futures
2022-05-12 22:27:32,953 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72876032}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 72876032}
2022-05-12 22:27:32,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,554 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66584576}) to executor  for transfer request: 0.
2022-05-12 22:27:34,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) about to wait for the following futures []
2022-05-12 22:27:34,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) done waiting for dependent futures
2022-05-12 22:27:34,554 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66584576}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 66584576}
2022-05-12 22:27:34,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:36,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:27:36,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:36,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:27:36,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:27:36,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 14680064}
2022-05-12 22:27:36,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,565 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92536832}) to executor  for transfer request: 0.
2022-05-12 22:27:37,566 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) about to wait for the following futures []
2022-05-12 22:27:37,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) done waiting for dependent futures
2022-05-12 22:27:37,566 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92536832}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 92536832}
2022-05-12 22:27:37,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:38,768 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47185920}) to executor  for transfer request: 0.
2022-05-12 22:27:38,768 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:38,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) about to wait for the following futures []
2022-05-12 22:27:38,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) done waiting for dependent futures
2022-05-12 22:27:38,769 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47185920}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 47185920}
2022-05-12 22:27:38,769 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:38,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84148224}) to executor  for transfer request: 0.
2022-05-12 22:27:38,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:38,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) about to wait for the following futures []
2022-05-12 22:27:38,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) done waiting for dependent futures
2022-05-12 22:27:38,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84148224}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 84148224}
2022-05-12 22:27:38,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:27:41,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:27:41,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:27:41,743 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 20709376}
2022-05-12 22:27:41,744 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:27:41,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:27:41,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:27:41,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 6291456}
2022-05-12 22:27:41,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:42,608 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78643200}) to executor  for transfer request: 0.
2022-05-12 22:27:42,608 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:42,608 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) about to wait for the following futures []
2022-05-12 22:27:42,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) done waiting for dependent futures
2022-05-12 22:27:42,609 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78643200}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 78643200}
2022-05-12 22:27:42,609 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:42,884 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73138176}) to executor  for transfer request: 0.
2022-05-12 22:27:42,884 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:42,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) about to wait for the following futures []
2022-05-12 22:27:42,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) done waiting for dependent futures
2022-05-12 22:27:42,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73138176}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 73138176}
2022-05-12 22:27:42,885 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,125 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66846720}) to executor  for transfer request: 0.
2022-05-12 22:27:45,125 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:45,126 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,126 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) about to wait for the following futures []
2022-05-12 22:27:45,126 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) done waiting for dependent futures
2022-05-12 22:27:45,126 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=100663296-109051903'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 100663296, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:27:45,126 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:45,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) about to wait for the following futures []
2022-05-12 22:27:45,126 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:45,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) done waiting for dependent futures
2022-05-12 22:27:45,127 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:45,127 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66846720}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 66846720}
2022-05-12 22:27:45,127 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:27:45,128 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:27:45,128 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,128 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:45,128 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:27:45,129 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:27:45,129 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:45,129 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:27:45,129 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=100663296-109051903', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:27:45,129 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:45,129 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:27:45,129 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:45,129 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:27:45,129 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:27:45,129 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:27:45,129 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:27:45,130 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:27:45,130 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:27:45,130 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=100663296-109051903
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222745Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:27:45,130 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222745Z
20220512/eu-central-1/s3/aws4_request
1be26adf4df3223929a1f2302b22e44bd5a7b4c26cc3c8c7a05e2215ef2c6ef9
2022-05-12 22:27:45,130 botocore.auth DEBUG    Signature:
95223f1d3d789f9bf30921eb0a0ed0c37dc4ca571064bb1f996f82bdbf60b580
2022-05-12 22:27:45,130 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:45,130 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:27:45,131 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:27:45,131 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:27:45,350 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:27:45,351 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'APKkd0cjIsoFPEMRT5VDvMvxOzTKHQqYoMzGsi+xLSoBEG21bssnWx1zZlxFjR5od+pqkUCN+EY=', 'x-amz-request-id': 'KXGHH3PYQK88MBB2', 'Date': 'Thu, 12 May 2022 22:27:46 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 100663296-109051903/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:27:45,351 botocore.parsers DEBUG    Response body:

2022-05-12 22:27:45,351 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:27:45,352 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:27:45,352 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:27:46,651 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84410368}) to executor  for transfer request: 0.
2022-05-12 22:27:46,651 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:46,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) about to wait for the following futures []
2022-05-12 22:27:46,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) done waiting for dependent futures
2022-05-12 22:27:46,652 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84410368}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 84410368}
2022-05-12 22:27:46,653 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:47,697 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:27:47,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:47,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:27:47,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:27:47,698 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 27787264}
2022-05-12 22:27:47,698 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:48,368 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:27:48,368 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:48,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:27:48,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:27:48,369 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 18612224}
2022-05-12 22:27:48,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:48,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:27:48,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:48,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:27:48,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:27:48,802 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 28835840}
2022-05-12 22:27:48,802 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:49,202 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92798976}) to executor  for transfer request: 0.
2022-05-12 22:27:49,202 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:49,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) about to wait for the following futures []
2022-05-12 22:27:49,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) done waiting for dependent futures
2022-05-12 22:27:49,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92798976}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 92798976}
2022-05-12 22:27:49,203 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:50,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:27:50,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:50,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:27:50,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:27:50,443 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 6553600}
2022-05-12 22:27:50,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:52,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:27:52,841 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:52,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:27:52,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:27:52,841 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 14942208}
2022-05-12 22:27:52,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:53,365 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100663296}) to executor  for transfer request: 0.
2022-05-12 22:27:53,365 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:53,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) about to wait for the following futures []
2022-05-12 22:27:53,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) done waiting for dependent futures
2022-05-12 22:27:53,366 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100663296}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 100663296}
2022-05-12 22:27:53,366 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:53,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:27:53,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:53,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:27:53,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:27:53,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 22282240}
2022-05-12 22:27:53,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:54,905 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73400320}) to executor  for transfer request: 0.
2022-05-12 22:27:54,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:54,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) about to wait for the following futures []
2022-05-12 22:27:54,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) done waiting for dependent futures
2022-05-12 22:27:54,906 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73400320}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 73400320}
2022-05-12 22:27:54,907 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,488 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84672512}) to executor  for transfer request: 0.
2022-05-12 22:27:55,488 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) about to wait for the following futures []
2022-05-12 22:27:55,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) done waiting for dependent futures
2022-05-12 22:27:55,489 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84672512}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 84672512}
2022-05-12 22:27:55,489 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:27:56,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:27:56,141 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:27:56,141 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 3407872}
2022-05-12 22:27:56,141 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78905344}) to executor  for transfer request: 0.
2022-05-12 22:27:56,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) about to wait for the following futures []
2022-05-12 22:27:56,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) done waiting for dependent futures
2022-05-12 22:27:56,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78905344}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 78905344}
2022-05-12 22:27:56,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,747 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93061120}) to executor  for transfer request: 0.
2022-05-12 22:27:56,748 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,748 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) about to wait for the following futures []
2022-05-12 22:27:56,748 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) done waiting for dependent futures
2022-05-12 22:27:56,748 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93061120}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 93061120}
2022-05-12 22:27:56,749 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:57,935 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:27:57,935 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:57,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:27:57,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:27:57,936 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 4980736}
2022-05-12 22:27:57,936 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:59,177 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:27:59,177 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:59,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:27:59,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:27:59,177 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 13631488}
2022-05-12 22:27:59,178 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:59,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100925440}) to executor  for transfer request: 0.
2022-05-12 22:27:59,908 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:59,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) about to wait for the following futures []
2022-05-12 22:27:59,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) done waiting for dependent futures
2022-05-12 22:27:59,908 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100925440}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 100925440}
2022-05-12 22:27:59,909 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:00,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:28:00,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:00,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:28:00,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:28:00,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 6815744}
2022-05-12 22:28:00,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:01,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47448064}) to executor  for transfer request: 0.
2022-05-12 22:28:01,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:01,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) about to wait for the following futures []
2022-05-12 22:28:01,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) done waiting for dependent futures
2022-05-12 22:28:01,163 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47448064}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 47448064}
2022-05-12 22:28:01,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:03,846 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:28:03,846 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:03,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:28:03,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:28:03,847 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 20971520}
2022-05-12 22:28:03,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:04,587 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93323264}) to executor  for transfer request: 0.
2022-05-12 22:28:04,588 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:04,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) about to wait for the following futures []
2022-05-12 22:28:04,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) done waiting for dependent futures
2022-05-12 22:28:04,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93323264}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 93323264}
2022-05-12 22:28:04,589 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:04,934 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84934656}) to executor  for transfer request: 0.
2022-05-12 22:28:04,935 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:04,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) about to wait for the following futures []
2022-05-12 22:28:04,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) done waiting for dependent futures
2022-05-12 22:28:04,935 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84934656}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 84934656}
2022-05-12 22:28:04,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,266 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79167488}) to executor  for transfer request: 0.
2022-05-12 22:28:05,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) about to wait for the following futures []
2022-05-12 22:28:05,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) done waiting for dependent futures
2022-05-12 22:28:05,267 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79167488}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 79167488}
2022-05-12 22:28:05,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,704 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:28:05,704 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:28:05,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:28:05,704 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 18874368}
2022-05-12 22:28:05,705 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:06,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:28:06,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:06,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:28:06,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:28:06,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 19922944}
2022-05-12 22:28:06,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:07,197 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73662464}) to executor  for transfer request: 0.
2022-05-12 22:28:07,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:07,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) about to wait for the following futures []
2022-05-12 22:28:07,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) done waiting for dependent futures
2022-05-12 22:28:07,198 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73662464}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 73662464}
2022-05-12 22:28:07,198 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:07,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101187584}) to executor  for transfer request: 0.
2022-05-12 22:28:07,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:07,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) about to wait for the following futures []
2022-05-12 22:28:07,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) done waiting for dependent futures
2022-05-12 22:28:07,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101187584}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 101187584}
2022-05-12 22:28:07,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,327 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:28:08,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:08,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:28:08,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:28:08,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 29097984}
2022-05-12 22:28:08,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,780 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54788096}) to executor  for transfer request: 0.
2022-05-12 22:28:08,780 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:08,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) about to wait for the following futures []
2022-05-12 22:28:08,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) done waiting for dependent futures
2022-05-12 22:28:08,781 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54788096}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 54788096}
2022-05-12 22:28:08,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:09,232 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:28:09,233 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:09,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:28:09,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:28:09,233 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 10485760}
2022-05-12 22:28:09,234 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:10,931 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:28:10,931 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:10,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:28:10,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:28:10,932 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 22544384}
2022-05-12 22:28:10,932 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:11,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:28:11,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:11,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:28:11,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:28:11,201 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 28049408}
2022-05-12 22:28:11,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:28:12,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:12,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:28:12,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:28:12,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 7077888}
2022-05-12 22:28:12,051 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:13,386 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85196800}) to executor  for transfer request: 0.
2022-05-12 22:28:13,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:13,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) about to wait for the following futures []
2022-05-12 22:28:13,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) done waiting for dependent futures
2022-05-12 22:28:13,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85196800}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 85196800}
2022-05-12 22:28:13,387 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:14,428 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:28:14,428 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:14,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:28:14,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:28:14,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 15204352}
2022-05-12 22:28:14,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:14,443 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:28:14,443 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:14,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:28:14,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:28:14,444 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 26214400}
2022-05-12 22:28:14,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:15,033 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73924608}) to executor  for transfer request: 0.
2022-05-12 22:28:15,033 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:15,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) about to wait for the following futures []
2022-05-12 22:28:15,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) done waiting for dependent futures
2022-05-12 22:28:15,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73924608}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 73924608}
2022-05-12 22:28:15,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,366 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:28:16,366 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:28:16,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:28:16,367 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 19136512}
2022-05-12 22:28:16,367 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79429632}) to executor  for transfer request: 0.
2022-05-12 22:28:16,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) about to wait for the following futures []
2022-05-12 22:28:16,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) done waiting for dependent futures
2022-05-12 22:28:16,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79429632}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 79429632}
2022-05-12 22:28:16,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93585408}) to executor  for transfer request: 0.
2022-05-12 22:28:16,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) about to wait for the following futures []
2022-05-12 22:28:16,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) done waiting for dependent futures
2022-05-12 22:28:16,757 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93585408}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 93585408}
2022-05-12 22:28:16,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:17,176 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101449728}) to executor  for transfer request: 0.
2022-05-12 22:28:17,177 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:17,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) about to wait for the following futures []
2022-05-12 22:28:17,177 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) done waiting for dependent futures
2022-05-12 22:28:17,177 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101449728}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 101449728}
2022-05-12 22:28:17,178 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:18,753 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:28:18,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:18,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:28:18,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:28:18,754 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 13893632}
2022-05-12 22:28:18,754 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,527 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:28:19,527 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:28:19,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:28:19,528 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 3670016}
2022-05-12 22:28:19,528 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:21,893 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85458944}) to executor  for transfer request: 0.
2022-05-12 22:28:21,893 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:21,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) about to wait for the following futures []
2022-05-12 22:28:21,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) done waiting for dependent futures
2022-05-12 22:28:21,893 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85458944}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 85458944}
2022-05-12 22:28:21,894 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,114 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93847552}) to executor  for transfer request: 0.
2022-05-12 22:28:22,114 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:22,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) about to wait for the following futures []
2022-05-12 22:28:22,115 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) done waiting for dependent futures
2022-05-12 22:28:22,115 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93847552}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 93847552}
2022-05-12 22:28:22,115 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:23,416 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:28:23,416 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:23,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:28:23,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:28:23,417 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 21233664}
2022-05-12 22:28:23,417 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:23,520 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101711872}) to executor  for transfer request: 0.
2022-05-12 22:28:23,520 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:23,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) about to wait for the following futures []
2022-05-12 22:28:23,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) done waiting for dependent futures
2022-05-12 22:28:23,521 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101711872}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 101711872}
2022-05-12 22:28:23,521 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,125 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:28:25,125 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:28:25,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:28:25,126 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 29360128}
2022-05-12 22:28:25,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,141 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:28:25,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:28:25,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:28:25,142 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 28311552}
2022-05-12 22:28:25,142 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:27,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:27,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:27,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:27,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:27,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 7340032}
2022-05-12 22:28:27,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:28,797 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:28:28,798 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:28,798 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:28:28,798 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:28:28,799 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 5242880}
2022-05-12 22:28:28,799 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:29,086 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74186752}) to executor  for transfer request: 0.
2022-05-12 22:28:29,087 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) about to wait for the following futures []
2022-05-12 22:28:29,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) done waiting for dependent futures
2022-05-12 22:28:29,087 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74186752}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 74186752}
2022-05-12 22:28:29,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:29,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79691776}) to executor  for transfer request: 0.
2022-05-12 22:28:29,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) about to wait for the following futures []
2022-05-12 22:28:29,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) done waiting for dependent futures
2022-05-12 22:28:29,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79691776}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 79691776}
2022-05-12 22:28:29,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:30,224 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:28:30,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:30,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:28:30,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:28:30,225 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 26476544}
2022-05-12 22:28:30,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:30,554 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101974016}) to executor  for transfer request: 0.
2022-05-12 22:28:30,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:30,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) about to wait for the following futures []
2022-05-12 22:28:30,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) done waiting for dependent futures
2022-05-12 22:28:30,555 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101974016}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 101974016}
2022-05-12 22:28:30,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:31,143 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85721088}) to executor  for transfer request: 0.
2022-05-12 22:28:31,143 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:31,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) about to wait for the following futures []
2022-05-12 22:28:31,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) done waiting for dependent futures
2022-05-12 22:28:31,144 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85721088}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 85721088}
2022-05-12 22:28:31,144 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:31,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:28:31,370 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:31,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:28:31,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:28:31,371 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 19398656}
2022-05-12 22:28:31,371 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:32,615 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:28:32,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:32,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:28:32,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:28:32,616 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 22806528}
2022-05-12 22:28:32,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:33,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94109696}) to executor  for transfer request: 0.
2022-05-12 22:28:33,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:33,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) about to wait for the following futures []
2022-05-12 22:28:33,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) done waiting for dependent futures
2022-05-12 22:28:33,418 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94109696}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 94109696}
2022-05-12 22:28:33,418 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:33,571 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:28:33,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:33,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:28:33,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:28:33,572 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 15466496}
2022-05-12 22:28:33,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:33,851 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47710208}) to executor  for transfer request: 0.
2022-05-12 22:28:33,851 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:33,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) about to wait for the following futures []
2022-05-12 22:28:33,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) done waiting for dependent futures
2022-05-12 22:28:33,852 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47710208}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 47710208}
2022-05-12 22:28:33,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:28:35,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:28:35,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:28:35,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 20185088}
2022-05-12 22:28:35,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:36,918 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:28:36,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:36,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:28:36,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:28:36,919 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 7602176}
2022-05-12 22:28:36,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:39,837 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:28:39,837 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:39,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:28:39,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:28:39,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 14155776}
2022-05-12 22:28:39,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74448896}) to executor  for transfer request: 0.
2022-05-12 22:28:40,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) about to wait for the following futures []
2022-05-12 22:28:40,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) done waiting for dependent futures
2022-05-12 22:28:40,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74448896}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 74448896}
2022-05-12 22:28:40,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,464 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85983232}) to executor  for transfer request: 0.
2022-05-12 22:28:40,464 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) about to wait for the following futures []
2022-05-12 22:28:40,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) done waiting for dependent futures
2022-05-12 22:28:40,465 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85983232}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 85983232}
2022-05-12 22:28:40,465 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:41,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94371840}) to executor  for transfer request: 0.
2022-05-12 22:28:41,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:41,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) about to wait for the following futures []
2022-05-12 22:28:41,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) done waiting for dependent futures
2022-05-12 22:28:41,364 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94371840}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 94371840}
2022-05-12 22:28:41,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:41,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:28:41,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:41,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:28:41,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:28:41,477 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 3932160}
2022-05-12 22:28:41,477 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:41,607 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:28:41,607 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:41,608 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:28:41,608 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:28:41,608 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 28573696}
2022-05-12 22:28:41,608 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:42,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:28:42,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:42,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:28:42,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:28:42,597 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 19660800}
2022-05-12 22:28:42,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:43,231 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:28:43,231 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:43,232 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:28:43,232 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:28:43,232 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 10747904}
2022-05-12 22:28:43,233 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:43,285 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79953920}) to executor  for transfer request: 0.
2022-05-12 22:28:43,285 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:43,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) about to wait for the following futures []
2022-05-12 22:28:43,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) done waiting for dependent futures
2022-05-12 22:28:43,286 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79953920}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 79953920}
2022-05-12 22:28:43,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:43,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:28:43,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:43,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:28:43,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:28:43,372 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 7864320}
2022-05-12 22:28:43,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:43,800 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:28:43,800 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:43,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:28:43,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:28:43,801 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 21495808}
2022-05-12 22:28:43,801 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:28:44,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:28:44,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:28:44,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 26738688}
2022-05-12 22:28:44,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,775 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102236160}) to executor  for transfer request: 0.
2022-05-12 22:28:44,775 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) about to wait for the following futures []
2022-05-12 22:28:44,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) done waiting for dependent futures
2022-05-12 22:28:44,776 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102236160}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 102236160}
2022-05-12 22:28:44,776 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:45,445 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47972352}) to executor  for transfer request: 0.
2022-05-12 22:28:45,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:45,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) about to wait for the following futures []
2022-05-12 22:28:45,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) done waiting for dependent futures
2022-05-12 22:28:45,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47972352}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 47972352}
2022-05-12 22:28:45,447 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:46,756 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:28:46,756 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:46,756 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:28:46,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:28:46,757 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 23068672}
2022-05-12 22:28:46,757 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:49,128 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:28:49,128 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:49,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:28:49,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:28:49,128 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 15728640}
2022-05-12 22:28:49,129 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:49,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86245376}) to executor  for transfer request: 0.
2022-05-12 22:28:49,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:49,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) about to wait for the following futures []
2022-05-12 22:28:49,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) done waiting for dependent futures
2022-05-12 22:28:49,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86245376}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 86245376}
2022-05-12 22:28:49,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:49,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:28:49,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:49,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:28:49,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:28:49,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 29622272}
2022-05-12 22:28:49,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74711040}) to executor  for transfer request: 0.
2022-05-12 22:28:50,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:50,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) about to wait for the following futures []
2022-05-12 22:28:50,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) done waiting for dependent futures
2022-05-12 22:28:50,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74711040}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 74711040}
2022-05-12 22:28:50,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:51,527 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94633984}) to executor  for transfer request: 0.
2022-05-12 22:28:51,527 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:51,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) about to wait for the following futures []
2022-05-12 22:28:51,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) done waiting for dependent futures
2022-05-12 22:28:51,528 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94633984}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 94633984}
2022-05-12 22:28:51,528 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:52,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:28:52,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:52,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:28:52,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:28:52,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 29884416}
2022-05-12 22:28:52,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,249 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:28:53,249 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:53,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:28:53,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:28:53,250 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 28835840}
2022-05-12 22:28:53,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102498304}) to executor  for transfer request: 0.
2022-05-12 22:28:53,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:53,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) about to wait for the following futures []
2022-05-12 22:28:53,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) done waiting for dependent futures
2022-05-12 22:28:53,649 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102498304}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 102498304}
2022-05-12 22:28:53,650 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,847 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:28:53,847 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:53,848 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:28:53,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:28:53,848 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 8126464}
2022-05-12 22:28:53,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:53,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:28:53,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:53,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:28:53,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:28:53,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 11010048}
2022-05-12 22:28:53,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:54,111 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48234496}) to executor  for transfer request: 0.
2022-05-12 22:28:54,111 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:54,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) about to wait for the following futures []
2022-05-12 22:28:54,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) done waiting for dependent futures
2022-05-12 22:28:54,112 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48234496}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 48234496}
2022-05-12 22:28:54,112 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:55,130 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:28:55,130 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:55,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:28:55,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:28:55,131 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 14417920}
2022-05-12 22:28:55,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,345 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:28:56,345 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,346 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,346 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:28:56,346 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:28:56,346 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 30146560}
2022-05-12 22:28:56,347 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,441 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:28:56,441 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:28:56,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:28:56,441 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 20447232}
2022-05-12 22:28:56,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,543 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:28:56,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:28:56,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:28:56,544 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 27000832}
2022-05-12 22:28:56,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,558 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:28:56,559 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,559 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:28:56,559 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:28:56,559 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 27787264}
2022-05-12 22:28:56,560 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,013 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80216064}) to executor  for transfer request: 0.
2022-05-12 22:28:57,013 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,013 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) about to wait for the following futures []
2022-05-12 22:28:57,013 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) done waiting for dependent futures
2022-05-12 22:28:57,013 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80216064}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 80216064}
2022-05-12 22:28:57,014 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:58,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86507520}) to executor  for transfer request: 0.
2022-05-12 22:28:58,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:58,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) about to wait for the following futures []
2022-05-12 22:28:58,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) done waiting for dependent futures
2022-05-12 22:28:58,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86507520}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 86507520}
2022-05-12 22:28:58,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:58,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102760448}) to executor  for transfer request: 0.
2022-05-12 22:28:58,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:58,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) about to wait for the following futures []
2022-05-12 22:28:58,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) done waiting for dependent futures
2022-05-12 22:28:58,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102760448}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 102760448}
2022-05-12 22:28:58,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:59,086 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94896128}) to executor  for transfer request: 0.
2022-05-12 22:28:59,087 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:59,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) about to wait for the following futures []
2022-05-12 22:28:59,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) done waiting for dependent futures
2022-05-12 22:28:59,088 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94896128}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 94896128}
2022-05-12 22:28:59,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:00,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74973184}) to executor  for transfer request: 0.
2022-05-12 22:29:00,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:00,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) about to wait for the following futures []
2022-05-12 22:29:00,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) done waiting for dependent futures
2022-05-12 22:29:00,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74973184}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 74973184}
2022-05-12 22:29:00,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48496640}) to executor  for transfer request: 0.
2022-05-12 22:29:02,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:02,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) about to wait for the following futures []
2022-05-12 22:29:02,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) done waiting for dependent futures
2022-05-12 22:29:02,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48496640}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 48496640}
2022-05-12 22:29:02,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,896 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:29:02,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:02,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:29:02,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:29:02,897 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 23330816}
2022-05-12 22:29:02,897 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:03,025 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:29:03,025 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:03,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:29:03,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:29:03,026 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 19922944}
2022-05-12 22:29:03,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:05,377 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:29:05,377 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:05,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:29:05,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:29:05,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 11272192}
2022-05-12 22:29:05,378 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:05,830 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86769664}) to executor  for transfer request: 0.
2022-05-12 22:29:05,831 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:05,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) about to wait for the following futures []
2022-05-12 22:29:05,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) done waiting for dependent futures
2022-05-12 22:29:05,831 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86769664}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 86769664}
2022-05-12 22:29:05,832 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,227 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103022592}) to executor  for transfer request: 0.
2022-05-12 22:29:07,228 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) about to wait for the following futures []
2022-05-12 22:29:07,228 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) done waiting for dependent futures
2022-05-12 22:29:07,228 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103022592}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 103022592}
2022-05-12 22:29:07,228 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,449 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:29:07,449 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:29:07,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:29:07,450 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 15990784}
2022-05-12 22:29:07,450 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,693 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:29:07,693 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:29:07,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:29:07,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 5505024}
2022-05-12 22:29:07,695 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55050240}) to executor  for transfer request: 0.
2022-05-12 22:29:07,809 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) about to wait for the following futures []
2022-05-12 22:29:07,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) done waiting for dependent futures
2022-05-12 22:29:07,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55050240}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 55050240}
2022-05-12 22:29:07,810 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,961 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95158272}) to executor  for transfer request: 0.
2022-05-12 22:29:07,961 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) about to wait for the following futures []
2022-05-12 22:29:07,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) done waiting for dependent futures
2022-05-12 22:29:07,961 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95158272}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 95158272}
2022-05-12 22:29:07,962 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:08,545 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:29:08,545 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:08,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:29:08,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:29:08,546 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 27262976}
2022-05-12 22:29:08,546 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:29:09,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:29:09,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:29:09,859 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 10223616}
2022-05-12 22:29:09,860 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:10,377 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:29:10,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:10,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:29:10,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:29:10,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 4194304}
2022-05-12 22:29:10,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:10,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:29:10,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:10,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:29:10,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:29:10,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 20709376}
2022-05-12 22:29:10,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:10,659 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75235328}) to executor  for transfer request: 0.
2022-05-12 22:29:10,659 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:10,660 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:10,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) about to wait for the following futures []
2022-05-12 22:29:10,660 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) about to wait for the following futures []
2022-05-12 22:29:10,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) done waiting for dependent futures
2022-05-12 22:29:10,660 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) done waiting for dependent futures
2022-05-12 22:29:10,661 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75235328}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 75235328}
2022-05-12 22:29:10,661 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=109051904-117440511'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 109051904, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:10,661 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:10,661 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:10,661 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:10,662 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:10,662 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:10,662 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:10,662 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:10,662 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:10,663 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:29:10,663 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:10,663 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:10,663 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=109051904-117440511', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:10,663 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:10,663 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:10,663 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:10,663 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:10,663 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:10,663 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:10,663 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:29:10,663 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:29:10,663 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:10,664 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=109051904-117440511
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222910Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:10,664 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222910Z
20220512/eu-central-1/s3/aws4_request
2e1c87c92abc077788ac8128b9ae912f14d023508ffcfb24ee81e52c7c8afeb6
2022-05-12 22:29:10,664 botocore.auth DEBUG    Signature:
af96e244053c2148f2f99f0c20060fb0f8870e04e6f1ab97a45ede200d03a476
2022-05-12 22:29:10,664 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:10,664 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:10,664 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:10,664 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:10,699 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:29:10,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:10,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:29:10,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:29:10,700 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 29097984}
2022-05-12 22:29:10,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:10,896 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:10,897 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qZRDnE6T7hQduKvpC1GV2/wB9ESL6ncc81W8gdqy8A/uMTUXJHffYzkN3ZOGN2FqpXMdQAd5YpE=', 'x-amz-request-id': 'C8TJ2MB59GCR0DRT', 'Date': 'Thu, 12 May 2022 22:29:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 109051904-117440511/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:10,897 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:10,897 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:10,898 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:10,898 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:11,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48758784}) to executor  for transfer request: 0.
2022-05-12 22:29:11,565 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:11,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) about to wait for the following futures []
2022-05-12 22:29:11,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) done waiting for dependent futures
2022-05-12 22:29:11,565 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48758784}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 48758784}
2022-05-12 22:29:11,565 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:11,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:29:11,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:11,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:29:11,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:29:11,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 21757952}
2022-05-12 22:29:11,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:13,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80478208}) to executor  for transfer request: 0.
2022-05-12 22:29:13,146 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:13,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) about to wait for the following futures []
2022-05-12 22:29:13,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) done waiting for dependent futures
2022-05-12 22:29:13,146 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80478208}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 80478208}
2022-05-12 22:29:13,147 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:13,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:29:13,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:13,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:29:13,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:29:13,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 11534336}
2022-05-12 22:29:13,746 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,655 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95420416}) to executor  for transfer request: 0.
2022-05-12 22:29:14,655 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,655 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) about to wait for the following futures []
2022-05-12 22:29:14,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) done waiting for dependent futures
2022-05-12 22:29:14,656 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95420416}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 95420416}
2022-05-12 22:29:14,656 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87031808}) to executor  for transfer request: 0.
2022-05-12 22:29:14,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) about to wait for the following futures []
2022-05-12 22:29:14,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) done waiting for dependent futures
2022-05-12 22:29:14,767 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87031808}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 87031808}
2022-05-12 22:29:14,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103284736}) to executor  for transfer request: 0.
2022-05-12 22:29:15,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) about to wait for the following futures []
2022-05-12 22:29:15,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) done waiting for dependent futures
2022-05-12 22:29:15,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103284736}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 103284736}
2022-05-12 22:29:15,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:18,095 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:29:18,096 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:18,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:29:18,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:29:18,096 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 14680064}
2022-05-12 22:29:18,096 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,013 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49020928}) to executor  for transfer request: 0.
2022-05-12 22:29:21,013 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:21,013 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) about to wait for the following futures []
2022-05-12 22:29:21,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) done waiting for dependent futures
2022-05-12 22:29:21,014 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49020928}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 49020928}
2022-05-12 22:29:21,014 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,016 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:29:21,016 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:21,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:29:21,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:29:21,017 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 20185088}
2022-05-12 22:29:21,017 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:29:21,758 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:21,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:29:21,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:29:21,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 23592960}
2022-05-12 22:29:21,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:22,625 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109051904}) to executor  for transfer request: 0.
2022-05-12 22:29:22,625 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:22,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) about to wait for the following futures []
2022-05-12 22:29:22,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) done waiting for dependent futures
2022-05-12 22:29:22,625 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109051904}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 109051904}
2022-05-12 22:29:22,626 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:23,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:29:23,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:23,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:29:23,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:29:23,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 11796480}
2022-05-12 22:29:23,045 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:23,584 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87293952}) to executor  for transfer request: 0.
2022-05-12 22:29:23,585 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:23,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) about to wait for the following futures []
2022-05-12 22:29:23,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) done waiting for dependent futures
2022-05-12 22:29:23,585 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87293952}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 87293952}
2022-05-12 22:29:23,586 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:24,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95682560}) to executor  for transfer request: 0.
2022-05-12 22:29:24,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:24,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) about to wait for the following futures []
2022-05-12 22:29:24,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) done waiting for dependent futures
2022-05-12 22:29:24,020 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95682560}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 95682560}
2022-05-12 22:29:24,020 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:24,688 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:29:24,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:24,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:29:24,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:29:24,689 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 27525120}
2022-05-12 22:29:24,689 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:25,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103546880}) to executor  for transfer request: 0.
2022-05-12 22:29:25,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:25,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) about to wait for the following futures []
2022-05-12 22:29:25,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) done waiting for dependent futures
2022-05-12 22:29:25,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103546880}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 103546880}
2022-05-12 22:29:25,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:25,286 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:29:25,286 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:25,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:29:25,286 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:29:25,286 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 20971520}
2022-05-12 22:29:25,287 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:25,669 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:29:25,669 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:25,669 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:29:25,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:29:25,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 16252928}
2022-05-12 22:29:25,670 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,314 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:29:27,314 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:27,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:29:27,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:29:27,315 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 4456448}
2022-05-12 22:29:27,315 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:28,972 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:29:28,972 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:28,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:29:28,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:29:28,973 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 29360128}
2022-05-12 22:29:28,973 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:30,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:29:30,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:30,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:29:30,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:29:30,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 12058624}
2022-05-12 22:29:30,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:30,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80740352}) to executor  for transfer request: 0.
2022-05-12 22:29:30,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:30,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) about to wait for the following futures []
2022-05-12 22:29:30,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) done waiting for dependent futures
2022-05-12 22:29:30,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80740352}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 80740352}
2022-05-12 22:29:30,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:31,163 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95944704}) to executor  for transfer request: 0.
2022-05-12 22:29:31,163 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:31,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) about to wait for the following futures []
2022-05-12 22:29:31,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) done waiting for dependent futures
2022-05-12 22:29:31,164 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95944704}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 95944704}
2022-05-12 22:29:31,164 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:31,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49283072}) to executor  for transfer request: 0.
2022-05-12 22:29:31,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:31,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) about to wait for the following futures []
2022-05-12 22:29:31,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) done waiting for dependent futures
2022-05-12 22:29:31,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49283072}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 49283072}
2022-05-12 22:29:31,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:31,941 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103809024}) to executor  for transfer request: 0.
2022-05-12 22:29:31,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:31,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) about to wait for the following futures []
2022-05-12 22:29:31,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) done waiting for dependent futures
2022-05-12 22:29:31,941 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103809024}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 103809024}
2022-05-12 22:29:31,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:32,266 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87556096}) to executor  for transfer request: 0.
2022-05-12 22:29:32,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:32,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) about to wait for the following futures []
2022-05-12 22:29:32,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) done waiting for dependent futures
2022-05-12 22:29:32,267 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87556096}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 87556096}
2022-05-12 22:29:32,268 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:34,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:29:34,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:34,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:29:34,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:29:34,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 22020096}
2022-05-12 22:29:34,046 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:35,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:29:35,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:35,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:29:35,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:29:35,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 14942208}
2022-05-12 22:29:35,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:35,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109314048}) to executor  for transfer request: 0.
2022-05-12 22:29:35,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:35,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) about to wait for the following futures []
2022-05-12 22:29:35,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) done waiting for dependent futures
2022-05-12 22:29:35,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109314048}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 109314048}
2022-05-12 22:29:35,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:35,717 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96206848}) to executor  for transfer request: 0.
2022-05-12 22:29:35,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:35,718 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) about to wait for the following futures []
2022-05-12 22:29:35,718 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) done waiting for dependent futures
2022-05-12 22:29:35,718 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96206848}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 96206848}
2022-05-12 22:29:35,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:29:37,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:29:37,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:29:37,389 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 21233664}
2022-05-12 22:29:37,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:38,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:29:38,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:38,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:29:38,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:29:38,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 20447232}
2022-05-12 22:29:38,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:38,931 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87818240}) to executor  for transfer request: 0.
2022-05-12 22:29:38,931 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:38,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) about to wait for the following futures []
2022-05-12 22:29:38,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) done waiting for dependent futures
2022-05-12 22:29:38,932 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87818240}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 87818240}
2022-05-12 22:29:38,932 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:39,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:29:39,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:39,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:29:39,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:29:39,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 5767168}
2022-05-12 22:29:39,679 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:40,218 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:29:40,219 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:40,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:29:40,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:29:40,219 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 23855104}
2022-05-12 22:29:40,219 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:40,717 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104071168}) to executor  for transfer request: 0.
2022-05-12 22:29:40,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:40,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) about to wait for the following futures []
2022-05-12 22:29:40,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) done waiting for dependent futures
2022-05-12 22:29:40,717 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104071168}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 104071168}
2022-05-12 22:29:40,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,271 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49545216}) to executor  for transfer request: 0.
2022-05-12 22:29:41,271 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) about to wait for the following futures []
2022-05-12 22:29:41,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) done waiting for dependent futures
2022-05-12 22:29:41,271 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49545216}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 49545216}
2022-05-12 22:29:41,272 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,493 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81002496}) to executor  for transfer request: 0.
2022-05-12 22:29:41,493 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:29:41,493 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,493 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) about to wait for the following futures []
2022-05-12 22:29:41,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) done waiting for dependent futures
2022-05-12 22:29:41,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:29:41,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:29:41,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81002496}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 81002496}
2022-05-12 22:29:41,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 12320768}
2022-05-12 22:29:41,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,890 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:29:41,890 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:29:41,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:29:41,891 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 27787264}
2022-05-12 22:29:41,891 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,958 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96468992}) to executor  for transfer request: 0.
2022-05-12 22:29:41,958 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) about to wait for the following futures []
2022-05-12 22:29:41,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) done waiting for dependent futures
2022-05-12 22:29:41,959 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96468992}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 96468992}
2022-05-12 22:29:41,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,991 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109576192}) to executor  for transfer request: 0.
2022-05-12 22:29:41,992 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) about to wait for the following futures []
2022-05-12 22:29:41,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) done waiting for dependent futures
2022-05-12 22:29:41,992 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109576192}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 109576192}
2022-05-12 22:29:41,993 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:42,494 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:29:42,494 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:42,495 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:42,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:29:42,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:29:42,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 16515072}
2022-05-12 22:29:42,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:43,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:29:43,355 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:43,355 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:29:43,355 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:29:43,355 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 29622272}
2022-05-12 22:29:43,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:45,409 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88080384}) to executor  for transfer request: 0.
2022-05-12 22:29:45,409 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:45,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) about to wait for the following futures []
2022-05-12 22:29:45,410 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) done waiting for dependent futures
2022-05-12 22:29:45,410 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88080384}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 88080384}
2022-05-12 22:29:45,410 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:46,240 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:29:46,240 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:46,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:29:46,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:29:46,240 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 4718592}
2022-05-12 22:29:46,241 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:46,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49807360}) to executor  for transfer request: 0.
2022-05-12 22:29:46,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:46,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) about to wait for the following futures []
2022-05-12 22:29:46,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) done waiting for dependent futures
2022-05-12 22:29:46,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49807360}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 49807360}
2022-05-12 22:29:46,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:48,703 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104333312}) to executor  for transfer request: 0.
2022-05-12 22:29:48,703 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:48,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) about to wait for the following futures []
2022-05-12 22:29:48,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) done waiting for dependent futures
2022-05-12 22:29:48,704 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104333312}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 104333312}
2022-05-12 22:29:48,704 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:48,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55312384}) to executor  for transfer request: 0.
2022-05-12 22:29:48,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:48,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) about to wait for the following futures []
2022-05-12 22:29:48,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) done waiting for dependent futures
2022-05-12 22:29:48,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55312384}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 55312384}
2022-05-12 22:29:48,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:48,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96731136}) to executor  for transfer request: 0.
2022-05-12 22:29:48,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:48,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) about to wait for the following futures []
2022-05-12 22:29:48,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) done waiting for dependent futures
2022-05-12 22:29:48,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96731136}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 96731136}
2022-05-12 22:29:48,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:49,972 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:29:49,973 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:49,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:29:49,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:29:49,973 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 21495808}
2022-05-12 22:29:49,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,035 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:29:51,035 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,035 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:29:51,035 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:29:51,036 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 22282240}
2022-05-12 22:29:51,036 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,115 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88342528}) to executor  for transfer request: 0.
2022-05-12 22:29:51,115 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,115 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) about to wait for the following futures []
2022-05-12 22:29:51,115 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) done waiting for dependent futures
2022-05-12 22:29:51,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88342528}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 88342528}
2022-05-12 22:29:51,116 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109838336}) to executor  for transfer request: 0.
2022-05-12 22:29:51,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) about to wait for the following futures []
2022-05-12 22:29:51,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) done waiting for dependent futures
2022-05-12 22:29:51,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109838336}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 109838336}
2022-05-12 22:29:51,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,191 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81264640}) to executor  for transfer request: 0.
2022-05-12 22:29:51,191 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) about to wait for the following futures []
2022-05-12 22:29:51,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) done waiting for dependent futures
2022-05-12 22:29:51,191 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81264640}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 81264640}
2022-05-12 22:29:51,192 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:29:51,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:29:51,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:29:51,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 28049408}
2022-05-12 22:29:51,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:52,156 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:29:52,156 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:52,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:29:52,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:29:52,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 12582912}
2022-05-12 22:29:52,157 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:54,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:29:54,127 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:54,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:29:54,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:29:54,127 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 15204352}
2022-05-12 22:29:54,128 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:54,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:29:54,395 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:54,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:29:54,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:29:54,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 20709376}
2022-05-12 22:29:54,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:54,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96993280}) to executor  for transfer request: 0.
2022-05-12 22:29:54,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:54,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) about to wait for the following futures []
2022-05-12 22:29:54,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) done waiting for dependent futures
2022-05-12 22:29:54,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96993280}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 96993280}
2022-05-12 22:29:54,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:56,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88604672}) to executor  for transfer request: 0.
2022-05-12 22:29:56,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:56,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) about to wait for the following futures []
2022-05-12 22:29:56,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) done waiting for dependent futures
2022-05-12 22:29:56,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88604672}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 88604672}
2022-05-12 22:29:56,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:57,093 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50069504}) to executor  for transfer request: 0.
2022-05-12 22:29:57,093 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:57,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:57,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) about to wait for the following futures []
2022-05-12 22:29:57,093 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) about to wait for the following futures []
2022-05-12 22:29:57,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) done waiting for dependent futures
2022-05-12 22:29:57,094 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) done waiting for dependent futures
2022-05-12 22:29:57,094 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50069504}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 50069504}
2022-05-12 22:29:57,094 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=117440512-125829119'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 117440512, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:57,095 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:57,095 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:57,095 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:57,095 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:57,095 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:57,095 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:57,096 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:57,096 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:57,096 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:29:57,096 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:57,096 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:57,096 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=117440512-125829119', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:57,096 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:57,096 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:57,096 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:57,096 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:57,096 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:57,096 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:57,096 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:29:57,096 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:29:57,096 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:57,096 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=117440512-125829119
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222957Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:57,096 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222957Z
20220512/eu-central-1/s3/aws4_request
17f5ec3d7846d919dc72a7a7ae8d5ac238505684c0aae1d5dc7a419744fd1682
2022-05-12 22:29:57,097 botocore.auth DEBUG    Signature:
00e601f7495c1cb68b3216398890d8b16095ea6b42fb4dd1d61ab556ab547739
2022-05-12 22:29:57,097 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:57,097 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:57,097 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:57,097 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:57,277 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:57,278 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'rTgNUMWpegbGVd/wtJis7oea7jKjrzW9dcQuVSRsUxtrjReASgUy2LQXyj3QSX1cjBuEbXoAoHQ=', 'x-amz-request-id': 'F5K2X40WHXQ0FGAJ', 'Date': 'Thu, 12 May 2022 22:29:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 117440512-125829119/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:57,278 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:57,279 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:57,279 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:57,279 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:57,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:29:57,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:57,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:29:57,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:29:57,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 24117248}
2022-05-12 22:29:57,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:59,011 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81526784}) to executor  for transfer request: 0.
2022-05-12 22:29:59,011 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:59,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) about to wait for the following futures []
2022-05-12 22:29:59,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) done waiting for dependent futures
2022-05-12 22:29:59,012 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81526784}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 81526784}
2022-05-12 22:29:59,012 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:59,878 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110100480}) to executor  for transfer request: 0.
2022-05-12 22:29:59,878 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:59,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) about to wait for the following futures []
2022-05-12 22:29:59,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) done waiting for dependent futures
2022-05-12 22:29:59,879 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110100480}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 110100480}
2022-05-12 22:29:59,879 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:59,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104595456}) to executor  for transfer request: 0.
2022-05-12 22:29:59,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:59,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) about to wait for the following futures []
2022-05-12 22:29:59,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) done waiting for dependent futures
2022-05-12 22:29:59,927 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104595456}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 104595456}
2022-05-12 22:29:59,927 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,443 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:30:00,443 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:30:00,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:30:00,444 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 12845056}
2022-05-12 22:30:00,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,895 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:30:00,895 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:30:00,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:30:00,896 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 21757952}
2022-05-12 22:30:00,896 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:01,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55574528}) to executor  for transfer request: 0.
2022-05-12 22:30:01,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:01,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) about to wait for the following futures []
2022-05-12 22:30:01,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) done waiting for dependent futures
2022-05-12 22:30:01,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55574528}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 55574528}
2022-05-12 22:30:01,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:01,546 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:30:01,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:01,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:30:01,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:30:01,547 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 15466496}
2022-05-12 22:30:01,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:30:02,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:30:02,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:30:02,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 29884416}
2022-05-12 22:30:02,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,254 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97255424}) to executor  for transfer request: 0.
2022-05-12 22:30:02,254 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) about to wait for the following futures []
2022-05-12 22:30:02,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) done waiting for dependent futures
2022-05-12 22:30:02,255 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97255424}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 97255424}
2022-05-12 22:30:02,255 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,983 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88866816}) to executor  for transfer request: 0.
2022-05-12 22:30:02,983 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) about to wait for the following futures []
2022-05-12 22:30:02,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) done waiting for dependent futures
2022-05-12 22:30:02,984 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88866816}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 88866816}
2022-05-12 22:30:02,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:04,728 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:30:04,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:04,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:30:04,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:30:04,729 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 28311552}
2022-05-12 22:30:04,730 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:05,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:30:05,219 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:05,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:30:05,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:30:05,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 4980736}
2022-05-12 22:30:05,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:07,096 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:30:07,097 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:07,097 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:07,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:30:07,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:30:07,097 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 30146560}
2022-05-12 22:30:07,098 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:07,434 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110362624}) to executor  for transfer request: 0.
2022-05-12 22:30:07,435 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:07,435 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) about to wait for the following futures []
2022-05-12 22:30:07,435 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) done waiting for dependent futures
2022-05-12 22:30:07,435 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110362624}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 110362624}
2022-05-12 22:30:07,436 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:09,835 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117440512}) to executor  for transfer request: 0.
2022-05-12 22:30:09,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:09,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) about to wait for the following futures []
2022-05-12 22:30:09,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) done waiting for dependent futures
2022-05-12 22:30:09,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117440512}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 117440512}
2022-05-12 22:30:09,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:09,856 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97517568}) to executor  for transfer request: 0.
2022-05-12 22:30:09,856 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:09,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) about to wait for the following futures []
2022-05-12 22:30:09,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) done waiting for dependent futures
2022-05-12 22:30:09,857 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97517568}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 97517568}
2022-05-12 22:30:09,857 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:10,064 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:30:10,064 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:10,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:30:10,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:30:10,065 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 13107200}
2022-05-12 22:30:10,065 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:10,833 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:30:10,833 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:10,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:30:10,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:30:10,834 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 15728640}
2022-05-12 22:30:10,834 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:10,847 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104857600}) to executor  for transfer request: 0.
2022-05-12 22:30:10,847 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:10,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) about to wait for the following futures []
2022-05-12 22:30:10,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) done waiting for dependent futures
2022-05-12 22:30:10,848 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104857600}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 104857600}
2022-05-12 22:30:10,848 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:11,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:30:11,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:11,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:30:11,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:30:11,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 20971520}
2022-05-12 22:30:11,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:11,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89128960}) to executor  for transfer request: 0.
2022-05-12 22:30:11,458 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:11,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) about to wait for the following futures []
2022-05-12 22:30:11,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) done waiting for dependent futures
2022-05-12 22:30:11,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89128960}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 89128960}
2022-05-12 22:30:11,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,366 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:30:13,367 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:30:13,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:30:13,367 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 22544384}
2022-05-12 22:30:13,368 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,520 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55836672}) to executor  for transfer request: 0.
2022-05-12 22:30:13,520 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) about to wait for the following futures []
2022-05-12 22:30:13,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) done waiting for dependent futures
2022-05-12 22:30:13,521 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55836672}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 55836672}
2022-05-12 22:30:13,521 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,543 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81788928}) to executor  for transfer request: 0.
2022-05-12 22:30:13,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) about to wait for the following futures []
2022-05-12 22:30:13,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) done waiting for dependent futures
2022-05-12 22:30:13,544 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81788928}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 81788928}
2022-05-12 22:30:13,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:14,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:30:14,539 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:14,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:30:14,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:30:14,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 22020096}
2022-05-12 22:30:14,540 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:14,923 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105119744}) to executor  for transfer request: 0.
2022-05-12 22:30:14,923 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:14,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) about to wait for the following futures []
2022-05-12 22:30:14,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) done waiting for dependent futures
2022-05-12 22:30:14,924 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105119744}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 105119744}
2022-05-12 22:30:14,924 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:16,533 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117702656}) to executor  for transfer request: 0.
2022-05-12 22:30:16,533 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:16,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) about to wait for the following futures []
2022-05-12 22:30:16,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) done waiting for dependent futures
2022-05-12 22:30:16,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117702656}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 117702656}
2022-05-12 22:30:16,534 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:16,759 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:30:16,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:16,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:30:16,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:30:16,760 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 6029312}
2022-05-12 22:30:16,760 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:16,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110624768}) to executor  for transfer request: 0.
2022-05-12 22:30:16,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:16,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) about to wait for the following futures []
2022-05-12 22:30:16,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) done waiting for dependent futures
2022-05-12 22:30:16,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110624768}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 110624768}
2022-05-12 22:30:16,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:17,261 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:30:17,261 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:17,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:30:17,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:30:17,261 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 24379392}
2022-05-12 22:30:17,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:17,505 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89391104}) to executor  for transfer request: 0.
2022-05-12 22:30:17,505 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:17,505 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) about to wait for the following futures []
2022-05-12 22:30:17,505 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) done waiting for dependent futures
2022-05-12 22:30:17,506 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89391104}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 89391104}
2022-05-12 22:30:17,506 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:18,039 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97779712}) to executor  for transfer request: 0.
2022-05-12 22:30:18,040 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:18,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) about to wait for the following futures []
2022-05-12 22:30:18,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) done waiting for dependent futures
2022-05-12 22:30:18,040 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97779712}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 97779712}
2022-05-12 22:30:18,041 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:18,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105381888}) to executor  for transfer request: 0.
2022-05-12 22:30:18,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:18,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) about to wait for the following futures []
2022-05-12 22:30:18,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) done waiting for dependent futures
2022-05-12 22:30:18,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105381888}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 105381888}
2022-05-12 22:30:18,929 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:19,748 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:30:19,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:19,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:30:19,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:30:19,749 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 13369344}
2022-05-12 22:30:19,750 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,205 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:30:20,205 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:30:20,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:30:20,206 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 28049408}
2022-05-12 22:30:20,206 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:21,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:30:21,324 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:21,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:30:21,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:30:21,324 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 15990784}
2022-05-12 22:30:21,325 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:22,179 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:30:22,179 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:22,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:30:22,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:30:22,180 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 10485760}
2022-05-12 22:30:22,180 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:23,703 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:30:23,703 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:23,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:30:23,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:30:23,704 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 28573696}
2022-05-12 22:30:23,704 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89653248}) to executor  for transfer request: 0.
2022-05-12 22:30:24,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) about to wait for the following futures []
2022-05-12 22:30:24,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) done waiting for dependent futures
2022-05-12 22:30:24,269 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89653248}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 89653248}
2022-05-12 22:30:24,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,350 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82051072}) to executor  for transfer request: 0.
2022-05-12 22:30:24,350 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) about to wait for the following futures []
2022-05-12 22:30:24,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) done waiting for dependent futures
2022-05-12 22:30:24,351 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82051072}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 82051072}
2022-05-12 22:30:24,351 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98041856}) to executor  for transfer request: 0.
2022-05-12 22:30:24,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) about to wait for the following futures []
2022-05-12 22:30:24,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) done waiting for dependent futures
2022-05-12 22:30:24,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98041856}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 98041856}
2022-05-12 22:30:24,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,843 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56098816}) to executor  for transfer request: 0.
2022-05-12 22:30:24,843 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) about to wait for the following futures []
2022-05-12 22:30:24,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) done waiting for dependent futures
2022-05-12 22:30:24,843 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56098816}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 56098816}
2022-05-12 22:30:24,843 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:25,492 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110886912}) to executor  for transfer request: 0.
2022-05-12 22:30:25,492 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:25,492 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) about to wait for the following futures []
2022-05-12 22:30:25,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) done waiting for dependent futures
2022-05-12 22:30:25,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110886912}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 110886912}
2022-05-12 22:30:25,493 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:25,791 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:30:25,791 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:25,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:30:25,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:30:25,791 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 21233664}
2022-05-12 22:30:25,791 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:30:26,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:30:26,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:30:26,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 22806528}
2022-05-12 22:30:26,428 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105644032}) to executor  for transfer request: 0.
2022-05-12 22:30:26,796 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) about to wait for the following futures []
2022-05-12 22:30:26,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) done waiting for dependent futures
2022-05-12 22:30:26,797 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105644032}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 105644032}
2022-05-12 22:30:26,798 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:28,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:30:28,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:28,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:30:28,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:30:28,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 13631488}
2022-05-12 22:30:28,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:29,485 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117964800}) to executor  for transfer request: 0.
2022-05-12 22:30:29,485 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:29,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) about to wait for the following futures []
2022-05-12 22:30:29,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) done waiting for dependent futures
2022-05-12 22:30:29,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117964800}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 117964800}
2022-05-12 22:30:29,486 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:29,521 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98304000}) to executor  for transfer request: 0.
2022-05-12 22:30:29,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:29,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) about to wait for the following futures []
2022-05-12 22:30:29,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) done waiting for dependent futures
2022-05-12 22:30:29,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98304000}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 98304000}
2022-05-12 22:30:29,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:29,918 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105906176}) to executor  for transfer request: 0.
2022-05-12 22:30:29,919 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:29,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) about to wait for the following futures []
2022-05-12 22:30:29,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) done waiting for dependent futures
2022-05-12 22:30:29,919 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105906176}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 105906176}
2022-05-12 22:30:29,920 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:29,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:30:29,981 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:29,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:30:29,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:30:29,982 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 16252928}
2022-05-12 22:30:29,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:30,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:30:30,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:30,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:30:30,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:30:30,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 22282240}
2022-05-12 22:30:30,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:30:36,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:30:36,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:30:36,175 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 24641536}
2022-05-12 22:30:36,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:30:36,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:30:36,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:30:36,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 13893632}
2022-05-12 22:30:36,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,952 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89915392}) to executor  for transfer request: 0.
2022-05-12 22:30:36,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) about to wait for the following futures []
2022-05-12 22:30:36,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) done waiting for dependent futures
2022-05-12 22:30:36,953 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89915392}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 89915392}
2022-05-12 22:30:36,953 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:37,477 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98566144}) to executor  for transfer request: 0.
2022-05-12 22:30:37,477 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:37,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) about to wait for the following futures []
2022-05-12 22:30:37,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) done waiting for dependent futures
2022-05-12 22:30:37,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98566144}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 98566144}
2022-05-12 22:30:37,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:37,582 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:30:37,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:37,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:30:37,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:30:37,583 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 22544384}
2022-05-12 22:30:37,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:38,053 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:30:38,053 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:38,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:38,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:30:38,054 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) about to wait for the following futures []
2022-05-12 22:30:38,054 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:30:38,054 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) done waiting for dependent futures
2022-05-12 22:30:38,054 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 16515072}
2022-05-12 22:30:38,054 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=125829120-134217727'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 125829120, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:30:38,054 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:38,054 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:38,055 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:38,055 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:38,055 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:38,055 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:38,055 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:38,056 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:30:38,056 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:30:38,056 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:38,056 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:38,056 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=125829120-134217727', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:30:38,056 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:38,056 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:30:38,056 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:38,056 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:38,056 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:30:38,056 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:30:38,056 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:30:38,057 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:30:38,057 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:30:38,057 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=125829120-134217727
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223038Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:30:38,057 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223038Z
20220512/eu-central-1/s3/aws4_request
11f4e68be8a3d13ffc8f914cf935685f6893764e4415310a8353fb936d4015df
2022-05-12 22:30:38,057 botocore.auth DEBUG    Signature:
cbf5d0f89fe2c2e6ae61690dbba704914e994fc5adb1020a5b1a12eb485e0224
2022-05-12 22:30:38,057 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:38,058 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:38,058 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:30:38,058 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:30:38,285 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:30:38,285 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'vDE9efnQu9Wy6tyMNK5b534XeHDKulZAls1L5AABSwd7wq0Tft6FlV/eOLi6cpjlSj4gmz6ovvE=', 'x-amz-request-id': 'NNFTEG6ZBEJTWZEP', 'Date': 'Thu, 12 May 2022 22:30:39 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 125829120-134217727/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:30:38,286 botocore.parsers DEBUG    Response body:

2022-05-12 22:30:38,287 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:30:38,287 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:30:38,287 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:30:38,876 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:30:38,876 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:38,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:30:38,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:30:38,877 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 5242880}
2022-05-12 22:30:38,877 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82313216}) to executor  for transfer request: 0.
2022-05-12 22:30:39,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) about to wait for the following futures []
2022-05-12 22:30:39,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) done waiting for dependent futures
2022-05-12 22:30:39,463 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82313216}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 82313216}
2022-05-12 22:30:39,463 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,590 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:30:39,590 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:30:39,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:30:39,591 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 21495808}
2022-05-12 22:30:39,591 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,824 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:30:39,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:30:39,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:30:39,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 28311552}
2022-05-12 22:30:39,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:40,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98828288}) to executor  for transfer request: 0.
2022-05-12 22:30:40,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:40,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) about to wait for the following futures []
2022-05-12 22:30:40,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) done waiting for dependent futures
2022-05-12 22:30:40,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98828288}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 98828288}
2022-05-12 22:30:40,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:40,810 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106168320}) to executor  for transfer request: 0.
2022-05-12 22:30:40,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:40,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) about to wait for the following futures []
2022-05-12 22:30:40,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) done waiting for dependent futures
2022-05-12 22:30:40,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106168320}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 106168320}
2022-05-12 22:30:40,811 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:42,111 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:30:42,111 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:42,111 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:30:42,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:30:42,112 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 6291456}
2022-05-12 22:30:42,112 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:42,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118226944}) to executor  for transfer request: 0.
2022-05-12 22:30:42,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:42,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) about to wait for the following futures []
2022-05-12 22:30:42,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) done waiting for dependent futures
2022-05-12 22:30:42,994 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118226944}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 118226944}
2022-05-12 22:30:42,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,210 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:30:43,210 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:30:43,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:30:43,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 14155776}
2022-05-12 22:30:43,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111149056}) to executor  for transfer request: 0.
2022-05-12 22:30:43,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) about to wait for the following futures []
2022-05-12 22:30:43,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) done waiting for dependent futures
2022-05-12 22:30:43,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111149056}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 111149056}
2022-05-12 22:30:43,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56360960}) to executor  for transfer request: 0.
2022-05-12 22:30:43,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) about to wait for the following futures []
2022-05-12 22:30:43,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) done waiting for dependent futures
2022-05-12 22:30:43,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56360960}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 56360960}
2022-05-12 22:30:43,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,942 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:30:43,942 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:30:43,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:30:43,943 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 23068672}
2022-05-12 22:30:43,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:30:43,990 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,991 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) about to wait for the following futures []
2022-05-12 22:30:43,991 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) done waiting for dependent futures
2022-05-12 22:30:43,991 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=134217728-142606335'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 134217728, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:30:43,991 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:43,991 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:43,991 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:43,992 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:43,992 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:43,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:30:43,992 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:43,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:30:43,993 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:30:43,993 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 24903680}
2022-05-12 22:30:43,993 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:30:43,993 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:43,993 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:43,993 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=134217728-142606335', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:30:43,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,994 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:43,994 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:30:43,994 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:43,994 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:43,994 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:30:43,994 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:30:43,994 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:30:43,994 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:30:43,994 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:30:43,994 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=134217728-142606335
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223043Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:30:43,994 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223043Z
20220512/eu-central-1/s3/aws4_request
7c560b13efab94436d23556e6c3774dd8bbd9f11aea67a74c6e506ebe69c9cd4
2022-05-12 22:30:43,995 botocore.auth DEBUG    Signature:
f2fa8b2e6b18cbe5f68e0a97809f260b34416d4194e1939aaac8c9554289b562
2022-05-12 22:30:43,995 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:43,995 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:43,995 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:30:43,995 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:30:44,187 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:30:44,187 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Wh4X6AdDYwgjgsMQWeHlug97a5ZxVmLM4ne26f825dHS5jXhlLyICRNG0b2X/479xIk8EX5kR5Q=', 'x-amz-request-id': '3PSB4WD9JFACZCNT', 'Date': 'Thu, 12 May 2022 22:30:45 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 134217728-142606335/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:30:44,188 botocore.parsers DEBUG    Response body:

2022-05-12 22:30:44,188 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:30:44,188 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:30:44,188 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:30:44,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125829120}) to executor  for transfer request: 0.
2022-05-12 22:30:44,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) about to wait for the following futures []
2022-05-12 22:30:44,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) done waiting for dependent futures
2022-05-12 22:30:44,702 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125829120}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 125829120}
2022-05-12 22:30:44,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:44,818 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:30:44,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:30:44,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:30:44,819 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 22806528}
2022-05-12 22:30:44,819 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:45,088 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90177536}) to executor  for transfer request: 0.
2022-05-12 22:30:45,088 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:45,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) about to wait for the following futures []
2022-05-12 22:30:45,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) done waiting for dependent futures
2022-05-12 22:30:45,088 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90177536}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 90177536}
2022-05-12 22:30:45,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:46,892 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99090432}) to executor  for transfer request: 0.
2022-05-12 22:30:46,892 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:46,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) about to wait for the following futures []
2022-05-12 22:30:46,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) done waiting for dependent futures
2022-05-12 22:30:46,893 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99090432}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 99090432}
2022-05-12 22:30:46,893 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:47,784 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106430464}) to executor  for transfer request: 0.
2022-05-12 22:30:47,785 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:47,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) about to wait for the following futures []
2022-05-12 22:30:47,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) done waiting for dependent futures
2022-05-12 22:30:47,785 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106430464}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 106430464}
2022-05-12 22:30:47,786 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:47,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:30:47,925 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:47,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:30:47,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:30:47,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 5505024}
2022-05-12 22:30:47,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:48,336 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:30:48,336 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:48,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:30:48,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:30:48,337 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 21757952}
2022-05-12 22:30:48,337 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:30:49,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:30:49,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:30:49,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 10747904}
2022-05-12 22:30:49,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,479 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82575360}) to executor  for transfer request: 0.
2022-05-12 22:30:49,479 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) about to wait for the following futures []
2022-05-12 22:30:49,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) done waiting for dependent futures
2022-05-12 22:30:49,480 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82575360}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 82575360}
2022-05-12 22:30:49,480 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:50,900 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118489088}) to executor  for transfer request: 0.
2022-05-12 22:30:50,900 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:50,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) about to wait for the following futures []
2022-05-12 22:30:50,901 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) done waiting for dependent futures
2022-05-12 22:30:50,901 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118489088}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 118489088}
2022-05-12 22:30:50,901 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:50,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:30:50,925 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:50,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:30:50,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:30:50,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 28835840}
2022-05-12 22:30:50,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:51,450 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:30:51,450 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:51,451 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:30:51,451 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:30:51,451 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 14417920}
2022-05-12 22:30:51,451 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:51,606 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90439680}) to executor  for transfer request: 0.
2022-05-12 22:30:51,606 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:51,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) about to wait for the following futures []
2022-05-12 22:30:51,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) done waiting for dependent futures
2022-05-12 22:30:51,607 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90439680}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 90439680}
2022-05-12 22:30:51,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:51,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111411200}) to executor  for transfer request: 0.
2022-05-12 22:30:51,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:51,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) about to wait for the following futures []
2022-05-12 22:30:51,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) done waiting for dependent futures
2022-05-12 22:30:51,736 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111411200}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 111411200}
2022-05-12 22:30:51,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:52,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:30:52,227 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:52,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:30:52,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:30:52,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 6553600}
2022-05-12 22:30:52,228 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:52,549 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134217728}) to executor  for transfer request: 0.
2022-05-12 22:30:52,549 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:52,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) about to wait for the following futures []
2022-05-12 22:30:52,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) done waiting for dependent futures
2022-05-12 22:30:52,550 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134217728}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 134217728}
2022-05-12 22:30:52,550 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:52,697 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99352576}) to executor  for transfer request: 0.
2022-05-12 22:30:52,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:52,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) about to wait for the following futures []
2022-05-12 22:30:52,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) done waiting for dependent futures
2022-05-12 22:30:52,698 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99352576}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 99352576}
2022-05-12 22:30:52,698 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:52,702 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126091264}) to executor  for transfer request: 0.
2022-05-12 22:30:52,702 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:52,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) about to wait for the following futures []
2022-05-12 22:30:52,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) done waiting for dependent futures
2022-05-12 22:30:52,703 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126091264}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 126091264}
2022-05-12 22:30:52,704 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,513 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:30:55,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:30:55,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:30:55,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 23068672}
2022-05-12 22:30:55,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,831 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:30:55,831 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:30:55,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:30:55,832 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 28573696}
2022-05-12 22:30:55,832 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106692608}) to executor  for transfer request: 0.
2022-05-12 22:30:56,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) about to wait for the following futures []
2022-05-12 22:30:56,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) done waiting for dependent futures
2022-05-12 22:30:56,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106692608}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 106692608}
2022-05-12 22:30:56,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:30:56,921 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:30:56,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:30:56,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 5767168}
2022-05-12 22:30:56,922 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:57,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118751232}) to executor  for transfer request: 0.
2022-05-12 22:30:57,059 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:57,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) about to wait for the following futures []
2022-05-12 22:30:57,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) done waiting for dependent futures
2022-05-12 22:30:57,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118751232}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 118751232}
2022-05-12 22:30:57,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:57,413 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82837504}) to executor  for transfer request: 0.
2022-05-12 22:30:57,413 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:57,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) about to wait for the following futures []
2022-05-12 22:30:57,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) done waiting for dependent futures
2022-05-12 22:30:57,414 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82837504}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 82837504}
2022-05-12 22:30:57,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:58,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:30:58,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:58,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:30:58,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:30:58,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 23330816}
2022-05-12 22:30:58,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:00,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56623104}) to executor  for transfer request: 0.
2022-05-12 22:31:00,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:00,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) about to wait for the following futures []
2022-05-12 22:31:00,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) done waiting for dependent futures
2022-05-12 22:31:00,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56623104}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 56623104}
2022-05-12 22:31:00,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:00,032 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90701824}) to executor  for transfer request: 0.
2022-05-12 22:31:00,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:00,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) about to wait for the following futures []
2022-05-12 22:31:00,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) done waiting for dependent futures
2022-05-12 22:31:00,032 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90701824}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 90701824}
2022-05-12 22:31:00,033 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:00,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99614720}) to executor  for transfer request: 0.
2022-05-12 22:31:00,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:00,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) about to wait for the following futures []
2022-05-12 22:31:00,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) done waiting for dependent futures
2022-05-12 22:31:00,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99614720}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 99614720}
2022-05-12 22:31:00,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:00,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126353408}) to executor  for transfer request: 0.
2022-05-12 22:31:00,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:00,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) about to wait for the following futures []
2022-05-12 22:31:00,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) done waiting for dependent futures
2022-05-12 22:31:00,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126353408}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 126353408}
2022-05-12 22:31:00,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:00,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111673344}) to executor  for transfer request: 0.
2022-05-12 22:31:00,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:00,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) about to wait for the following futures []
2022-05-12 22:31:00,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) done waiting for dependent futures
2022-05-12 22:31:00,767 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111673344}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 111673344}
2022-05-12 22:31:00,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:01,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134479872}) to executor  for transfer request: 0.
2022-05-12 22:31:01,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:01,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) about to wait for the following futures []
2022-05-12 22:31:01,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) done waiting for dependent futures
2022-05-12 22:31:01,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134479872}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 134479872}
2022-05-12 22:31:01,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:01,523 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:31:01,524 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:01,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:31:01,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:31:01,524 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 14680064}
2022-05-12 22:31:01,525 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:02,468 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106954752}) to executor  for transfer request: 0.
2022-05-12 22:31:02,468 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:02,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) about to wait for the following futures []
2022-05-12 22:31:02,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) done waiting for dependent futures
2022-05-12 22:31:02,468 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106954752}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 106954752}
2022-05-12 22:31:02,468 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:02,609 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:31:02,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:02,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:31:02,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:31:02,610 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 6815744}
2022-05-12 22:31:02,610 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,308 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:31:03,308 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,309 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:31:03,309 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:31:03,309 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 11010048}
2022-05-12 22:31:03,309 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,405 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:31:03,405 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:31:03,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:31:03,406 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 22020096}
2022-05-12 22:31:03,406 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:05,064 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:31:05,065 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:05,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:31:05,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:31:05,065 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 23330816}
2022-05-12 22:31:05,065 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:05,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:31:05,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:05,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:31:05,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:31:05,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 6029312}
2022-05-12 22:31:05,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83099648}) to executor  for transfer request: 0.
2022-05-12 22:31:06,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) about to wait for the following futures []
2022-05-12 22:31:06,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) done waiting for dependent futures
2022-05-12 22:31:06,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83099648}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 83099648}
2022-05-12 22:31:06,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:07,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119013376}) to executor  for transfer request: 0.
2022-05-12 22:31:07,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:07,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) about to wait for the following futures []
2022-05-12 22:31:07,050 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) done waiting for dependent futures
2022-05-12 22:31:07,050 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119013376}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 119013376}
2022-05-12 22:31:07,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:07,506 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:31:07,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:07,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:31:07,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:31:07,507 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 28835840}
2022-05-12 22:31:07,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:08,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99876864}) to executor  for transfer request: 0.
2022-05-12 22:31:08,317 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:08,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) about to wait for the following futures []
2022-05-12 22:31:08,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) done waiting for dependent futures
2022-05-12 22:31:08,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99876864}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 99876864}
2022-05-12 22:31:08,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:08,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:31:08,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:08,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:31:08,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:31:08,365 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 23592960}
2022-05-12 22:31:08,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,022 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126615552}) to executor  for transfer request: 0.
2022-05-12 22:31:09,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) about to wait for the following futures []
2022-05-12 22:31:09,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) done waiting for dependent futures
2022-05-12 22:31:09,023 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126615552}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 126615552}
2022-05-12 22:31:09,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111935488}) to executor  for transfer request: 0.
2022-05-12 22:31:09,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) about to wait for the following futures []
2022-05-12 22:31:09,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) done waiting for dependent futures
2022-05-12 22:31:09,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111935488}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 111935488}
2022-05-12 22:31:09,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,984 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134742016}) to executor  for transfer request: 0.
2022-05-12 22:31:09,984 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) about to wait for the following futures []
2022-05-12 22:31:09,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) done waiting for dependent futures
2022-05-12 22:31:09,985 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134742016}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 134742016}
2022-05-12 22:31:09,985 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107216896}) to executor  for transfer request: 0.
2022-05-12 22:31:10,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) about to wait for the following futures []
2022-05-12 22:31:10,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) done waiting for dependent futures
2022-05-12 22:31:10,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107216896}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 107216896}
2022-05-12 22:31:10,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90963968}) to executor  for transfer request: 0.
2022-05-12 22:31:10,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) about to wait for the following futures []
2022-05-12 22:31:10,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) done waiting for dependent futures
2022-05-12 22:31:10,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90963968}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 90963968}
2022-05-12 22:31:10,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:11,819 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:31:11,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:11,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:31:11,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:31:11,820 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 14942208}
2022-05-12 22:31:11,820 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:12,155 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56885248}) to executor  for transfer request: 0.
2022-05-12 22:31:12,155 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:12,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) about to wait for the following futures []
2022-05-12 22:31:12,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) done waiting for dependent futures
2022-05-12 22:31:12,156 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56885248}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 56885248}
2022-05-12 22:31:12,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:13,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119275520}) to executor  for transfer request: 0.
2022-05-12 22:31:13,169 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:13,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) about to wait for the following futures []
2022-05-12 22:31:13,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) done waiting for dependent futures
2022-05-12 22:31:13,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119275520}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 119275520}
2022-05-12 22:31:13,170 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:15,151 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:31:15,152 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:15,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:31:15,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:31:15,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 23855104}
2022-05-12 22:31:15,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:15,955 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:31:15,955 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:15,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:31:15,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:31:15,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 7077888}
2022-05-12 22:31:15,956 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,709 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126877696}) to executor  for transfer request: 0.
2022-05-12 22:31:16,709 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) about to wait for the following futures []
2022-05-12 22:31:16,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) done waiting for dependent futures
2022-05-12 22:31:16,709 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126877696}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 126877696}
2022-05-12 22:31:16,710 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,845 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:31:16,845 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:31:16,846 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:31:16,846 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 29097984}
2022-05-12 22:31:16,846 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,208 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:31:17,208 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:31:17,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:31:17,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 23592960}
2022-05-12 22:31:17,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107479040}) to executor  for transfer request: 0.
2022-05-12 22:31:17,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) about to wait for the following futures []
2022-05-12 22:31:17,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) done waiting for dependent futures
2022-05-12 22:31:17,424 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107479040}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 107479040}
2022-05-12 22:31:17,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,561 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83361792}) to executor  for transfer request: 0.
2022-05-12 22:31:17,561 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) about to wait for the following futures []
2022-05-12 22:31:17,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) done waiting for dependent futures
2022-05-12 22:31:17,562 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83361792}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 83361792}
2022-05-12 22:31:17,562 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,768 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:31:17,769 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:31:17,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:31:17,769 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 22282240}
2022-05-12 22:31:17,769 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,893 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112197632}) to executor  for transfer request: 0.
2022-05-12 22:31:17,893 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) about to wait for the following futures []
2022-05-12 22:31:17,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) done waiting for dependent futures
2022-05-12 22:31:17,893 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112197632}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 112197632}
2022-05-12 22:31:17,894 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100139008}) to executor  for transfer request: 0.
2022-05-12 22:31:19,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) about to wait for the following futures []
2022-05-12 22:31:19,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) done waiting for dependent futures
2022-05-12 22:31:19,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100139008}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 100139008}
2022-05-12 22:31:19,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,144 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:31:19,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:31:19,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:31:19,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 6291456}
2022-05-12 22:31:19,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91226112}) to executor  for transfer request: 0.
2022-05-12 22:31:19,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) about to wait for the following futures []
2022-05-12 22:31:19,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) done waiting for dependent futures
2022-05-12 22:31:19,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91226112}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 91226112}
2022-05-12 22:31:19,375 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,621 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:31:19,621 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:31:19,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:31:19,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 15204352}
2022-05-12 22:31:19,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135004160}) to executor  for transfer request: 0.
2022-05-12 22:31:19,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) about to wait for the following futures []
2022-05-12 22:31:19,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) done waiting for dependent futures
2022-05-12 22:31:19,723 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135004160}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 135004160}
2022-05-12 22:31:19,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:31:19,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:31:19,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:31:19,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 29097984}
2022-05-12 22:31:19,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:20,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:31:20,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:20,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:31:20,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:31:20,002 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 11272192}
2022-05-12 22:31:20,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:22,344 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107741184}) to executor  for transfer request: 0.
2022-05-12 22:31:22,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:22,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) about to wait for the following futures []
2022-05-12 22:31:22,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) done waiting for dependent futures
2022-05-12 22:31:22,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107741184}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 107741184}
2022-05-12 22:31:22,345 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:22,592 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119537664}) to executor  for transfer request: 0.
2022-05-12 22:31:22,592 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:22,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) about to wait for the following futures []
2022-05-12 22:31:22,592 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) done waiting for dependent futures
2022-05-12 22:31:22,593 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119537664}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 119537664}
2022-05-12 22:31:22,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:22,625 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57147392}) to executor  for transfer request: 0.
2022-05-12 22:31:22,625 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:22,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) about to wait for the following futures []
2022-05-12 22:31:22,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) done waiting for dependent futures
2022-05-12 22:31:22,626 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57147392}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 57147392}
2022-05-12 22:31:22,626 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:22,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100401152}) to executor  for transfer request: 0.
2022-05-12 22:31:22,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:22,766 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:22,766 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) about to wait for the following futures []
2022-05-12 22:31:22,766 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) done waiting for dependent futures
2022-05-12 22:31:22,767 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=142606336-150994943'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 142606336, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:22,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:22,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:22,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:22,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) about to wait for the following futures []
2022-05-12 22:31:22,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) done waiting for dependent futures
2022-05-12 22:31:22,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:22,768 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100401152}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 100401152}
2022-05-12 22:31:22,768 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:22,768 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:22,768 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:22,768 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:22,769 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:22,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:22,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:22,769 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=142606336-150994943', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:22,769 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:22,769 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:22,769 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:22,769 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:22,769 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:22,770 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:22,770 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:22,770 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:22,770 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:22,770 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=142606336-150994943
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223122Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:22,770 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223122Z
20220512/eu-central-1/s3/aws4_request
9e93997d68e019844bf87934089471cb9772dd38a15b7fdfbbdcc4b873a41b50
2022-05-12 22:31:22,770 botocore.auth DEBUG    Signature:
69056635c86298c138bd8f55bd80e8ae00d22ce85c48eb014753dae5cce10935
2022-05-12 22:31:22,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:22,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:22,771 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:22,771 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:22,771 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:31:25,125 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127139840}) to executor  for transfer request: 0.
2022-05-12 22:31:25,125 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:25,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) about to wait for the following futures []
2022-05-12 22:31:25,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) done waiting for dependent futures
2022-05-12 22:31:25,126 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127139840}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 127139840}
2022-05-12 22:31:25,126 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:25,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:31:25,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:25,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:31:25,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:31:25,179 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 23855104}
2022-05-12 22:31:25,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:25,180 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91488256}) to executor  for transfer request: 0.
2022-05-12 22:31:25,180 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:25,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) about to wait for the following futures []
2022-05-12 22:31:25,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) done waiting for dependent futures
2022-05-12 22:31:25,180 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91488256}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 91488256}
2022-05-12 22:31:25,181 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:25,636 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108003328}) to executor  for transfer request: 0.
2022-05-12 22:31:25,636 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:25,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) about to wait for the following futures []
2022-05-12 22:31:25,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) done waiting for dependent futures
2022-05-12 22:31:25,636 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108003328}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 108003328}
2022-05-12 22:31:25,637 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:26,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112459776}) to executor  for transfer request: 0.
2022-05-12 22:31:26,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:26,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) about to wait for the following futures []
2022-05-12 22:31:26,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) done waiting for dependent futures
2022-05-12 22:31:26,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112459776}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 112459776}
2022-05-12 22:31:26,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:26,823 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:31:26,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:26,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:31:26,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:31:26,823 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 15466496}
2022-05-12 22:31:26,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:28,216 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:28,216 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7ukvV/Nv7b8JEO2UYGidLaTzZ9meudEXGqPQ/lQKwDjGyDAh91kCYsiX/pJwug3Pk8EbOPpDeHc=', 'x-amz-request-id': '8GVS2MCF7P615CVJ', 'Date': 'Thu, 12 May 2022 22:31:29 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 142606336-150994943/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:31:28,216 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:28,217 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:28,217 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:28,217 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:28,299 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:31:28,299 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:28,299 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:31:28,299 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:31:28,300 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 24117248}
2022-05-12 22:31:28,300 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:28,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:31:28,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:28,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:31:28,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:31:28,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 7340032}
2022-05-12 22:31:28,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,075 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83623936}) to executor  for transfer request: 0.
2022-05-12 22:31:29,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,075 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,075 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) about to wait for the following futures []
2022-05-12 22:31:29,075 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) done waiting for dependent futures
2022-05-12 22:31:29,075 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=150994944-159383551'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 150994944, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:29,076 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:29,076 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:29,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) about to wait for the following futures []
2022-05-12 22:31:29,076 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:29,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) done waiting for dependent futures
2022-05-12 22:31:29,076 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:29,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83623936}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 83623936}
2022-05-12 22:31:29,077 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:29,077 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:29,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,077 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:29,078 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:29,078 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:29,078 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:29,078 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=150994944-159383551', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:29,078 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:29,078 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:29,078 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:29,078 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:29,078 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:29,078 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:29,078 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:29,078 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:29,078 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:29,078 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=150994944-159383551
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223129Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:29,078 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223129Z
20220512/eu-central-1/s3/aws4_request
ea6de69f22600b4648a91a694f8f00a98f4f3d3520afe371c92565eaca94af2f
2022-05-12 22:31:29,078 botocore.auth DEBUG    Signature:
48d38fe00f2e39e4d93ccd6da7fb86ddd2dd16941e462752f84ae7acea7381da
2022-05-12 22:31:29,078 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:29,078 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:29,079 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:29,079 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:29,722 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:29,722 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ZIE9DnoDJLT261bhgUMFfVll4BsvrgDIwTW45hnx/GEbASOTW/00V/fkVkqggOyOUuBCL/iKXO8=', 'x-amz-request-id': 'GYNFRME0QNES8SG3', 'Date': 'Thu, 12 May 2022 22:31:30 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 150994944-159383551/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:31:29,722 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:29,723 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:29,723 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:29,723 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:29,884 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:31:29,884 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:31:29,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:31:29,885 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 6553600}
2022-05-12 22:31:29,885 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,925 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:31:29,925 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:31:29,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:31:29,926 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 22544384}
2022-05-12 22:31:29,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,188 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135266304}) to executor  for transfer request: 0.
2022-05-12 22:31:30,189 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) about to wait for the following futures []
2022-05-12 22:31:30,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) done waiting for dependent futures
2022-05-12 22:31:30,189 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135266304}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 135266304}
2022-05-12 22:31:30,189 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,416 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119799808}) to executor  for transfer request: 0.
2022-05-12 22:31:30,416 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) about to wait for the following futures []
2022-05-12 22:31:30,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) done waiting for dependent futures
2022-05-12 22:31:30,417 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119799808}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 119799808}
2022-05-12 22:31:30,417 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,629 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:31:30,629 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:31:30,630 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:31:30,630 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 29360128}
2022-05-12 22:31:30,631 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:31,691 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108265472}) to executor  for transfer request: 0.
2022-05-12 22:31:31,692 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:31,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) about to wait for the following futures []
2022-05-12 22:31:31,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) done waiting for dependent futures
2022-05-12 22:31:31,692 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108265472}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 108265472}
2022-05-12 22:31:31,692 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:32,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91750400}) to executor  for transfer request: 0.
2022-05-12 22:31:32,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:32,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) about to wait for the following futures []
2022-05-12 22:31:32,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) done waiting for dependent futures
2022-05-12 22:31:32,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91750400}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 91750400}
2022-05-12 22:31:32,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:32,210 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:31:32,210 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:32,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:31:32,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:31:32,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 11534336}
2022-05-12 22:31:32,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:32,276 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127401984}) to executor  for transfer request: 0.
2022-05-12 22:31:32,276 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:32,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) about to wait for the following futures []
2022-05-12 22:31:32,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) done waiting for dependent futures
2022-05-12 22:31:32,276 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127401984}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 127401984}
2022-05-12 22:31:32,277 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:34,720 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57409536}) to executor  for transfer request: 0.
2022-05-12 22:31:34,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:34,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) about to wait for the following futures []
2022-05-12 22:31:34,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) done waiting for dependent futures
2022-05-12 22:31:34,721 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57409536}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 57409536}
2022-05-12 22:31:34,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:35,281 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:31:35,281 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:35,281 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:31:35,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:31:35,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 24379392}
2022-05-12 22:31:35,282 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:35,383 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142606336}) to executor  for transfer request: 0.
2022-05-12 22:31:35,383 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:35,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) about to wait for the following futures []
2022-05-12 22:31:35,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) done waiting for dependent futures
2022-05-12 22:31:35,383 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142606336}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 142606336}
2022-05-12 22:31:35,384 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:35,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112721920}) to executor  for transfer request: 0.
2022-05-12 22:31:35,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:35,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) about to wait for the following futures []
2022-05-12 22:31:35,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) done waiting for dependent futures
2022-05-12 22:31:35,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112721920}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 112721920}
2022-05-12 22:31:35,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:36,017 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120061952}) to executor  for transfer request: 0.
2022-05-12 22:31:36,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:36,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) about to wait for the following futures []
2022-05-12 22:31:36,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) done waiting for dependent futures
2022-05-12 22:31:36,018 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120061952}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 120061952}
2022-05-12 22:31:36,019 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:36,743 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:31:36,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:36,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:31:36,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:31:36,744 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 24117248}
2022-05-12 22:31:36,744 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,383 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:31:37,384 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:31:37,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:31:37,384 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 7602176}
2022-05-12 22:31:37,384 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:38,237 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108527616}) to executor  for transfer request: 0.
2022-05-12 22:31:38,237 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:38,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) about to wait for the following futures []
2022-05-12 22:31:38,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) done waiting for dependent futures
2022-05-12 22:31:38,238 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108527616}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 108527616}
2022-05-12 22:31:38,238 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:39,677 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92012544}) to executor  for transfer request: 0.
2022-05-12 22:31:39,677 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:39,677 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:39,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) about to wait for the following futures []
2022-05-12 22:31:39,677 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) about to wait for the following futures []
2022-05-12 22:31:39,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) done waiting for dependent futures
2022-05-12 22:31:39,678 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) done waiting for dependent futures
2022-05-12 22:31:39,678 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92012544}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 92012544}
2022-05-12 22:31:39,679 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=159383552-167772159'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 159383552, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:39,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:39,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:39,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:39,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:39,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:39,680 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:39,680 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:39,680 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:39,680 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:39,680 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:39,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:39,680 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=159383552-167772159', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:39,681 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:39,681 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:39,681 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:39,681 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:39,681 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:39,681 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:39,681 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:39,681 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:39,682 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:39,682 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=159383552-167772159
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223139Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:39,682 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223139Z
20220512/eu-central-1/s3/aws4_request
6d8cbfa4f8bf8c808bce552667c9f8c8458c94df3d13dd2fabe750c0859cb4e2
2022-05-12 22:31:39,682 botocore.auth DEBUG    Signature:
ec2ceeeb995ff1006d4530da12ce9b1ec15ad902698730438f168a964cae1c15
2022-05-12 22:31:39,682 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:39,682 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:39,682 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:39,682 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:39,682 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:31:41,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:31:41,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:31:41,150 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:31:41,150 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 15728640}
2022-05-12 22:31:41,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127664128}) to executor  for transfer request: 0.
2022-05-12 22:31:41,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) about to wait for the following futures []
2022-05-12 22:31:41,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) done waiting for dependent futures
2022-05-12 22:31:41,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127664128}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 127664128}
2022-05-12 22:31:41,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108789760}) to executor  for transfer request: 0.
2022-05-12 22:31:41,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,687 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) about to wait for the following futures []
2022-05-12 22:31:41,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) about to wait for the following futures []
2022-05-12 22:31:41,687 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) done waiting for dependent futures
2022-05-12 22:31:41,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) done waiting for dependent futures
2022-05-12 22:31:41,688 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=167772160-176160767'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 167772160, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:41,688 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108789760}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 108789760}
2022-05-12 22:31:41,688 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:41,688 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:41,688 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:41,688 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:41,689 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,689 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:41,689 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:41,689 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:41,689 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:41,690 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:41,690 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:41,690 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=167772160-176160767', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:41,690 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:41,690 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:41,690 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:41,690 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:41,690 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:41,691 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:41,691 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:41,691 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:31:41,691 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:41,691 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=167772160-176160767
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223141Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:41,691 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223141Z
20220512/eu-central-1/s3/aws4_request
20ed9e6f15bef2198dcb93cbd26b51882d0deb428cb103f6cd774c01e110a67a
2022-05-12 22:31:41,691 botocore.auth DEBUG    Signature:
dde1e45d314107ae0354dcc1fae7d66ca3e1ffe0b6552489cbebdae92941023a
2022-05-12 22:31:41,692 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:41,692 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:41,692 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:41,692 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:41,692 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:31:42,094 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150994944}) to executor  for transfer request: 0.
2022-05-12 22:31:42,095 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) about to wait for the following futures []
2022-05-12 22:31:42,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) done waiting for dependent futures
2022-05-12 22:31:42,095 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150994944}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 150994944}
2022-05-12 22:31:42,096 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120324096}) to executor  for transfer request: 0.
2022-05-12 22:31:42,295 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) about to wait for the following futures []
2022-05-12 22:31:42,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) done waiting for dependent futures
2022-05-12 22:31:42,295 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120324096}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 120324096}
2022-05-12 22:31:42,296 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,385 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112984064}) to executor  for transfer request: 0.
2022-05-12 22:31:42,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) about to wait for the following futures []
2022-05-12 22:31:42,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) done waiting for dependent futures
2022-05-12 22:31:42,386 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112984064}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 112984064}
2022-05-12 22:31:42,387 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,400 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142868480}) to executor  for transfer request: 0.
2022-05-12 22:31:42,400 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) about to wait for the following futures []
2022-05-12 22:31:42,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) done waiting for dependent futures
2022-05-12 22:31:42,400 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142868480}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 142868480}
2022-05-12 22:31:42,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,789 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:42,790 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HnbAzzNG+JRtre4YPpiO9JFozRIvqyTsvoBpc04A4xpusjDDBPc6ee/Ci6A06P8qnU/TFi8rT6M=', 'x-amz-request-id': '8H41JZBXGRAR28JB', 'Date': 'Thu, 12 May 2022 22:31:43 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 159383552-167772159/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:31:42,790 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:42,791 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:42,791 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:42,791 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:42,854 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:42,854 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'FqYqrXo2I31v+s9b+LO0eRsQYaZBZGaXHjcSo/ChZSgdbom8yEg4i25MSJobKdXuog+gtVkQ0tg=', 'x-amz-request-id': '8H4BZY1TF3W1GBXR', 'Date': 'Thu, 12 May 2022 22:31:43 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 167772160-176160767/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:31:42,854 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:42,855 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:42,855 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:42,855 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:43,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:31:43,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:43,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:31:43,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:31:43,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 11796480}
2022-05-12 22:31:43,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:44,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:31:44,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:44,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:31:44,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:31:44,184 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 22806528}
2022-05-12 22:31:44,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:44,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:31:44,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:44,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:31:44,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:31:44,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 29622272}
2022-05-12 22:31:44,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:45,472 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135528448}) to executor  for transfer request: 0.
2022-05-12 22:31:45,473 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:45,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) about to wait for the following futures []
2022-05-12 22:31:45,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) done waiting for dependent futures
2022-05-12 22:31:45,473 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135528448}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 135528448}
2022-05-12 22:31:45,474 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:45,498 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:31:45,498 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:45,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:31:45,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:31:45,499 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 24641536}
2022-05-12 22:31:45,499 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:45,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:31:45,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:45,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:31:45,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:31:45,767 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 29360128}
2022-05-12 22:31:45,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:46,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159383552}) to executor  for transfer request: 0.
2022-05-12 22:31:46,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:46,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) about to wait for the following futures []
2022-05-12 22:31:46,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) done waiting for dependent futures
2022-05-12 22:31:46,496 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159383552}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 159383552}
2022-05-12 22:31:46,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:46,749 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127926272}) to executor  for transfer request: 0.
2022-05-12 22:31:46,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:46,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) about to wait for the following futures []
2022-05-12 22:31:46,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) done waiting for dependent futures
2022-05-12 22:31:46,750 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127926272}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 127926272}
2022-05-12 22:31:46,750 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:48,217 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120586240}) to executor  for transfer request: 0.
2022-05-12 22:31:48,217 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:48,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) about to wait for the following futures []
2022-05-12 22:31:48,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) done waiting for dependent futures
2022-05-12 22:31:48,218 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120586240}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 120586240}
2022-05-12 22:31:48,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:48,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:31:48,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:48,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:31:48,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:31:48,252 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 24379392}
2022-05-12 22:31:48,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167772160}) to executor  for transfer request: 0.
2022-05-12 22:31:49,260 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) about to wait for the following futures []
2022-05-12 22:31:49,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) done waiting for dependent futures
2022-05-12 22:31:49,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167772160}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 167772160}
2022-05-12 22:31:49,261 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143130624}) to executor  for transfer request: 0.
2022-05-12 22:31:49,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) about to wait for the following futures []
2022-05-12 22:31:49,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) done waiting for dependent futures
2022-05-12 22:31:49,476 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143130624}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 143130624}
2022-05-12 22:31:49,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:50,179 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57671680}) to executor  for transfer request: 0.
2022-05-12 22:31:50,179 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:50,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) about to wait for the following futures []
2022-05-12 22:31:50,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) done waiting for dependent futures
2022-05-12 22:31:50,180 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57671680}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 57671680}
2022-05-12 22:31:50,180 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:50,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113246208}) to executor  for transfer request: 0.
2022-05-12 22:31:50,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:50,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) about to wait for the following futures []
2022-05-12 22:31:50,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) done waiting for dependent futures
2022-05-12 22:31:50,252 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113246208}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 113246208}
2022-05-12 22:31:50,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:50,421 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:31:50,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:50,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:31:50,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:31:50,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 6815744}
2022-05-12 22:31:50,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:50,619 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:31:50,619 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:50,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:31:50,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:31:50,620 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 7864320}
2022-05-12 22:31:50,620 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:52,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151257088}) to executor  for transfer request: 0.
2022-05-12 22:31:52,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:52,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) about to wait for the following futures []
2022-05-12 22:31:52,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) done waiting for dependent futures
2022-05-12 22:31:52,360 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151257088}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 151257088}
2022-05-12 22:31:52,361 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:53,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159645696}) to executor  for transfer request: 0.
2022-05-12 22:31:53,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:53,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) about to wait for the following futures []
2022-05-12 22:31:53,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) done waiting for dependent futures
2022-05-12 22:31:53,389 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159645696}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 159645696}
2022-05-12 22:31:53,390 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:53,608 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:31:53,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:53,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:31:53,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:31:53,609 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 15990784}
2022-05-12 22:31:53,610 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:53,770 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128188416}) to executor  for transfer request: 0.
2022-05-12 22:31:53,770 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:53,770 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) about to wait for the following futures []
2022-05-12 22:31:53,770 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) done waiting for dependent futures
2022-05-12 22:31:53,770 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128188416}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 128188416}
2022-05-12 22:31:53,771 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:55,032 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:31:55,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:55,032 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:55,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:31:55,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:31:55,033 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 24903680}
2022-05-12 22:31:55,033 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:55,155 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:31:55,156 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:55,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:31:55,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:31:55,156 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 23068672}
2022-05-12 22:31:55,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:55,159 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:31:55,159 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:55,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:31:55,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:31:55,159 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 12058624}
2022-05-12 22:31:55,160 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:56,400 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135790592}) to executor  for transfer request: 0.
2022-05-12 22:31:56,400 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:56,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) about to wait for the following futures []
2022-05-12 22:31:56,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) done waiting for dependent futures
2022-05-12 22:31:56,401 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135790592}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 135790592}
2022-05-12 22:31:56,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:56,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120848384}) to executor  for transfer request: 0.
2022-05-12 22:31:56,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:56,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) about to wait for the following futures []
2022-05-12 22:31:56,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) done waiting for dependent futures
2022-05-12 22:31:56,554 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120848384}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 120848384}
2022-05-12 22:31:56,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:56,748 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:31:56,748 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:56,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:31:56,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:31:56,749 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 24641536}
2022-05-12 22:31:56,749 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:57,298 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113508352}) to executor  for transfer request: 0.
2022-05-12 22:31:57,298 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:57,299 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) about to wait for the following futures []
2022-05-12 22:31:57,299 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) done waiting for dependent futures
2022-05-12 22:31:57,299 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113508352}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 113508352}
2022-05-12 22:31:57,299 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:57,527 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143392768}) to executor  for transfer request: 0.
2022-05-12 22:31:57,527 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:57,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) about to wait for the following futures []
2022-05-12 22:31:57,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) done waiting for dependent futures
2022-05-12 22:31:57,528 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143392768}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 143392768}
2022-05-12 22:31:57,528 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:57,709 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:31:57,710 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:57,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:31:57,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:31:57,710 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 29884416}
2022-05-12 22:31:57,711 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:59,811 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:31:59,811 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:59,811 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:59,811 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:31:59,811 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:31:59,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 8126464}
2022-05-12 22:31:59,812 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159907840}) to executor  for transfer request: 0.
2022-05-12 22:32:00,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) about to wait for the following futures []
2022-05-12 22:32:00,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) done waiting for dependent futures
2022-05-12 22:32:00,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159907840}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 159907840}
2022-05-12 22:32:00,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:01,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:32:01,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:01,036 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:32:01,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:32:01,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:01,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:32:01,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:01,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 30146560}
2022-05-12 22:32:01,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:01,037 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:32:01,037 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:32:01,038 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:32:01,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:02,032 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151519232}) to executor  for transfer request: 0.
2022-05-12 22:32:02,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:02,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) about to wait for the following futures []
2022-05-12 22:32:02,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) done waiting for dependent futures
2022-05-12 22:32:02,033 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151519232}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 151519232}
2022-05-12 22:32:02,033 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:02,400 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57933824}) to executor  for transfer request: 0.
2022-05-12 22:32:02,400 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:02,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) about to wait for the following futures []
2022-05-12 22:32:02,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) done waiting for dependent futures
2022-05-12 22:32:02,400 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57933824}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 57933824}
2022-05-12 22:32:02,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:02,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:32:02,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:02,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:32:02,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:32:02,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 16252928}
2022-05-12 22:32:02,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:02,799 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128450560}) to executor  for transfer request: 0.
2022-05-12 22:32:02,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:02,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) about to wait for the following futures []
2022-05-12 22:32:02,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) done waiting for dependent futures
2022-05-12 22:32:02,800 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128450560}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 128450560}
2022-05-12 22:32:02,800 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:03,054 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168034304}) to executor  for transfer request: 0.
2022-05-12 22:32:03,054 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:03,054 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) about to wait for the following futures []
2022-05-12 22:32:03,054 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) done waiting for dependent futures
2022-05-12 22:32:03,054 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168034304}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 168034304}
2022-05-12 22:32:03,055 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,144 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:32:04,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:32:04,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:32:04,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 23330816}
2022-05-12 22:32:04,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,227 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121110528}) to executor  for transfer request: 0.
2022-05-12 22:32:04,227 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) about to wait for the following futures []
2022-05-12 22:32:04,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) done waiting for dependent futures
2022-05-12 22:32:04,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121110528}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 121110528}
2022-05-12 22:32:04,228 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,755 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113770496}) to executor  for transfer request: 0.
2022-05-12 22:32:04,756 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,756 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) about to wait for the following futures []
2022-05-12 22:32:04,756 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) done waiting for dependent futures
2022-05-12 22:32:04,756 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113770496}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 113770496}
2022-05-12 22:32:04,757 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:05,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160169984}) to executor  for transfer request: 0.
2022-05-12 22:32:05,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:05,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) about to wait for the following futures []
2022-05-12 22:32:05,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) done waiting for dependent futures
2022-05-12 22:32:05,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160169984}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 160169984}
2022-05-12 22:32:05,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:05,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143654912}) to executor  for transfer request: 0.
2022-05-12 22:32:05,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:05,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) about to wait for the following futures []
2022-05-12 22:32:05,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) done waiting for dependent futures
2022-05-12 22:32:05,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143654912}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 143654912}
2022-05-12 22:32:05,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:05,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:32:05,986 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:05,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:32:05,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:32:05,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 12320768}
2022-05-12 22:32:05,988 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:06,519 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:32:06,519 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:06,519 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:06,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:32:06,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:32:06,520 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 24903680}
2022-05-12 22:32:06,520 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:07,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:32:07,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:07,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:32:07,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:32:07,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 29622272}
2022-05-12 22:32:07,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:07,952 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136052736}) to executor  for transfer request: 0.
2022-05-12 22:32:07,952 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:07,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) about to wait for the following futures []
2022-05-12 22:32:07,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) done waiting for dependent futures
2022-05-12 22:32:07,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136052736}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 136052736}
2022-05-12 22:32:07,953 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:09,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151781376}) to executor  for transfer request: 0.
2022-05-12 22:32:09,154 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:09,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) about to wait for the following futures []
2022-05-12 22:32:09,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) done waiting for dependent futures
2022-05-12 22:32:09,155 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151781376}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 151781376}
2022-05-12 22:32:09,155 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:09,905 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:32:09,905 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:09,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:09,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:32:09,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:32:09,905 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 16515072}
2022-05-12 22:32:09,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:10,716 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:32:10,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:10,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:32:10,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:32:10,717 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 7077888}
2022-05-12 22:32:10,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,337 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114032640}) to executor  for transfer request: 0.
2022-05-12 22:32:11,338 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) about to wait for the following futures []
2022-05-12 22:32:11,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) done waiting for dependent futures
2022-05-12 22:32:11,338 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114032640}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 114032640}
2022-05-12 22:32:11,339 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:12,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128712704}) to executor  for transfer request: 0.
2022-05-12 22:32:12,132 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:12,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) about to wait for the following futures []
2022-05-12 22:32:12,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) done waiting for dependent futures
2022-05-12 22:32:12,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128712704}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 128712704}
2022-05-12 22:32:12,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:13,067 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58195968}) to executor  for transfer request: 0.
2022-05-12 22:32:13,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:13,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) about to wait for the following futures []
2022-05-12 22:32:13,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) done waiting for dependent futures
2022-05-12 22:32:13,068 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58195968}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 58195968}
2022-05-12 22:32:13,068 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:13,433 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160432128}) to executor  for transfer request: 0.
2022-05-12 22:32:13,434 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:13,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) about to wait for the following futures []
2022-05-12 22:32:13,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) done waiting for dependent futures
2022-05-12 22:32:13,434 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160432128}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 160432128}
2022-05-12 22:32:13,435 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:13,633 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:32:13,634 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:13,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:32:13,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:32:13,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 12582912}
2022-05-12 22:32:13,635 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:14,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143917056}) to executor  for transfer request: 0.
2022-05-12 22:32:14,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:14,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) about to wait for the following futures []
2022-05-12 22:32:14,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) done waiting for dependent futures
2022-05-12 22:32:14,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143917056}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 143917056}
2022-05-12 22:32:14,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:16,088 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168296448}) to executor  for transfer request: 0.
2022-05-12 22:32:16,088 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:16,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) about to wait for the following futures []
2022-05-12 22:32:16,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) done waiting for dependent futures
2022-05-12 22:32:16,089 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168296448}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 168296448}
2022-05-12 22:32:16,089 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:17,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:32:17,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:17,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:32:17,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:32:17,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 23592960}
2022-05-12 22:32:17,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:17,530 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136314880}) to executor  for transfer request: 0.
2022-05-12 22:32:17,530 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:17,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) about to wait for the following futures []
2022-05-12 22:32:17,531 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) done waiting for dependent futures
2022-05-12 22:32:17,531 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136314880}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 136314880}
2022-05-12 22:32:17,531 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114294784}) to executor  for transfer request: 0.
2022-05-12 22:32:18,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) about to wait for the following futures []
2022-05-12 22:32:18,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) done waiting for dependent futures
2022-05-12 22:32:18,761 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114294784}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 114294784}
2022-05-12 22:32:18,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:19,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152043520}) to executor  for transfer request: 0.
2022-05-12 22:32:19,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:19,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) about to wait for the following futures []
2022-05-12 22:32:19,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) done waiting for dependent futures
2022-05-12 22:32:19,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152043520}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 152043520}
2022-05-12 22:32:19,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,490 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128974848}) to executor  for transfer request: 0.
2022-05-12 22:32:20,490 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:20,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) about to wait for the following futures []
2022-05-12 22:32:20,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) done waiting for dependent futures
2022-05-12 22:32:20,491 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128974848}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 128974848}
2022-05-12 22:32:20,492 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:21,679 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121372672}) to executor  for transfer request: 0.
2022-05-12 22:32:21,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:21,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) about to wait for the following futures []
2022-05-12 22:32:21,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) done waiting for dependent futures
2022-05-12 22:32:21,680 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121372672}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 121372672}
2022-05-12 22:32:21,681 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:21,706 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:32:21,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:21,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:32:21,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:32:21,707 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 12845056}
2022-05-12 22:32:21,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,144 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160694272}) to executor  for transfer request: 0.
2022-05-12 22:32:23,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) about to wait for the following futures []
2022-05-12 22:32:23,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) done waiting for dependent futures
2022-05-12 22:32:23,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160694272}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 160694272}
2022-05-12 22:32:23,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,163 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144179200}) to executor  for transfer request: 0.
2022-05-12 22:32:23,163 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) about to wait for the following futures []
2022-05-12 22:32:23,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) done waiting for dependent futures
2022-05-12 22:32:23,164 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144179200}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 144179200}
2022-05-12 22:32:23,164 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:24,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136577024}) to executor  for transfer request: 0.
2022-05-12 22:32:24,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:24,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) about to wait for the following futures []
2022-05-12 22:32:24,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) done waiting for dependent futures
2022-05-12 22:32:24,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136577024}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 136577024}
2022-05-12 22:32:24,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:24,870 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168558592}) to executor  for transfer request: 0.
2022-05-12 22:32:24,871 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:24,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) about to wait for the following futures []
2022-05-12 22:32:24,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) done waiting for dependent futures
2022-05-12 22:32:24,871 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168558592}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 168558592}
2022-05-12 22:32:24,872 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:26,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:32:26,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:26,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:32:26,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:32:26,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 23855104}
2022-05-12 22:32:26,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:27,301 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129236992}) to executor  for transfer request: 0.
2022-05-12 22:32:27,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:27,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) about to wait for the following futures []
2022-05-12 22:32:27,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) done waiting for dependent futures
2022-05-12 22:32:27,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129236992}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 129236992}
2022-05-12 22:32:27,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:28,156 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114556928}) to executor  for transfer request: 0.
2022-05-12 22:32:28,156 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:28,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) about to wait for the following futures []
2022-05-12 22:32:28,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) done waiting for dependent futures
2022-05-12 22:32:28,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114556928}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 114556928}
2022-05-12 22:32:28,157 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:28,712 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:32:28,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:28,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:32:28,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:32:28,713 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 7340032}
2022-05-12 22:32:28,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:28,917 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121634816}) to executor  for transfer request: 0.
2022-05-12 22:32:28,917 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:28,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) about to wait for the following futures []
2022-05-12 22:32:28,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) done waiting for dependent futures
2022-05-12 22:32:28,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121634816}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 121634816}
2022-05-12 22:32:28,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,087 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:32:29,087 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:32:29,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:32:29,088 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 29884416}
2022-05-12 22:32:29,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,342 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152305664}) to executor  for transfer request: 0.
2022-05-12 22:32:29,343 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) about to wait for the following futures []
2022-05-12 22:32:29,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) done waiting for dependent futures
2022-05-12 22:32:29,343 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152305664}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 152305664}
2022-05-12 22:32:29,344 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,243 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160956416}) to executor  for transfer request: 0.
2022-05-12 22:32:31,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:31,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) about to wait for the following futures []
2022-05-12 22:32:31,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) done waiting for dependent futures
2022-05-12 22:32:31,244 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160956416}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 160956416}
2022-05-12 22:32:31,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,409 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58458112}) to executor  for transfer request: 0.
2022-05-12 22:32:31,409 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:31,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) about to wait for the following futures []
2022-05-12 22:32:31,409 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) about to wait for the following futures []
2022-05-12 22:32:31,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) done waiting for dependent futures
2022-05-12 22:32:31,410 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) done waiting for dependent futures
2022-05-12 22:32:31,410 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58458112}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 58458112}
2022-05-12 22:32:31,410 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=176160768-184549375'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 176160768, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:31,411 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:31,411 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,411 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:31,411 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:31,411 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:31,411 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:31,412 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:31,412 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:31,412 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:32:31,412 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:31,412 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:31,412 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=176160768-184549375', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:31,412 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:31,412 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:31,412 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:31,412 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:31,412 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:31,413 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:31,413 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:32:31,413 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:32:31,413 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:31,413 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=176160768-184549375
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223231Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:31,413 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223231Z
20220512/eu-central-1/s3/aws4_request
350128c044bbd3c3a99795fd62c6dd40963b1e5fdcfe6b2f8499e369d8275f5a
2022-05-12 22:32:31,413 botocore.auth DEBUG    Signature:
a7ed8ea063caeadf4a534bfb312329de2737182d0085be72c4392ada4d0cbe89
2022-05-12 22:32:31,413 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:31,414 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:31,414 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:31,414 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:31,605 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:31,607 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'OTMq/g/jP2eIJPWkPWrNaFCEth7vdpgw0MQLKZxCSxLXedPQXQEfiZzGDwyMDsu4TlMxTeok6eQ=', 'x-amz-request-id': 'QEWSVADDHC4WT2ZK', 'Date': 'Thu, 12 May 2022 22:32:32 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 176160768-184549375/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:31,607 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:31,608 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:31,608 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:31,608 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:33,658 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129499136}) to executor  for transfer request: 0.
2022-05-12 22:32:33,658 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:33,659 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) about to wait for the following futures []
2022-05-12 22:32:33,659 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) done waiting for dependent futures
2022-05-12 22:32:33,659 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129499136}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 129499136}
2022-05-12 22:32:33,660 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:34,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144441344}) to executor  for transfer request: 0.
2022-05-12 22:32:34,611 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:34,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) about to wait for the following futures []
2022-05-12 22:32:34,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) done waiting for dependent futures
2022-05-12 22:32:34,612 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144441344}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 144441344}
2022-05-12 22:32:34,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:34,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168820736}) to executor  for transfer request: 0.
2022-05-12 22:32:34,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:34,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) about to wait for the following futures []
2022-05-12 22:32:34,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) done waiting for dependent futures
2022-05-12 22:32:34,997 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168820736}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 168820736}
2022-05-12 22:32:34,998 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:37,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152567808}) to executor  for transfer request: 0.
2022-05-12 22:32:37,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:37,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) about to wait for the following futures []
2022-05-12 22:32:37,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) done waiting for dependent futures
2022-05-12 22:32:37,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152567808}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 152567808}
2022-05-12 22:32:37,175 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121896960}) to executor  for transfer request: 0.
2022-05-12 22:32:38,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) about to wait for the following futures []
2022-05-12 22:32:38,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) done waiting for dependent futures
2022-05-12 22:32:38,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121896960}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 121896960}
2022-05-12 22:32:38,221 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,321 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161218560}) to executor  for transfer request: 0.
2022-05-12 22:32:38,321 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) about to wait for the following futures []
2022-05-12 22:32:38,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) done waiting for dependent futures
2022-05-12 22:32:38,322 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161218560}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 161218560}
2022-05-12 22:32:38,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:32:38,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:32:38,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:32:38,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 13107200}
2022-05-12 22:32:38,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:39,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114819072}) to executor  for transfer request: 0.
2022-05-12 22:32:39,260 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:39,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) about to wait for the following futures []
2022-05-12 22:32:39,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) done waiting for dependent futures
2022-05-12 22:32:39,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114819072}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 114819072}
2022-05-12 22:32:39,260 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:39,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129761280}) to executor  for transfer request: 0.
2022-05-12 22:32:39,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:39,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) about to wait for the following futures []
2022-05-12 22:32:39,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) done waiting for dependent futures
2022-05-12 22:32:39,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129761280}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 129761280}
2022-05-12 22:32:39,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:40,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136839168}) to executor  for transfer request: 0.
2022-05-12 22:32:40,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:40,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) about to wait for the following futures []
2022-05-12 22:32:40,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) done waiting for dependent futures
2022-05-12 22:32:40,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136839168}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 136839168}
2022-05-12 22:32:40,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:43,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144703488}) to executor  for transfer request: 0.
2022-05-12 22:32:43,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:43,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) about to wait for the following futures []
2022-05-12 22:32:43,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) done waiting for dependent futures
2022-05-12 22:32:43,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144703488}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 144703488}
2022-05-12 22:32:43,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:44,621 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122159104}) to executor  for transfer request: 0.
2022-05-12 22:32:44,622 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:44,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) about to wait for the following futures []
2022-05-12 22:32:44,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) done waiting for dependent futures
2022-05-12 22:32:44,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122159104}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 122159104}
2022-05-12 22:32:44,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:44,622 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152829952}) to executor  for transfer request: 0.
2022-05-12 22:32:44,622 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:44,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) about to wait for the following futures []
2022-05-12 22:32:44,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) done waiting for dependent futures
2022-05-12 22:32:44,623 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152829952}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 152829952}
2022-05-12 22:32:44,623 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:45,073 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161480704}) to executor  for transfer request: 0.
2022-05-12 22:32:45,073 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:45,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) about to wait for the following futures []
2022-05-12 22:32:45,073 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) done waiting for dependent futures
2022-05-12 22:32:45,074 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161480704}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 161480704}
2022-05-12 22:32:45,074 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:45,254 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169082880}) to executor  for transfer request: 0.
2022-05-12 22:32:45,254 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:45,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) about to wait for the following futures []
2022-05-12 22:32:45,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) done waiting for dependent futures
2022-05-12 22:32:45,255 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169082880}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 169082880}
2022-05-12 22:32:45,255 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:46,349 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176160768}) to executor  for transfer request: 0.
2022-05-12 22:32:46,350 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:46,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) about to wait for the following futures []
2022-05-12 22:32:46,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) done waiting for dependent futures
2022-05-12 22:32:46,350 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176160768}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 176160768}
2022-05-12 22:32:46,351 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:46,913 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:32:46,913 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:46,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:32:46,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:32:46,914 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 7602176}
2022-05-12 22:32:46,914 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:47,407 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137101312}) to executor  for transfer request: 0.
2022-05-12 22:32:47,407 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:47,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) about to wait for the following futures []
2022-05-12 22:32:47,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) done waiting for dependent futures
2022-05-12 22:32:47,408 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137101312}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 137101312}
2022-05-12 22:32:47,408 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122421248}) to executor  for transfer request: 0.
2022-05-12 22:32:48,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) about to wait for the following futures []
2022-05-12 22:32:48,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) done waiting for dependent futures
2022-05-12 22:32:48,163 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122421248}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 122421248}
2022-05-12 22:32:48,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115081216}) to executor  for transfer request: 0.
2022-05-12 22:32:48,176 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) about to wait for the following futures []
2022-05-12 22:32:48,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) done waiting for dependent futures
2022-05-12 22:32:48,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115081216}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 115081216}
2022-05-12 22:32:48,177 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:50,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153092096}) to executor  for transfer request: 0.
2022-05-12 22:32:50,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:50,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) about to wait for the following futures []
2022-05-12 22:32:50,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) done waiting for dependent futures
2022-05-12 22:32:50,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153092096}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 153092096}
2022-05-12 22:32:50,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:51,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144965632}) to executor  for transfer request: 0.
2022-05-12 22:32:51,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:51,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) about to wait for the following futures []
2022-05-12 22:32:51,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) done waiting for dependent futures
2022-05-12 22:32:51,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144965632}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 144965632}
2022-05-12 22:32:51,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:51,883 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161742848}) to executor  for transfer request: 0.
2022-05-12 22:32:51,884 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:51,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) about to wait for the following futures []
2022-05-12 22:32:51,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) done waiting for dependent futures
2022-05-12 22:32:51,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161742848}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 161742848}
2022-05-12 22:32:51,885 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:54,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137363456}) to executor  for transfer request: 0.
2022-05-12 22:32:54,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:54,427 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) about to wait for the following futures []
2022-05-12 22:32:54,427 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) done waiting for dependent futures
2022-05-12 22:32:54,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137363456}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 137363456}
2022-05-12 22:32:54,428 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:55,964 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169345024}) to executor  for transfer request: 0.
2022-05-12 22:32:55,964 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:55,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) about to wait for the following futures []
2022-05-12 22:32:55,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) done waiting for dependent futures
2022-05-12 22:32:55,965 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169345024}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 169345024}
2022-05-12 22:32:55,965 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:56,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115343360}) to executor  for transfer request: 0.
2022-05-12 22:32:56,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:56,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) about to wait for the following futures []
2022-05-12 22:32:56,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) done waiting for dependent futures
2022-05-12 22:32:56,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115343360}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 115343360}
2022-05-12 22:32:56,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:56,778 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122683392}) to executor  for transfer request: 0.
2022-05-12 22:32:56,778 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:56,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) about to wait for the following futures []
2022-05-12 22:32:56,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) done waiting for dependent futures
2022-05-12 22:32:56,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122683392}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 122683392}
2022-05-12 22:32:56,779 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176422912}) to executor  for transfer request: 0.
2022-05-12 22:32:57,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) about to wait for the following futures []
2022-05-12 22:32:57,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) done waiting for dependent futures
2022-05-12 22:32:57,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176422912}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 176422912}
2022-05-12 22:32:57,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:58,791 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162004992}) to executor  for transfer request: 0.
2022-05-12 22:32:58,791 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:58,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) about to wait for the following futures []
2022-05-12 22:32:58,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) done waiting for dependent futures
2022-05-12 22:32:58,792 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162004992}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 162004992}
2022-05-12 22:32:58,792 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:59,117 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:32:59,118 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:59,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:32:59,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:32:59,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 30146560}
2022-05-12 22:32:59,119 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:59,633 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145227776}) to executor  for transfer request: 0.
2022-05-12 22:32:59,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:59,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) about to wait for the following futures []
2022-05-12 22:32:59,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) done waiting for dependent futures
2022-05-12 22:32:59,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145227776}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 145227776}
2022-05-12 22:32:59,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:00,525 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153354240}) to executor  for transfer request: 0.
2022-05-12 22:33:00,525 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:00,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) about to wait for the following futures []
2022-05-12 22:33:00,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) done waiting for dependent futures
2022-05-12 22:33:00,526 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153354240}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 153354240}
2022-05-12 22:33:00,526 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,691 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:33:01,691 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:33:01,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:33:01,692 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 7864320}
2022-05-12 22:33:01,692 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,857 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115605504}) to executor  for transfer request: 0.
2022-05-12 22:33:01,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) about to wait for the following futures []
2022-05-12 22:33:01,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) done waiting for dependent futures
2022-05-12 22:33:01,858 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115605504}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 115605504}
2022-05-12 22:33:01,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,913 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122945536}) to executor  for transfer request: 0.
2022-05-12 22:33:01,913 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) about to wait for the following futures []
2022-05-12 22:33:01,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) done waiting for dependent futures
2022-05-12 22:33:01,914 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122945536}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 122945536}
2022-05-12 22:33:01,914 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,567 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137625600}) to executor  for transfer request: 0.
2022-05-12 22:33:05,567 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:05,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) about to wait for the following futures []
2022-05-12 22:33:05,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) done waiting for dependent futures
2022-05-12 22:33:05,568 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137625600}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 137625600}
2022-05-12 22:33:05,568 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,964 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176685056}) to executor  for transfer request: 0.
2022-05-12 22:33:05,964 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:05,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) about to wait for the following futures []
2022-05-12 22:33:05,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) done waiting for dependent futures
2022-05-12 22:33:05,965 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176685056}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 176685056}
2022-05-12 22:33:05,965 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:06,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162267136}) to executor  for transfer request: 0.
2022-05-12 22:33:06,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:06,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) about to wait for the following futures []
2022-05-12 22:33:06,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) done waiting for dependent futures
2022-05-12 22:33:06,126 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162267136}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 162267136}
2022-05-12 22:33:06,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:06,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169607168}) to executor  for transfer request: 0.
2022-05-12 22:33:06,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:06,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) about to wait for the following futures []
2022-05-12 22:33:06,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) done waiting for dependent futures
2022-05-12 22:33:06,252 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169607168}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 169607168}
2022-05-12 22:33:06,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:06,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:33:06,397 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:06,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:33:06,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:33:06,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 24117248}
2022-05-12 22:33:06,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:06,674 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130023424}) to executor  for transfer request: 0.
2022-05-12 22:33:06,674 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:06,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) about to wait for the following futures []
2022-05-12 22:33:06,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) done waiting for dependent futures
2022-05-12 22:33:06,675 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130023424}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 130023424}
2022-05-12 22:33:06,675 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:07,142 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123207680}) to executor  for transfer request: 0.
2022-05-12 22:33:07,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:07,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) about to wait for the following futures []
2022-05-12 22:33:07,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) done waiting for dependent futures
2022-05-12 22:33:07,142 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123207680}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 123207680}
2022-05-12 22:33:07,143 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:07,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145489920}) to executor  for transfer request: 0.
2022-05-12 22:33:07,954 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:07,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) about to wait for the following futures []
2022-05-12 22:33:07,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) done waiting for dependent futures
2022-05-12 22:33:07,954 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145489920}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 145489920}
2022-05-12 22:33:07,955 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:08,244 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115867648}) to executor  for transfer request: 0.
2022-05-12 22:33:08,245 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:08,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) about to wait for the following futures []
2022-05-12 22:33:08,246 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) done waiting for dependent futures
2022-05-12 22:33:08,246 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115867648}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 115867648}
2022-05-12 22:33:08,247 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,169 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153616384}) to executor  for transfer request: 0.
2022-05-12 22:33:10,169 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) about to wait for the following futures []
2022-05-12 22:33:10,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) done waiting for dependent futures
2022-05-12 22:33:10,170 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153616384}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 153616384}
2022-05-12 22:33:10,170 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:11,322 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162529280}) to executor  for transfer request: 0.
2022-05-12 22:33:11,322 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:11,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) about to wait for the following futures []
2022-05-12 22:33:11,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) done waiting for dependent futures
2022-05-12 22:33:11,323 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162529280}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 162529280}
2022-05-12 22:33:11,323 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:12,929 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123469824}) to executor  for transfer request: 0.
2022-05-12 22:33:12,929 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:12,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) about to wait for the following futures []
2022-05-12 22:33:12,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) done waiting for dependent futures
2022-05-12 22:33:12,930 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123469824}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 123469824}
2022-05-12 22:33:12,930 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:12,940 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30408704}) to executor  for transfer request: 0.
2022-05-12 22:33:12,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:12,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) about to wait for the following futures []
2022-05-12 22:33:12,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) done waiting for dependent futures
2022-05-12 22:33:12,941 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30408704}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 30408704}
2022-05-12 22:33:12,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,950 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:33:13,950 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:33:13,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:33:13,951 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 13369344}
2022-05-12 22:33:13,952 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,520 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116129792}) to executor  for transfer request: 0.
2022-05-12 22:33:14,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:14,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) about to wait for the following futures []
2022-05-12 22:33:14,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) done waiting for dependent futures
2022-05-12 22:33:14,521 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116129792}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 116129792}
2022-05-12 22:33:14,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,797 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145752064}) to executor  for transfer request: 0.
2022-05-12 22:33:14,798 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:14,798 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) about to wait for the following futures []
2022-05-12 22:33:14,798 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) done waiting for dependent futures
2022-05-12 22:33:14,798 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145752064}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 145752064}
2022-05-12 22:33:14,799 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:15,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137887744}) to executor  for transfer request: 0.
2022-05-12 22:33:15,029 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:15,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) about to wait for the following futures []
2022-05-12 22:33:15,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) done waiting for dependent futures
2022-05-12 22:33:15,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137887744}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 137887744}
2022-05-12 22:33:15,030 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:16,152 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169869312}) to executor  for transfer request: 0.
2022-05-12 22:33:16,152 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:16,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) about to wait for the following futures []
2022-05-12 22:33:16,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) done waiting for dependent futures
2022-05-12 22:33:16,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169869312}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 169869312}
2022-05-12 22:33:16,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:18,309 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162791424}) to executor  for transfer request: 0.
2022-05-12 22:33:18,309 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:18,309 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) about to wait for the following futures []
2022-05-12 22:33:18,309 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) done waiting for dependent futures
2022-05-12 22:33:18,309 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162791424}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 162791424}
2022-05-12 22:33:18,310 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:18,321 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153878528}) to executor  for transfer request: 0.
2022-05-12 22:33:18,321 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:18,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) about to wait for the following futures []
2022-05-12 22:33:18,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) done waiting for dependent futures
2022-05-12 22:33:18,322 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153878528}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 153878528}
2022-05-12 22:33:18,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:18,421 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123731968}) to executor  for transfer request: 0.
2022-05-12 22:33:18,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:18,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) about to wait for the following futures []
2022-05-12 22:33:18,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) done waiting for dependent futures
2022-05-12 22:33:18,422 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123731968}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 123731968}
2022-05-12 22:33:18,422 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:20,227 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130285568}) to executor  for transfer request: 0.
2022-05-12 22:33:20,227 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:20,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) about to wait for the following futures []
2022-05-12 22:33:20,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) done waiting for dependent futures
2022-05-12 22:33:20,228 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130285568}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 130285568}
2022-05-12 22:33:20,228 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:20,588 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:33:20,588 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:20,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:33:20,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:33:20,589 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 24379392}
2022-05-12 22:33:20,590 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:20,836 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146014208}) to executor  for transfer request: 0.
2022-05-12 22:33:20,836 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:20,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) about to wait for the following futures []
2022-05-12 22:33:20,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) done waiting for dependent futures
2022-05-12 22:33:20,837 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146014208}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 146014208}
2022-05-12 22:33:20,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:22,019 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176947200}) to executor  for transfer request: 0.
2022-05-12 22:33:22,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:22,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) about to wait for the following futures []
2022-05-12 22:33:22,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) done waiting for dependent futures
2022-05-12 22:33:22,020 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176947200}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 176947200}
2022-05-12 22:33:22,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:22,283 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116391936}) to executor  for transfer request: 0.
2022-05-12 22:33:22,283 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:22,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) about to wait for the following futures []
2022-05-12 22:33:22,284 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) done waiting for dependent futures
2022-05-12 22:33:22,284 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116391936}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 116391936}
2022-05-12 22:33:22,285 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,155 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:33:23,155 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,156 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:33:23,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:33:23,156 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:33:23,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,156 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=33>, 'offset': 8126464}
2022-05-12 22:33:23,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,156 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:33:23,156 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:33:23,157 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:33:23,157 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,441 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163053568}) to executor  for transfer request: 0.
2022-05-12 22:33:23,441 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) about to wait for the following futures []
2022-05-12 22:33:23,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) done waiting for dependent futures
2022-05-12 22:33:23,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163053568}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 163053568}
2022-05-12 22:33:23,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170131456}) to executor  for transfer request: 0.
2022-05-12 22:33:23,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) about to wait for the following futures []
2022-05-12 22:33:23,515 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) done waiting for dependent futures
2022-05-12 22:33:23,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170131456}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 170131456}
2022-05-12 22:33:23,516 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,897 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154140672}) to executor  for transfer request: 0.
2022-05-12 22:33:23,897 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) about to wait for the following futures []
2022-05-12 22:33:23,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) done waiting for dependent futures
2022-05-12 22:33:23,898 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154140672}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 154140672}
2022-05-12 22:33:23,898 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:24,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123994112}) to executor  for transfer request: 0.
2022-05-12 22:33:24,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:24,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) about to wait for the following futures []
2022-05-12 22:33:24,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) done waiting for dependent futures
2022-05-12 22:33:24,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123994112}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 123994112}
2022-05-12 22:33:24,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138149888}) to executor  for transfer request: 0.
2022-05-12 22:33:25,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) about to wait for the following futures []
2022-05-12 22:33:25,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) done waiting for dependent futures
2022-05-12 22:33:25,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138149888}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 138149888}
2022-05-12 22:33:25,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,457 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130547712}) to executor  for transfer request: 0.
2022-05-12 22:33:25,457 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) about to wait for the following futures []
2022-05-12 22:33:25,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) done waiting for dependent futures
2022-05-12 22:33:25,458 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130547712}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 130547712}
2022-05-12 22:33:25,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,731 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30670848}) to executor  for transfer request: 0.
2022-05-12 22:33:25,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) about to wait for the following futures []
2022-05-12 22:33:25,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) done waiting for dependent futures
2022-05-12 22:33:25,732 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30670848}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 30670848}
2022-05-12 22:33:25,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:27,901 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163315712}) to executor  for transfer request: 0.
2022-05-12 22:33:27,901 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:27,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) about to wait for the following futures []
2022-05-12 22:33:27,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) done waiting for dependent futures
2022-05-12 22:33:27,902 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163315712}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 163315712}
2022-05-12 22:33:27,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,111 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:33:30,111 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:33:30,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:33:30,112 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 24641536}
2022-05-12 22:33:30,112 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,346 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170393600}) to executor  for transfer request: 0.
2022-05-12 22:33:30,346 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) about to wait for the following futures []
2022-05-12 22:33:30,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) done waiting for dependent futures
2022-05-12 22:33:30,347 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170393600}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 170393600}
2022-05-12 22:33:30,347 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,648 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177209344}) to executor  for transfer request: 0.
2022-05-12 22:33:30,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116654080}) to executor  for transfer request: 0.
2022-05-12 22:33:30,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) about to wait for the following futures []
2022-05-12 22:33:30,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) done waiting for dependent futures
2022-05-12 22:33:30,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177209344}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 177209344}
2022-05-12 22:33:30,650 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) about to wait for the following futures []
2022-05-12 22:33:30,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) done waiting for dependent futures
2022-05-12 22:33:30,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116654080}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 116654080}
2022-05-12 22:33:30,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:32,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124256256}) to executor  for transfer request: 0.
2022-05-12 22:33:32,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:32,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) about to wait for the following futures []
2022-05-12 22:33:32,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) done waiting for dependent futures
2022-05-12 22:33:32,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124256256}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 124256256}
2022-05-12 22:33:32,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:32,031 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:33:32,031 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:32,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:33:32,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:33:32,031 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 13631488}
2022-05-12 22:33:32,032 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:32,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130809856}) to executor  for transfer request: 0.
2022-05-12 22:33:32,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:32,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) about to wait for the following futures []
2022-05-12 22:33:32,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) done waiting for dependent futures
2022-05-12 22:33:32,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130809856}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 130809856}
2022-05-12 22:33:32,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:33,889 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124518400}) to executor  for transfer request: 0.
2022-05-12 22:33:33,889 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:33,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) about to wait for the following futures []
2022-05-12 22:33:33,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) done waiting for dependent futures
2022-05-12 22:33:33,889 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124518400}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 124518400}
2022-05-12 22:33:33,890 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:34,196 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138412032}) to executor  for transfer request: 0.
2022-05-12 22:33:34,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:34,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) about to wait for the following futures []
2022-05-12 22:33:34,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) done waiting for dependent futures
2022-05-12 22:33:34,197 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138412032}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 138412032}
2022-05-12 22:33:34,198 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:34,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163577856}) to executor  for transfer request: 0.
2022-05-12 22:33:34,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:34,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) about to wait for the following futures []
2022-05-12 22:33:34,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) done waiting for dependent futures
2022-05-12 22:33:34,854 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163577856}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 163577856}
2022-05-12 22:33:34,854 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:35,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146276352}) to executor  for transfer request: 0.
2022-05-12 22:33:35,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:35,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) about to wait for the following futures []
2022-05-12 22:33:35,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) done waiting for dependent futures
2022-05-12 22:33:35,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146276352}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 146276352}
2022-05-12 22:33:35,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154402816}) to executor  for transfer request: 0.
2022-05-12 22:33:36,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) about to wait for the following futures []
2022-05-12 22:33:36,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) done waiting for dependent futures
2022-05-12 22:33:36,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154402816}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 154402816}
2022-05-12 22:33:36,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,609 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124780544}) to executor  for transfer request: 0.
2022-05-12 22:33:37,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:37,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) about to wait for the following futures []
2022-05-12 22:33:37,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) done waiting for dependent futures
2022-05-12 22:33:37,610 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124780544}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 124780544}
2022-05-12 22:33:37,610 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:38,196 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131072000}) to executor  for transfer request: 0.
2022-05-12 22:33:38,196 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:38,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) about to wait for the following futures []
2022-05-12 22:33:38,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) done waiting for dependent futures
2022-05-12 22:33:38,197 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131072000}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 131072000}
2022-05-12 22:33:38,197 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:39,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30932992}) to executor  for transfer request: 0.
2022-05-12 22:33:39,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:39,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) about to wait for the following futures []
2022-05-12 22:33:39,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) done waiting for dependent futures
2022-05-12 22:33:39,010 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30932992}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 30932992}
2022-05-12 22:33:39,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:39,575 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170655744}) to executor  for transfer request: 0.
2022-05-12 22:33:39,575 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:39,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) about to wait for the following futures []
2022-05-12 22:33:39,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) done waiting for dependent futures
2022-05-12 22:33:39,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170655744}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 170655744}
2022-05-12 22:33:39,576 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:39,850 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116916224}) to executor  for transfer request: 0.
2022-05-12 22:33:39,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:39,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) about to wait for the following futures []
2022-05-12 22:33:39,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) done waiting for dependent futures
2022-05-12 22:33:39,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116916224}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 116916224}
2022-05-12 22:33:39,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:40,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:33:40,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:40,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:40,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:33:40,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:33:40,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 24903680}
2022-05-12 22:33:40,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:40,980 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163840000}) to executor  for transfer request: 0.
2022-05-12 22:33:40,980 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:40,980 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) about to wait for the following futures []
2022-05-12 22:33:40,980 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) done waiting for dependent futures
2022-05-12 22:33:40,980 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163840000}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 163840000}
2022-05-12 22:33:40,981 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:41,437 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146538496}) to executor  for transfer request: 0.
2022-05-12 22:33:41,437 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:41,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) about to wait for the following futures []
2022-05-12 22:33:41,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) done waiting for dependent futures
2022-05-12 22:33:41,438 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146538496}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 146538496}
2022-05-12 22:33:41,438 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:41,541 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125042688}) to executor  for transfer request: 0.
2022-05-12 22:33:41,541 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:41,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) about to wait for the following futures []
2022-05-12 22:33:41,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) done waiting for dependent futures
2022-05-12 22:33:41,542 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125042688}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 125042688}
2022-05-12 22:33:41,542 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:42,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138674176}) to executor  for transfer request: 0.
2022-05-12 22:33:42,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:42,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) about to wait for the following futures []
2022-05-12 22:33:42,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) done waiting for dependent futures
2022-05-12 22:33:42,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138674176}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 138674176}
2022-05-12 22:33:42,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:43,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:33:43,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:43,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:33:43,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:33:43,436 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 13893632}
2022-05-12 22:33:43,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:43,922 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177471488}) to executor  for transfer request: 0.
2022-05-12 22:33:43,922 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:43,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) about to wait for the following futures []
2022-05-12 22:33:43,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) done waiting for dependent futures
2022-05-12 22:33:43,923 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177471488}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 177471488}
2022-05-12 22:33:43,923 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125304832}) to executor  for transfer request: 0.
2022-05-12 22:33:44,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:44,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) about to wait for the following futures []
2022-05-12 22:33:44,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) done waiting for dependent futures
2022-05-12 22:33:44,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125304832}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 125304832}
2022-05-12 22:33:44,375 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:45,794 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131334144}) to executor  for transfer request: 0.
2022-05-12 22:33:45,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:45,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) about to wait for the following futures []
2022-05-12 22:33:45,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) done waiting for dependent futures
2022-05-12 22:33:45,795 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131334144}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 131334144}
2022-05-12 22:33:45,796 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:46,753 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154664960}) to executor  for transfer request: 0.
2022-05-12 22:33:46,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:46,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) about to wait for the following futures []
2022-05-12 22:33:46,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) done waiting for dependent futures
2022-05-12 22:33:46,753 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154664960}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 154664960}
2022-05-12 22:33:46,754 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:46,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164102144}) to executor  for transfer request: 0.
2022-05-12 22:33:46,920 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:46,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) about to wait for the following futures []
2022-05-12 22:33:46,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) done waiting for dependent futures
2022-05-12 22:33:46,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164102144}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 164102144}
2022-05-12 22:33:46,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170917888}) to executor  for transfer request: 0.
2022-05-12 22:33:46,921 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:46,921 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:46,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) about to wait for the following futures []
2022-05-12 22:33:46,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) done waiting for dependent futures
2022-05-12 22:33:46,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170917888}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 170917888}
2022-05-12 22:33:46,923 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:47,957 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117178368}) to executor  for transfer request: 0.
2022-05-12 22:33:47,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:47,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:47,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) about to wait for the following futures []
2022-05-12 22:33:47,957 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) about to wait for the following futures []
2022-05-12 22:33:47,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) done waiting for dependent futures
2022-05-12 22:33:47,958 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) done waiting for dependent futures
2022-05-12 22:33:47,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117178368}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 117178368}
2022-05-12 22:33:47,959 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=184549376-192937983'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 184549376, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:47,959 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:47,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:47,959 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:47,960 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:47,960 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:47,960 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:47,960 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:47,960 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:47,960 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:33:47,960 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:47,960 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:47,960 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=184549376-192937983', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:47,961 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:47,961 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:47,961 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:47,961 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:47,961 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:47,961 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:47,961 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:33:47,961 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:33:47,962 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:47,962 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=184549376-192937983
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223347Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:47,962 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223347Z
20220512/eu-central-1/s3/aws4_request
687e7cfd31c8e97dc65a84af6718d5eaa5b09cd79f537c933e4b9ecbe6da741c
2022-05-12 22:33:47,962 botocore.auth DEBUG    Signature:
fac993c253b07560e1f35169bfcb8abdb42a89ed547623fcfc60758506c43b0a
2022-05-12 22:33:47,962 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:47,962 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:47,962 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:47,962 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:47,962 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:48,778 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:48,779 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'EmUD7foU3loGW5KpM0HSxsd8G18iSUg3YkUAhyiv6Te85RDB5vy18WiKlhf7KVCQYnMAX32kMFA=', 'x-amz-request-id': '6EY5B2SDNAVY5QAQ', 'Date': 'Thu, 12 May 2022 22:33:49 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 184549376-192937983/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:48,779 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:48,780 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:48,780 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:48,780 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:49,122 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31195136}) to executor  for transfer request: 0.
2022-05-12 22:33:49,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) about to wait for the following futures []
2022-05-12 22:33:49,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) done waiting for dependent futures
2022-05-12 22:33:49,122 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31195136}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 31195136}
2022-05-12 22:33:49,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,237 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184549376}) to executor  for transfer request: 0.
2022-05-12 22:33:51,237 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) about to wait for the following futures []
2022-05-12 22:33:51,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) done waiting for dependent futures
2022-05-12 22:33:51,238 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184549376}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 184549376}
2022-05-12 22:33:51,238 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,400 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164364288}) to executor  for transfer request: 0.
2022-05-12 22:33:51,400 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) about to wait for the following futures []
2022-05-12 22:33:51,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) done waiting for dependent futures
2022-05-12 22:33:51,401 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164364288}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 164364288}
2022-05-12 22:33:51,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138936320}) to executor  for transfer request: 0.
2022-05-12 22:33:52,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) about to wait for the following futures []
2022-05-12 22:33:52,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) done waiting for dependent futures
2022-05-12 22:33:52,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138936320}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 138936320}
2022-05-12 22:33:52,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:53,022 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125566976}) to executor  for transfer request: 0.
2022-05-12 22:33:53,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:53,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:53,023 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) about to wait for the following futures []
2022-05-12 22:33:53,023 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) done waiting for dependent futures
2022-05-12 22:33:53,023 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=192937984-201326591'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 192937984, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:53,023 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:53,023 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:53,023 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:53,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) about to wait for the following futures []
2022-05-12 22:33:53,024 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:53,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) done waiting for dependent futures
2022-05-12 22:33:53,024 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:53,024 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125566976}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 125566976}
2022-05-12 22:33:53,025 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:53,025 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:53,025 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:33:53,025 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:53,025 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:53,026 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:53,026 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=192937984-201326591', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:53,026 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:53,026 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:53,026 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:53,026 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:53,026 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:53,026 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:53,026 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:33:53,026 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:33:53,027 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:53,027 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=192937984-201326591
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223353Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:53,027 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223353Z
20220512/eu-central-1/s3/aws4_request
e2c556684631b0eb7c2dabf0f787b05dc08b24a24e25deb88ec253e429338ab9
2022-05-12 22:33:53,027 botocore.auth DEBUG    Signature:
0055bde04e391792853c02eb315b15cbccfd60e730aa280c943b3746d405c0f0
2022-05-12 22:33:53,027 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:53,027 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:53,028 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:53,028 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:53,028 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:54,032 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31457280}) to executor  for transfer request: 0.
2022-05-12 22:33:54,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:54,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) about to wait for the following futures []
2022-05-12 22:33:54,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) done waiting for dependent futures
2022-05-12 22:33:54,033 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31457280}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 31457280}
2022-05-12 22:33:54,033 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:54,125 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:54,125 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'f6v9Jca6dWQML2jGyqSuK6aUWORNSdsDbqU7e5wBGd4Oj2Kc5Awz0ON67gM505+c7cdXOuG5IzA=', 'x-amz-request-id': 'DEHY9G49BX13FQYS', 'Date': 'Thu, 12 May 2022 22:33:55 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 192937984-201326591/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:54,125 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:54,127 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:54,127 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:54,127 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:54,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146800640}) to executor  for transfer request: 0.
2022-05-12 22:33:54,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:54,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) about to wait for the following futures []
2022-05-12 22:33:54,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) done waiting for dependent futures
2022-05-12 22:33:54,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146800640}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 146800640}
2022-05-12 22:33:54,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:55,598 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177733632}) to executor  for transfer request: 0.
2022-05-12 22:33:55,598 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:55,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) about to wait for the following futures []
2022-05-12 22:33:55,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) done waiting for dependent futures
2022-05-12 22:33:55,599 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177733632}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 177733632}
2022-05-12 22:33:55,599 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:55,978 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184811520}) to executor  for transfer request: 0.
2022-05-12 22:33:55,978 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:55,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) about to wait for the following futures []
2022-05-12 22:33:55,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) done waiting for dependent futures
2022-05-12 22:33:55,979 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184811520}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 184811520}
2022-05-12 22:33:55,979 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:56,228 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154927104}) to executor  for transfer request: 0.
2022-05-12 22:33:56,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:56,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) about to wait for the following futures []
2022-05-12 22:33:56,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) done waiting for dependent futures
2022-05-12 22:33:56,229 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154927104}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 154927104}
2022-05-12 22:33:56,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:56,983 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171180032}) to executor  for transfer request: 0.
2022-05-12 22:33:56,983 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:56,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) about to wait for the following futures []
2022-05-12 22:33:56,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) done waiting for dependent futures
2022-05-12 22:33:56,984 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171180032}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 171180032}
2022-05-12 22:33:56,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:57,636 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:33:57,636 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:57,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:33:57,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:33:57,637 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 14155776}
2022-05-12 22:33:57,637 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:58,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131596288}) to executor  for transfer request: 0.
2022-05-12 22:33:58,315 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:58,315 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) about to wait for the following futures []
2022-05-12 22:33:58,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) done waiting for dependent futures
2022-05-12 22:33:58,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131596288}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 131596288}
2022-05-12 22:33:58,316 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,172 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192937984}) to executor  for transfer request: 0.
2022-05-12 22:33:59,172 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) about to wait for the following futures []
2022-05-12 22:33:59,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) done waiting for dependent futures
2022-05-12 22:33:59,173 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192937984}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 192937984}
2022-05-12 22:33:59,173 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164626432}) to executor  for transfer request: 0.
2022-05-12 22:33:59,279 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) about to wait for the following futures []
2022-05-12 22:33:59,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) done waiting for dependent futures
2022-05-12 22:33:59,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164626432}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 164626432}
2022-05-12 22:33:59,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,688 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147062784}) to executor  for transfer request: 0.
2022-05-12 22:34:01,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:01,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) about to wait for the following futures []
2022-05-12 22:34:01,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) done waiting for dependent futures
2022-05-12 22:34:01,689 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147062784}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 147062784}
2022-05-12 22:34:01,689 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:02,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185073664}) to executor  for transfer request: 0.
2022-05-12 22:34:02,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:02,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) about to wait for the following futures []
2022-05-12 22:34:02,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) done waiting for dependent futures
2022-05-12 22:34:02,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185073664}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 185073664}
2022-05-12 22:34:02,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:02,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171442176}) to executor  for transfer request: 0.
2022-05-12 22:34:02,330 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:02,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) about to wait for the following futures []
2022-05-12 22:34:02,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) done waiting for dependent futures
2022-05-12 22:34:02,330 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171442176}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 171442176}
2022-05-12 22:34:02,331 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:02,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139198464}) to executor  for transfer request: 0.
2022-05-12 22:34:02,561 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:02,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) about to wait for the following futures []
2022-05-12 22:34:02,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) done waiting for dependent futures
2022-05-12 22:34:02,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139198464}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 139198464}
2022-05-12 22:34:02,562 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:05,385 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155189248}) to executor  for transfer request: 0.
2022-05-12 22:34:05,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:05,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) about to wait for the following futures []
2022-05-12 22:34:05,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) done waiting for dependent futures
2022-05-12 22:34:05,386 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155189248}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 155189248}
2022-05-12 22:34:05,386 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:05,593 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193200128}) to executor  for transfer request: 0.
2022-05-12 22:34:05,593 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:05,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) about to wait for the following futures []
2022-05-12 22:34:05,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) done waiting for dependent futures
2022-05-12 22:34:05,594 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193200128}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 193200128}
2022-05-12 22:34:05,594 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,115 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31719424}) to executor  for transfer request: 0.
2022-05-12 22:34:06,115 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) about to wait for the following futures []
2022-05-12 22:34:06,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) done waiting for dependent futures
2022-05-12 22:34:06,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31719424}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 31719424}
2022-05-12 22:34:06,116 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131858432}) to executor  for transfer request: 0.
2022-05-12 22:34:06,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) about to wait for the following futures []
2022-05-12 22:34:06,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) done waiting for dependent futures
2022-05-12 22:34:06,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131858432}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 131858432}
2022-05-12 22:34:06,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,859 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164888576}) to executor  for transfer request: 0.
2022-05-12 22:34:06,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) about to wait for the following futures []
2022-05-12 22:34:06,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) done waiting for dependent futures
2022-05-12 22:34:06,860 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164888576}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 164888576}
2022-05-12 22:34:06,860 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:07,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177995776}) to executor  for transfer request: 0.
2022-05-12 22:34:07,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:07,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) about to wait for the following futures []
2022-05-12 22:34:07,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) done waiting for dependent futures
2022-05-12 22:34:07,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177995776}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 177995776}
2022-05-12 22:34:07,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:08,787 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185335808}) to executor  for transfer request: 0.
2022-05-12 22:34:08,787 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:08,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) about to wait for the following futures []
2022-05-12 22:34:08,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) done waiting for dependent futures
2022-05-12 22:34:08,788 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185335808}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 185335808}
2022-05-12 22:34:08,788 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,698 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193462272}) to executor  for transfer request: 0.
2022-05-12 22:34:10,698 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) about to wait for the following futures []
2022-05-12 22:34:10,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) done waiting for dependent futures
2022-05-12 22:34:10,698 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193462272}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 193462272}
2022-05-12 22:34:10,699 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,743 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:34:10,743 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:34:10,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:34:10,744 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 14417920}
2022-05-12 22:34:10,744 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139460608}) to executor  for transfer request: 0.
2022-05-12 22:34:10,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,939 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) about to wait for the following futures []
2022-05-12 22:34:10,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) done waiting for dependent futures
2022-05-12 22:34:10,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139460608}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 139460608}
2022-05-12 22:34:10,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:11,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147324928}) to executor  for transfer request: 0.
2022-05-12 22:34:11,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:11,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) about to wait for the following futures []
2022-05-12 22:34:11,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) done waiting for dependent futures
2022-05-12 22:34:11,397 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147324928}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 147324928}
2022-05-12 22:34:11,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:12,444 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165150720}) to executor  for transfer request: 0.
2022-05-12 22:34:12,444 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:12,444 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) about to wait for the following futures []
2022-05-12 22:34:12,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) done waiting for dependent futures
2022-05-12 22:34:12,445 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165150720}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 165150720}
2022-05-12 22:34:12,445 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:12,756 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185597952}) to executor  for transfer request: 0.
2022-05-12 22:34:12,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:12,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) about to wait for the following futures []
2022-05-12 22:34:12,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) done waiting for dependent futures
2022-05-12 22:34:12,757 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185597952}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 185597952}
2022-05-12 22:34:12,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171704320}) to executor  for transfer request: 0.
2022-05-12 22:34:13,076 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) about to wait for the following futures []
2022-05-12 22:34:13,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) done waiting for dependent futures
2022-05-12 22:34:13,076 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171704320}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 171704320}
2022-05-12 22:34:13,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:15,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31981568}) to executor  for transfer request: 0.
2022-05-12 22:34:15,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:15,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) about to wait for the following futures []
2022-05-12 22:34:15,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) done waiting for dependent futures
2022-05-12 22:34:15,365 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31981568}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 31981568}
2022-05-12 22:34:15,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:16,345 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132120576}) to executor  for transfer request: 0.
2022-05-12 22:34:16,345 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:16,345 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) about to wait for the following futures []
2022-05-12 22:34:16,346 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) done waiting for dependent futures
2022-05-12 22:34:16,346 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132120576}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 132120576}
2022-05-12 22:34:16,346 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:16,753 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155451392}) to executor  for transfer request: 0.
2022-05-12 22:34:16,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:16,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) about to wait for the following futures []
2022-05-12 22:34:16,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) done waiting for dependent futures
2022-05-12 22:34:16,754 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155451392}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 155451392}
2022-05-12 22:34:16,754 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:18,728 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193724416}) to executor  for transfer request: 0.
2022-05-12 22:34:18,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:18,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) about to wait for the following futures []
2022-05-12 22:34:18,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) done waiting for dependent futures
2022-05-12 22:34:18,729 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193724416}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 193724416}
2022-05-12 22:34:18,730 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147587072}) to executor  for transfer request: 0.
2022-05-12 22:34:19,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) about to wait for the following futures []
2022-05-12 22:34:19,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) done waiting for dependent futures
2022-05-12 22:34:19,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147587072}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 147587072}
2022-05-12 22:34:19,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171966464}) to executor  for transfer request: 0.
2022-05-12 22:34:19,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) about to wait for the following futures []
2022-05-12 22:34:19,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) done waiting for dependent futures
2022-05-12 22:34:19,554 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171966464}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 171966464}
2022-05-12 22:34:19,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,680 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165412864}) to executor  for transfer request: 0.
2022-05-12 22:34:19,680 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) about to wait for the following futures []
2022-05-12 22:34:19,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) done waiting for dependent futures
2022-05-12 22:34:19,681 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165412864}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 165412864}
2022-05-12 22:34:19,682 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139722752}) to executor  for transfer request: 0.
2022-05-12 22:34:19,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) about to wait for the following futures []
2022-05-12 22:34:19,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) done waiting for dependent futures
2022-05-12 22:34:19,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139722752}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 139722752}
2022-05-12 22:34:19,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,830 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185860096}) to executor  for transfer request: 0.
2022-05-12 22:34:19,831 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) about to wait for the following futures []
2022-05-12 22:34:19,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) done waiting for dependent futures
2022-05-12 22:34:19,831 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185860096}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 185860096}
2022-05-12 22:34:19,832 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:20,705 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:34:20,705 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:20,705 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:34:20,706 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:34:20,706 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 14680064}
2022-05-12 22:34:20,706 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:22,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132382720}) to executor  for transfer request: 0.
2022-05-12 22:34:22,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:22,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) about to wait for the following futures []
2022-05-12 22:34:22,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) done waiting for dependent futures
2022-05-12 22:34:22,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132382720}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 132382720}
2022-05-12 22:34:22,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:22,590 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193986560}) to executor  for transfer request: 0.
2022-05-12 22:34:22,591 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:22,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) about to wait for the following futures []
2022-05-12 22:34:22,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) done waiting for dependent futures
2022-05-12 22:34:22,591 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193986560}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 193986560}
2022-05-12 22:34:22,592 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:23,424 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178257920}) to executor  for transfer request: 0.
2022-05-12 22:34:23,424 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:23,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) about to wait for the following futures []
2022-05-12 22:34:23,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) done waiting for dependent futures
2022-05-12 22:34:23,425 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178257920}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 178257920}
2022-05-12 22:34:23,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:23,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147849216}) to executor  for transfer request: 0.
2022-05-12 22:34:23,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:23,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) about to wait for the following futures []
2022-05-12 22:34:23,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) done waiting for dependent futures
2022-05-12 22:34:23,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147849216}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 147849216}
2022-05-12 22:34:23,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,271 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165675008}) to executor  for transfer request: 0.
2022-05-12 22:34:24,271 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:24,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) about to wait for the following futures []
2022-05-12 22:34:24,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) done waiting for dependent futures
2022-05-12 22:34:24,272 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165675008}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 165675008}
2022-05-12 22:34:24,272 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:24,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172228608}) to executor  for transfer request: 0.
2022-05-12 22:34:24,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:24,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) about to wait for the following futures []
2022-05-12 22:34:24,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) done waiting for dependent futures
2022-05-12 22:34:24,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172228608}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 172228608}
2022-05-12 22:34:24,752 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:25,795 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155713536}) to executor  for transfer request: 0.
2022-05-12 22:34:25,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:25,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) about to wait for the following futures []
2022-05-12 22:34:25,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) done waiting for dependent futures
2022-05-12 22:34:25,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155713536}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 155713536}
2022-05-12 22:34:25,796 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:27,485 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186122240}) to executor  for transfer request: 0.
2022-05-12 22:34:27,485 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:27,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) about to wait for the following futures []
2022-05-12 22:34:27,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) done waiting for dependent futures
2022-05-12 22:34:27,485 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186122240}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 186122240}
2022-05-12 22:34:27,486 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:27,779 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194248704}) to executor  for transfer request: 0.
2022-05-12 22:34:27,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:27,779 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) about to wait for the following futures []
2022-05-12 22:34:27,779 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) done waiting for dependent futures
2022-05-12 22:34:27,779 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194248704}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 194248704}
2022-05-12 22:34:27,780 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:28,247 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32243712}) to executor  for transfer request: 0.
2022-05-12 22:34:28,247 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:28,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) about to wait for the following futures []
2022-05-12 22:34:28,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) done waiting for dependent futures
2022-05-12 22:34:28,247 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32243712}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 32243712}
2022-05-12 22:34:28,247 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:29,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165937152}) to executor  for transfer request: 0.
2022-05-12 22:34:30,000 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:30,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) about to wait for the following futures []
2022-05-12 22:34:30,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) done waiting for dependent futures
2022-05-12 22:34:30,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165937152}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 165937152}
2022-05-12 22:34:30,001 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:30,172 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148111360}) to executor  for transfer request: 0.
2022-05-12 22:34:30,172 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:30,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) about to wait for the following futures []
2022-05-12 22:34:30,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) done waiting for dependent futures
2022-05-12 22:34:30,173 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148111360}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 148111360}
2022-05-12 22:34:30,173 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:30,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139984896}) to executor  for transfer request: 0.
2022-05-12 22:34:30,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:30,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) about to wait for the following futures []
2022-05-12 22:34:30,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) done waiting for dependent futures
2022-05-12 22:34:30,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139984896}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 139984896}
2022-05-12 22:34:30,268 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:30,479 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132644864}) to executor  for transfer request: 0.
2022-05-12 22:34:30,479 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:30,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) about to wait for the following futures []
2022-05-12 22:34:30,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) done waiting for dependent futures
2022-05-12 22:34:30,479 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132644864}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 132644864}
2022-05-12 22:34:30,480 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:30,645 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155975680}) to executor  for transfer request: 0.
2022-05-12 22:34:30,645 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:30,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) about to wait for the following futures []
2022-05-12 22:34:30,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) done waiting for dependent futures
2022-05-12 22:34:30,645 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155975680}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 155975680}
2022-05-12 22:34:30,645 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,363 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194510848}) to executor  for transfer request: 0.
2022-05-12 22:34:31,363 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) about to wait for the following futures []
2022-05-12 22:34:31,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) done waiting for dependent futures
2022-05-12 22:34:31,364 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194510848}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 194510848}
2022-05-12 22:34:31,364 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172490752}) to executor  for transfer request: 0.
2022-05-12 22:34:31,760 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) about to wait for the following futures []
2022-05-12 22:34:31,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) done waiting for dependent futures
2022-05-12 22:34:31,761 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172490752}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 172490752}
2022-05-12 22:34:31,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:33,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186384384}) to executor  for transfer request: 0.
2022-05-12 22:34:33,154 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:33,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) about to wait for the following futures []
2022-05-12 22:34:33,154 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) done waiting for dependent futures
2022-05-12 22:34:33,154 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186384384}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 186384384}
2022-05-12 22:34:33,155 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:33,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32505856}) to executor  for transfer request: 0.
2022-05-12 22:34:33,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:33,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) about to wait for the following futures []
2022-05-12 22:34:33,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) done waiting for dependent futures
2022-05-12 22:34:33,736 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32505856}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 32505856}
2022-05-12 22:34:33,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:34,079 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178520064}) to executor  for transfer request: 0.
2022-05-12 22:34:34,080 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:34,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) about to wait for the following futures []
2022-05-12 22:34:34,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) done waiting for dependent futures
2022-05-12 22:34:34,080 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178520064}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 178520064}
2022-05-12 22:34:34,081 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:35,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166199296}) to executor  for transfer request: 0.
2022-05-12 22:34:35,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:35,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) about to wait for the following futures []
2022-05-12 22:34:35,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) done waiting for dependent futures
2022-05-12 22:34:35,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166199296}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 166199296}
2022-05-12 22:34:35,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:35,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194772992}) to executor  for transfer request: 0.
2022-05-12 22:34:35,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:35,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) about to wait for the following futures []
2022-05-12 22:34:35,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) done waiting for dependent futures
2022-05-12 22:34:35,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194772992}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 194772992}
2022-05-12 22:34:35,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:36,612 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:34:36,612 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:36,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:34:36,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:34:36,613 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 14942208}
2022-05-12 22:34:36,613 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,587 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172752896}) to executor  for transfer request: 0.
2022-05-12 22:34:37,588 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) about to wait for the following futures []
2022-05-12 22:34:37,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) done waiting for dependent futures
2022-05-12 22:34:37,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172752896}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 172752896}
2022-05-12 22:34:37,589 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132907008}) to executor  for transfer request: 0.
2022-05-12 22:34:37,990 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) about to wait for the following futures []
2022-05-12 22:34:37,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) done waiting for dependent futures
2022-05-12 22:34:37,991 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132907008}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 132907008}
2022-05-12 22:34:37,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:38,389 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140247040}) to executor  for transfer request: 0.
2022-05-12 22:34:38,389 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:38,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) about to wait for the following futures []
2022-05-12 22:34:38,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) done waiting for dependent futures
2022-05-12 22:34:38,390 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140247040}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 140247040}
2022-05-12 22:34:38,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:38,889 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148373504}) to executor  for transfer request: 0.
2022-05-12 22:34:38,889 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:38,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) about to wait for the following futures []
2022-05-12 22:34:38,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) done waiting for dependent futures
2022-05-12 22:34:38,890 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148373504}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 148373504}
2022-05-12 22:34:38,890 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:40,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195035136}) to executor  for transfer request: 0.
2022-05-12 22:34:40,290 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:40,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) about to wait for the following futures []
2022-05-12 22:34:40,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) done waiting for dependent futures
2022-05-12 22:34:40,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195035136}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 195035136}
2022-05-12 22:34:40,290 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:40,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166461440}) to executor  for transfer request: 0.
2022-05-12 22:34:40,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:40,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) about to wait for the following futures []
2022-05-12 22:34:40,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) done waiting for dependent futures
2022-05-12 22:34:40,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166461440}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 166461440}
2022-05-12 22:34:40,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:40,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186646528}) to executor  for transfer request: 0.
2022-05-12 22:34:40,986 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:40,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) about to wait for the following futures []
2022-05-12 22:34:40,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) done waiting for dependent futures
2022-05-12 22:34:40,986 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186646528}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 186646528}
2022-05-12 22:34:40,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:41,406 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32768000}) to executor  for transfer request: 0.
2022-05-12 22:34:41,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) about to wait for the following futures []
2022-05-12 22:34:41,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) done waiting for dependent futures
2022-05-12 22:34:41,407 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32768000}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 32768000}
2022-05-12 22:34:41,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:42,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156237824}) to executor  for transfer request: 0.
2022-05-12 22:34:42,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:42,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) about to wait for the following futures []
2022-05-12 22:34:42,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) done waiting for dependent futures
2022-05-12 22:34:42,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156237824}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 156237824}
2022-05-12 22:34:42,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:46,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186908672}) to executor  for transfer request: 0.
2022-05-12 22:34:46,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:46,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) about to wait for the following futures []
2022-05-12 22:34:46,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) done waiting for dependent futures
2022-05-12 22:34:46,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186908672}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 186908672}
2022-05-12 22:34:46,539 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:46,819 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173015040}) to executor  for transfer request: 0.
2022-05-12 22:34:46,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:46,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) about to wait for the following futures []
2022-05-12 22:34:46,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) done waiting for dependent futures
2022-05-12 22:34:46,820 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173015040}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 173015040}
2022-05-12 22:34:46,820 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140509184}) to executor  for transfer request: 0.
2022-05-12 22:34:48,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) about to wait for the following futures []
2022-05-12 22:34:48,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) done waiting for dependent futures
2022-05-12 22:34:48,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140509184}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 140509184}
2022-05-12 22:34:48,186 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148635648}) to executor  for transfer request: 0.
2022-05-12 22:34:48,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) about to wait for the following futures []
2022-05-12 22:34:48,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) done waiting for dependent futures
2022-05-12 22:34:48,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148635648}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 148635648}
2022-05-12 22:34:48,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166723584}) to executor  for transfer request: 0.
2022-05-12 22:34:48,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) about to wait for the following futures []
2022-05-12 22:34:48,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) done waiting for dependent futures
2022-05-12 22:34:48,371 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166723584}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 166723584}
2022-05-12 22:34:48,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133169152}) to executor  for transfer request: 0.
2022-05-12 22:34:48,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) about to wait for the following futures []
2022-05-12 22:34:48,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) done waiting for dependent futures
2022-05-12 22:34:48,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133169152}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 133169152}
2022-05-12 22:34:48,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,672 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178782208}) to executor  for transfer request: 0.
2022-05-12 22:34:48,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) about to wait for the following futures []
2022-05-12 22:34:48,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) done waiting for dependent futures
2022-05-12 22:34:48,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178782208}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 178782208}
2022-05-12 22:34:48,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:49,680 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195297280}) to executor  for transfer request: 0.
2022-05-12 22:34:49,680 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:49,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) about to wait for the following futures []
2022-05-12 22:34:49,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) done waiting for dependent futures
2022-05-12 22:34:49,680 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195297280}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 195297280}
2022-05-12 22:34:49,681 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:51,030 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33030144}) to executor  for transfer request: 0.
2022-05-12 22:34:51,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:51,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) about to wait for the following futures []
2022-05-12 22:34:51,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) done waiting for dependent futures
2022-05-12 22:34:51,031 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33030144}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 33030144}
2022-05-12 22:34:51,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:51,540 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187170816}) to executor  for transfer request: 0.
2022-05-12 22:34:51,540 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:51,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) about to wait for the following futures []
2022-05-12 22:34:51,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) done waiting for dependent futures
2022-05-12 22:34:51,540 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187170816}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 187170816}
2022-05-12 22:34:51,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,096 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148897792}) to executor  for transfer request: 0.
2022-05-12 22:34:52,096 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) about to wait for the following futures []
2022-05-12 22:34:52,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) done waiting for dependent futures
2022-05-12 22:34:52,097 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148897792}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 148897792}
2022-05-12 22:34:52,098 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,625 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173277184}) to executor  for transfer request: 0.
2022-05-12 22:34:52,625 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) about to wait for the following futures []
2022-05-12 22:34:52,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) done waiting for dependent futures
2022-05-12 22:34:52,626 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173277184}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 173277184}
2022-05-12 22:34:52,626 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156499968}) to executor  for transfer request: 0.
2022-05-12 22:34:52,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) about to wait for the following futures []
2022-05-12 22:34:52,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) done waiting for dependent futures
2022-05-12 22:34:52,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156499968}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 156499968}
2022-05-12 22:34:52,688 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:53,488 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:34:53,488 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:53,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:34:53,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:34:53,489 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 15204352}
2022-05-12 22:34:53,489 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:53,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195559424}) to executor  for transfer request: 0.
2022-05-12 22:34:53,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:53,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) about to wait for the following futures []
2022-05-12 22:34:53,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) done waiting for dependent futures
2022-05-12 22:34:53,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195559424}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 195559424}
2022-05-12 22:34:53,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:53,900 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133431296}) to executor  for transfer request: 0.
2022-05-12 22:34:53,900 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:53,900 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) about to wait for the following futures []
2022-05-12 22:34:53,901 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) done waiting for dependent futures
2022-05-12 22:34:53,901 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133431296}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 133431296}
2022-05-12 22:34:53,902 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:55,835 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187432960}) to executor  for transfer request: 0.
2022-05-12 22:34:55,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:55,836 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) about to wait for the following futures []
2022-05-12 22:34:55,836 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) done waiting for dependent futures
2022-05-12 22:34:55,836 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187432960}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 187432960}
2022-05-12 22:34:55,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,976 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166985728}) to executor  for transfer request: 0.
2022-05-12 22:34:57,976 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:57,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) about to wait for the following futures []
2022-05-12 22:34:57,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) done waiting for dependent futures
2022-05-12 22:34:57,977 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166985728}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 166985728}
2022-05-12 22:34:57,977 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:58,493 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195821568}) to executor  for transfer request: 0.
2022-05-12 22:34:58,493 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:58,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) about to wait for the following futures []
2022-05-12 22:34:58,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) done waiting for dependent futures
2022-05-12 22:34:58,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195821568}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 195821568}
2022-05-12 22:34:58,494 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:58,882 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33292288}) to executor  for transfer request: 0.
2022-05-12 22:34:58,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:58,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:58,882 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) about to wait for the following futures []
2022-05-12 22:34:58,882 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) done waiting for dependent futures
2022-05-12 22:34:58,882 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=201326592-209715199'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 201326592, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:34:58,883 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:58,883 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:58,883 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:58,883 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:58,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) about to wait for the following futures []
2022-05-12 22:34:58,883 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:58,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) done waiting for dependent futures
2022-05-12 22:34:58,884 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:58,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33292288}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 33292288}
2022-05-12 22:34:58,884 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:34:58,884 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:34:58,884 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:58,885 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:58,885 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:58,885 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=201326592-209715199', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:34:58,885 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:58,885 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:34:58,885 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:58,885 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:58,885 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:34:58,885 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:34:58,885 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:34:58,885 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:34:58,886 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:34:58,886 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=201326592-209715199
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223458Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:34:58,886 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223458Z
20220512/eu-central-1/s3/aws4_request
13c3ba20d41b379035e679dbcba8de994484ca3e2858d0e483a9c5fcf8aab141
2022-05-12 22:34:58,886 botocore.auth DEBUG    Signature:
4c0e73eedd293e8928f1f525e209f18f3f1b7c22542de4ec2d84fa00ee79c362
2022-05-12 22:34:58,886 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:58,886 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:58,886 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:34:58,887 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:34:59,105 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:34:59,106 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Tkb01nR3pR8mvCLF2Yy7gBSO5rSDaKiM5vprsVNLbQGUYdm2bKK4z2RYWonTAxymPcLqlZ/e5cs=', 'x-amz-request-id': '2J5CDR2G79P1WNTN', 'Date': 'Thu, 12 May 2022 22:34:59 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 201326592-209715199/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:34:59,106 botocore.parsers DEBUG    Response body:

2022-05-12 22:34:59,107 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:34:59,107 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:34:59,107 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:34:59,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140771328}) to executor  for transfer request: 0.
2022-05-12 22:34:59,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:59,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) about to wait for the following futures []
2022-05-12 22:34:59,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) done waiting for dependent futures
2022-05-12 22:34:59,253 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140771328}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 140771328}
2022-05-12 22:34:59,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:00,862 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156762112}) to executor  for transfer request: 0.
2022-05-12 22:35:00,862 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:00,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) about to wait for the following futures []
2022-05-12 22:35:00,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) done waiting for dependent futures
2022-05-12 22:35:00,863 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156762112}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 156762112}
2022-05-12 22:35:00,863 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:01,129 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173539328}) to executor  for transfer request: 0.
2022-05-12 22:35:01,129 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:01,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) about to wait for the following futures []
2022-05-12 22:35:01,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) done waiting for dependent futures
2022-05-12 22:35:01,130 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173539328}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 173539328}
2022-05-12 22:35:01,131 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:01,230 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187695104}) to executor  for transfer request: 0.
2022-05-12 22:35:01,230 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:01,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) about to wait for the following futures []
2022-05-12 22:35:01,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) done waiting for dependent futures
2022-05-12 22:35:01,231 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187695104}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 187695104}
2022-05-12 22:35:01,231 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:01,746 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133693440}) to executor  for transfer request: 0.
2022-05-12 22:35:01,746 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:01,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) about to wait for the following futures []
2022-05-12 22:35:01,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) done waiting for dependent futures
2022-05-12 22:35:01,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133693440}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 133693440}
2022-05-12 22:35:01,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179044352}) to executor  for transfer request: 0.
2022-05-12 22:35:02,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) about to wait for the following futures []
2022-05-12 22:35:02,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) done waiting for dependent futures
2022-05-12 22:35:02,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179044352}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 179044352}
2022-05-12 22:35:02,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196083712}) to executor  for transfer request: 0.
2022-05-12 22:35:02,317 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) about to wait for the following futures []
2022-05-12 22:35:02,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) done waiting for dependent futures
2022-05-12 22:35:02,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196083712}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 196083712}
2022-05-12 22:35:02,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:03,433 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167247872}) to executor  for transfer request: 0.
2022-05-12 22:35:03,433 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:03,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) about to wait for the following futures []
2022-05-12 22:35:03,434 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) done waiting for dependent futures
2022-05-12 22:35:03,434 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167247872}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 167247872}
2022-05-12 22:35:03,434 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:04,772 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149159936}) to executor  for transfer request: 0.
2022-05-12 22:35:04,772 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:04,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) about to wait for the following futures []
2022-05-12 22:35:04,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) done waiting for dependent futures
2022-05-12 22:35:04,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149159936}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 149159936}
2022-05-12 22:35:04,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157024256}) to executor  for transfer request: 0.
2022-05-12 22:35:06,412 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) about to wait for the following futures []
2022-05-12 22:35:06,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) done waiting for dependent futures
2022-05-12 22:35:06,413 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157024256}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 157024256}
2022-05-12 22:35:06,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,712 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141033472}) to executor  for transfer request: 0.
2022-05-12 22:35:06,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) about to wait for the following futures []
2022-05-12 22:35:06,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) done waiting for dependent futures
2022-05-12 22:35:06,712 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141033472}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 141033472}
2022-05-12 22:35:06,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,804 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187957248}) to executor  for transfer request: 0.
2022-05-12 22:35:06,805 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) about to wait for the following futures []
2022-05-12 22:35:06,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) done waiting for dependent futures
2022-05-12 22:35:06,805 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187957248}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 187957248}
2022-05-12 22:35:06,806 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:07,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:35:07,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:07,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:35:07,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:35:07,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 15466496}
2022-05-12 22:35:07,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,825 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201326592}) to executor  for transfer request: 0.
2022-05-12 22:35:09,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) about to wait for the following futures []
2022-05-12 22:35:09,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) done waiting for dependent futures
2022-05-12 22:35:09,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201326592}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 201326592}
2022-05-12 22:35:09,826 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196345856}) to executor  for transfer request: 0.
2022-05-12 22:35:09,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) about to wait for the following futures []
2022-05-12 22:35:09,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) done waiting for dependent futures
2022-05-12 22:35:09,858 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196345856}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 196345856}
2022-05-12 22:35:09,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,221 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167510016}) to executor  for transfer request: 0.
2022-05-12 22:35:10,222 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,222 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) about to wait for the following futures []
2022-05-12 22:35:10,222 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) done waiting for dependent futures
2022-05-12 22:35:10,222 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=209715200-218103807'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 209715200, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:10,222 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:10,223 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:10,223 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) about to wait for the following futures []
2022-05-12 22:35:10,223 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:10,223 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) done waiting for dependent futures
2022-05-12 22:35:10,223 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:10,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167510016}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 167510016}
2022-05-12 22:35:10,224 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:10,225 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:10,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,225 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:10,225 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:10,225 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:10,225 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:10,225 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=209715200-218103807', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:10,226 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:10,226 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:10,226 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:10,226 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:10,226 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:10,226 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:10,226 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:10,226 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:10,227 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:10,227 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=209715200-218103807
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223510Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:10,227 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223510Z
20220512/eu-central-1/s3/aws4_request
6e5fc822f8c320b4d9236afc6970b6866584544ba58b7fe12d4ac2577212b3a5
2022-05-12 22:35:10,227 botocore.auth DEBUG    Signature:
379e33a5c03d6ce47483b08f5b41de6c72560749f1e1756b46b8ff59a753f4e7
2022-05-12 22:35:10,227 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:10,227 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:10,227 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:10,228 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:10,463 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:10,464 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'kkgjMNw9TFtxSVsXqF1BOb8PMBcHqpQtM5OSBxgu0+IZRug7YONqxQSq3d1y35obIzHFUnJ01S8=', 'x-amz-request-id': 'B1JMJ6R9MME3RH59', 'Date': 'Thu, 12 May 2022 22:35:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 209715200-218103807/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:10,464 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:10,465 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:10,465 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:10,465 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:11,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188219392}) to executor  for transfer request: 0.
2022-05-12 22:35:11,236 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:11,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) about to wait for the following futures []
2022-05-12 22:35:11,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) done waiting for dependent futures
2022-05-12 22:35:11,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188219392}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 188219392}
2022-05-12 22:35:11,237 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:11,287 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133955584}) to executor  for transfer request: 0.
2022-05-12 22:35:11,287 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:11,288 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:11,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) about to wait for the following futures []
2022-05-12 22:35:11,288 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) about to wait for the following futures []
2022-05-12 22:35:11,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) done waiting for dependent futures
2022-05-12 22:35:11,288 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) done waiting for dependent futures
2022-05-12 22:35:11,288 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133955584}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 133955584}
2022-05-12 22:35:11,288 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=218103808-226492415'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 218103808, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:11,289 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:11,289 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:11,289 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:11,289 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:11,289 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:11,289 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:11,291 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:11,291 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:11,291 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:11,291 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:11,291 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:11,291 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=218103808-226492415', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:11,291 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:11,291 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:11,292 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:11,292 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:11,292 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:11,292 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:11,292 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:11,292 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:11,292 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:11,292 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=218103808-226492415
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223511Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:11,292 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223511Z
20220512/eu-central-1/s3/aws4_request
88768e5b7ec18d58876fda6cb9c47e01d15b409cd32c6a1ba141c7115dfc8441
2022-05-12 22:35:11,293 botocore.auth DEBUG    Signature:
1c17cf8de8bc9a087e6c9508e22b873aa0a531132aefae662bdd32daac37b5ee
2022-05-12 22:35:11,293 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:11,293 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:11,293 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:11,293 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:11,294 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:35:11,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149422080}) to executor  for transfer request: 0.
2022-05-12 22:35:11,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:11,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) about to wait for the following futures []
2022-05-12 22:35:11,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) done waiting for dependent futures
2022-05-12 22:35:11,477 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149422080}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 149422080}
2022-05-12 22:35:11,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:13,163 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179306496}) to executor  for transfer request: 0.
2022-05-12 22:35:13,163 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:13,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) about to wait for the following futures []
2022-05-12 22:35:13,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) done waiting for dependent futures
2022-05-12 22:35:13,164 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179306496}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 179306496}
2022-05-12 22:35:13,164 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:13,736 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141295616}) to executor  for transfer request: 0.
2022-05-12 22:35:13,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:13,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) about to wait for the following futures []
2022-05-12 22:35:13,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) done waiting for dependent futures
2022-05-12 22:35:13,737 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141295616}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 141295616}
2022-05-12 22:35:13,738 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173801472}) to executor  for transfer request: 0.
2022-05-12 22:35:15,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) about to wait for the following futures []
2022-05-12 22:35:15,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) done waiting for dependent futures
2022-05-12 22:35:15,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173801472}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 173801472}
2022-05-12 22:35:15,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:16,722 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:16,722 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'txl7Ds2QxbJq+4D54Lw/g0cOR490dL0X80r5zj3plT7ry92ykWIW2YReJ5dsK4dqmEBKyE1VkE0=', 'x-amz-request-id': 'CYZE63AVKAKNHGN4', 'Date': 'Thu, 12 May 2022 22:35:17 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 218103808-226492415/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:16,722 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:16,722 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:16,723 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:16,723 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:16,784 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209715200}) to executor  for transfer request: 0.
2022-05-12 22:35:16,784 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:16,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) about to wait for the following futures []
2022-05-12 22:35:16,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) done waiting for dependent futures
2022-05-12 22:35:16,785 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209715200}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 209715200}
2022-05-12 22:35:16,785 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,667 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:35:17,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:17,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:35:17,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:35:17,668 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 15728640}
2022-05-12 22:35:17,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:18,071 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157286400}) to executor  for transfer request: 0.
2022-05-12 22:35:18,071 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:18,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) about to wait for the following futures []
2022-05-12 22:35:18,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) done waiting for dependent futures
2022-05-12 22:35:18,071 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157286400}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 157286400}
2022-05-12 22:35:18,072 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:18,587 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149684224}) to executor  for transfer request: 0.
2022-05-12 22:35:18,587 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:18,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) about to wait for the following futures []
2022-05-12 22:35:18,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) done waiting for dependent futures
2022-05-12 22:35:18,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149684224}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 149684224}
2022-05-12 22:35:18,588 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:19,067 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196608000}) to executor  for transfer request: 0.
2022-05-12 22:35:19,067 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:19,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) about to wait for the following futures []
2022-05-12 22:35:19,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) done waiting for dependent futures
2022-05-12 22:35:19,068 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196608000}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 196608000}
2022-05-12 22:35:19,068 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,500 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188481536}) to executor  for transfer request: 0.
2022-05-12 22:35:20,500 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) about to wait for the following futures []
2022-05-12 22:35:20,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) done waiting for dependent futures
2022-05-12 22:35:20,501 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188481536}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 188481536}
2022-05-12 22:35:20,501 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,957 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218103808}) to executor  for transfer request: 0.
2022-05-12 22:35:20,958 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218103808}) about to wait for the following futures []
2022-05-12 22:35:20,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218103808}) done waiting for dependent futures
2022-05-12 22:35:20,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218103808}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 218103808}
2022-05-12 22:35:20,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,679 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141557760}) to executor  for transfer request: 0.
2022-05-12 22:35:21,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) about to wait for the following futures []
2022-05-12 22:35:21,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) done waiting for dependent futures
2022-05-12 22:35:21,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141557760}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 141557760}
2022-05-12 22:35:21,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,892 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201588736}) to executor  for transfer request: 0.
2022-05-12 22:35:21,892 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) about to wait for the following futures []
2022-05-12 22:35:21,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) done waiting for dependent futures
2022-05-12 22:35:21,893 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201588736}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 201588736}
2022-05-12 22:35:21,893 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:23,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209977344}) to executor  for transfer request: 0.
2022-05-12 22:35:23,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:23,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) about to wait for the following futures []
2022-05-12 22:35:23,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) done waiting for dependent futures
2022-05-12 22:35:23,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209977344}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 209977344}
2022-05-12 22:35:23,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:24,087 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196870144}) to executor  for transfer request: 0.
2022-05-12 22:35:24,087 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:24,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) about to wait for the following futures []
2022-05-12 22:35:24,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) done waiting for dependent futures
2022-05-12 22:35:24,088 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196870144}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 196870144}
2022-05-12 22:35:24,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:26,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174063616}) to executor  for transfer request: 0.
2022-05-12 22:35:26,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:26,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) about to wait for the following futures []
2022-05-12 22:35:26,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) done waiting for dependent futures
2022-05-12 22:35:26,043 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174063616}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 174063616}
2022-05-12 22:35:26,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:26,651 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157548544}) to executor  for transfer request: 0.
2022-05-12 22:35:26,651 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:26,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) about to wait for the following futures []
2022-05-12 22:35:26,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) done waiting for dependent futures
2022-05-12 22:35:26,652 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157548544}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 157548544}
2022-05-12 22:35:26,653 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:35:27,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:35:27,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:35:27,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 15990784}
2022-05-12 22:35:27,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,446 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149946368}) to executor  for transfer request: 0.
2022-05-12 22:35:27,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) about to wait for the following futures []
2022-05-12 22:35:27,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) done waiting for dependent futures
2022-05-12 22:35:27,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149946368}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 149946368}
2022-05-12 22:35:27,447 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,504 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218365952}) to executor  for transfer request: 0.
2022-05-12 22:35:27,504 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,505 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218365952}) about to wait for the following futures []
2022-05-12 22:35:27,505 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218365952}) done waiting for dependent futures
2022-05-12 22:35:27,505 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218365952}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 218365952}
2022-05-12 22:35:27,505 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:27,987 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179568640}) to executor  for transfer request: 0.
2022-05-12 22:35:27,987 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:27,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) about to wait for the following futures []
2022-05-12 22:35:27,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) done waiting for dependent futures
2022-05-12 22:35:27,988 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179568640}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 179568640}
2022-05-12 22:35:27,988 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:28,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188743680}) to executor  for transfer request: 0.
2022-05-12 22:35:28,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:28,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) about to wait for the following futures []
2022-05-12 22:35:28,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) done waiting for dependent futures
2022-05-12 22:35:28,709 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188743680}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 188743680}
2022-05-12 22:35:28,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:29,087 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210239488}) to executor  for transfer request: 0.
2022-05-12 22:35:29,088 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:29,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) about to wait for the following futures []
2022-05-12 22:35:29,088 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) done waiting for dependent futures
2022-05-12 22:35:29,088 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210239488}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 210239488}
2022-05-12 22:35:29,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:29,610 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201850880}) to executor  for transfer request: 0.
2022-05-12 22:35:29,610 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:29,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) about to wait for the following futures []
2022-05-12 22:35:29,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) done waiting for dependent futures
2022-05-12 22:35:29,611 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201850880}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 201850880}
2022-05-12 22:35:29,611 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:30,972 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141819904}) to executor  for transfer request: 0.
2022-05-12 22:35:30,972 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:30,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) about to wait for the following futures []
2022-05-12 22:35:30,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) done waiting for dependent futures
2022-05-12 22:35:30,973 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141819904}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 141819904}
2022-05-12 22:35:30,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197132288}) to executor  for transfer request: 0.
2022-05-12 22:35:31,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) about to wait for the following futures []
2022-05-12 22:35:31,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) done waiting for dependent futures
2022-05-12 22:35:31,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197132288}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 197132288}
2022-05-12 22:35:31,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:32,813 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218628096}) to executor  for transfer request: 0.
2022-05-12 22:35:32,813 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:32,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218628096}) about to wait for the following futures []
2022-05-12 22:35:32,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218628096}) done waiting for dependent futures
2022-05-12 22:35:32,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218628096}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 218628096}
2022-05-12 22:35:32,814 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:34,322 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150208512}) to executor  for transfer request: 0.
2022-05-12 22:35:34,322 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) about to wait for the following futures []
2022-05-12 22:35:34,323 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) done waiting for dependent futures
2022-05-12 22:35:34,323 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150208512}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 150208512}
2022-05-12 22:35:34,323 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174325760}) to executor  for transfer request: 0.
2022-05-12 22:35:35,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) about to wait for the following futures []
2022-05-12 22:35:35,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) done waiting for dependent futures
2022-05-12 22:35:35,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174325760}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 174325760}
2022-05-12 22:35:35,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:36,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189005824}) to executor  for transfer request: 0.
2022-05-12 22:35:36,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:36,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) about to wait for the following futures []
2022-05-12 22:35:36,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) done waiting for dependent futures
2022-05-12 22:35:36,146 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189005824}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 189005824}
2022-05-12 22:35:36,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:36,745 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:35:36,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:36,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:35:36,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:35:36,746 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 16252928}
2022-05-12 22:35:36,746 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:37,382 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197394432}) to executor  for transfer request: 0.
2022-05-12 22:35:37,382 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:37,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) about to wait for the following futures []
2022-05-12 22:35:37,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) done waiting for dependent futures
2022-05-12 22:35:37,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197394432}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 197394432}
2022-05-12 22:35:37,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:37,961 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157810688}) to executor  for transfer request: 0.
2022-05-12 22:35:37,961 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:37,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) about to wait for the following futures []
2022-05-12 22:35:37,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) done waiting for dependent futures
2022-05-12 22:35:37,962 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157810688}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 157810688}
2022-05-12 22:35:37,962 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:38,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210501632}) to executor  for transfer request: 0.
2022-05-12 22:35:38,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:38,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) about to wait for the following futures []
2022-05-12 22:35:38,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) done waiting for dependent futures
2022-05-12 22:35:38,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210501632}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 210501632}
2022-05-12 22:35:38,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:38,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218890240}) to executor  for transfer request: 0.
2022-05-12 22:35:38,646 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:38,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218890240}) about to wait for the following futures []
2022-05-12 22:35:38,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218890240}) done waiting for dependent futures
2022-05-12 22:35:38,647 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218890240}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 218890240}
2022-05-12 22:35:38,647 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:39,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179830784}) to executor  for transfer request: 0.
2022-05-12 22:35:39,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:39,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) about to wait for the following futures []
2022-05-12 22:35:39,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) done waiting for dependent futures
2022-05-12 22:35:39,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179830784}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 179830784}
2022-05-12 22:35:39,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150470656}) to executor  for transfer request: 0.
2022-05-12 22:35:40,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) about to wait for the following futures []
2022-05-12 22:35:40,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) done waiting for dependent futures
2022-05-12 22:35:40,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150470656}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 150470656}
2022-05-12 22:35:40,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,945 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142082048}) to executor  for transfer request: 0.
2022-05-12 22:35:40,946 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) about to wait for the following futures []
2022-05-12 22:35:40,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) done waiting for dependent futures
2022-05-12 22:35:40,946 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142082048}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 142082048}
2022-05-12 22:35:40,947 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:41,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202113024}) to executor  for transfer request: 0.
2022-05-12 22:35:41,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:41,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) about to wait for the following futures []
2022-05-12 22:35:41,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) done waiting for dependent futures
2022-05-12 22:35:41,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202113024}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 202113024}
2022-05-12 22:35:41,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:42,256 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189267968}) to executor  for transfer request: 0.
2022-05-12 22:35:42,257 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:42,257 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) about to wait for the following futures []
2022-05-12 22:35:42,257 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) done waiting for dependent futures
2022-05-12 22:35:42,257 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189267968}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 189267968}
2022-05-12 22:35:42,258 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,729 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219152384}) to executor  for transfer request: 0.
2022-05-12 22:35:43,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219152384}) about to wait for the following futures []
2022-05-12 22:35:43,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219152384}) done waiting for dependent futures
2022-05-12 22:35:43,730 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219152384}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 219152384}
2022-05-12 22:35:43,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:44,342 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197656576}) to executor  for transfer request: 0.
2022-05-12 22:35:44,343 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:44,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) about to wait for the following futures []
2022-05-12 22:35:44,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) done waiting for dependent futures
2022-05-12 22:35:44,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197656576}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 197656576}
2022-05-12 22:35:44,345 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:45,640 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210763776}) to executor  for transfer request: 0.
2022-05-12 22:35:45,640 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:45,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) about to wait for the following futures []
2022-05-12 22:35:45,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) done waiting for dependent futures
2022-05-12 22:35:45,641 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210763776}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 210763776}
2022-05-12 22:35:45,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:46,635 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174587904}) to executor  for transfer request: 0.
2022-05-12 22:35:46,635 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:46,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) about to wait for the following futures []
2022-05-12 22:35:46,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) done waiting for dependent futures
2022-05-12 22:35:46,636 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174587904}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 174587904}
2022-05-12 22:35:46,636 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:47,202 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158072832}) to executor  for transfer request: 0.
2022-05-12 22:35:47,202 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:47,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) about to wait for the following futures []
2022-05-12 22:35:47,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) done waiting for dependent futures
2022-05-12 22:35:47,203 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158072832}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 158072832}
2022-05-12 22:35:47,203 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:48,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197918720}) to executor  for transfer request: 0.
2022-05-12 22:35:48,413 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:48,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) about to wait for the following futures []
2022-05-12 22:35:48,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) done waiting for dependent futures
2022-05-12 22:35:48,413 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197918720}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 197918720}
2022-05-12 22:35:48,414 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142344192}) to executor  for transfer request: 0.
2022-05-12 22:35:49,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) about to wait for the following futures []
2022-05-12 22:35:49,045 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) about to wait for the following futures []
2022-05-12 22:35:49,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) done waiting for dependent futures
2022-05-12 22:35:49,045 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) done waiting for dependent futures
2022-05-12 22:35:49,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142344192}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 142344192}
2022-05-12 22:35:49,045 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=226492416-234881023'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 226492416, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:49,046 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:49,046 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:49,046 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:49,046 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,046 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:49,047 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:49,047 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:49,047 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:49,047 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:49,047 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:49,047 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:49,047 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=226492416-234881023', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:49,048 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:49,048 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:49,048 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:49,048 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:49,048 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:49,048 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:49,048 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:49,048 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:49,049 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:49,049 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=226492416-234881023
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223549Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:49,049 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223549Z
20220512/eu-central-1/s3/aws4_request
8779dc91501493b5917e549125f998b289790c67a4d9659049664124a8ec80f5
2022-05-12 22:35:49,049 botocore.auth DEBUG    Signature:
bcdb9792b8a5e4fad5e63985158f6c0d58aba0ab1a10114746ac432f538203dc
2022-05-12 22:35:49,049 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:49,049 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:49,049 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:49,050 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:49,050 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:35:49,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189530112}) to executor  for transfer request: 0.
2022-05-12 22:35:49,219 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) about to wait for the following futures []
2022-05-12 22:35:49,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) done waiting for dependent futures
2022-05-12 22:35:49,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189530112}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 189530112}
2022-05-12 22:35:49,220 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:50,161 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150732800}) to executor  for transfer request: 0.
2022-05-12 22:35:50,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:50,162 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:50,162 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) about to wait for the following futures []
2022-05-12 22:35:50,162 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) done waiting for dependent futures
2022-05-12 22:35:50,163 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=32>, 'extra_args': {'Range': 'bytes=234881024-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 234881024, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:50,163 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:50,163 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:50,163 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:50,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) about to wait for the following futures []
2022-05-12 22:35:50,163 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:50,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) done waiting for dependent futures
2022-05-12 22:35:50,164 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:50,164 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150732800}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 150732800}
2022-05-12 22:35:50,164 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:50,165 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:50,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:50,165 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:50,165 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:50,165 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:50,165 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=234881024-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:50,166 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:50,166 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:50,166 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:50,166 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:50,166 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:50,166 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:50,166 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:50,166 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data/BANDS.npy
2022-05-12 22:35:50,167 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:50,167 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=234881024-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223550Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:50,167 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223550Z
20220512/eu-central-1/s3/aws4_request
47d39654ce8e80dbaf94c985df4f7ae8b07919a100ba13c79157f66225136d59
2022-05-12 22:35:50,167 botocore.auth DEBUG    Signature:
8fdf9a4b100e929215fc2c34f22210ffe3783a543a6c675d6296161350e6c427
2022-05-12 22:35:50,167 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:50,167 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:50,167 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:50,168 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:50,365 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 7119104
2022-05-12 22:35:50,365 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '08BH5JM7uCdkf6e5Elh7vjaL8GTlTypCOsQUC+jSVhTKfZhfqHttPUCHooAQHMO5G7x1kI+zhWs=', 'x-amz-request-id': '4J12QZWMJY3KKBZV', 'Date': 'Thu, 12 May 2022 22:35:51 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 234881024-242000127/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '7119104', 'Connection': 'close'}
2022-05-12 22:35:50,366 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:50,367 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:50,367 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:50,367 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:51,644 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219414528}) to executor  for transfer request: 0.
2022-05-12 22:35:51,644 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219414528}) about to wait for the following futures []
2022-05-12 22:35:51,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219414528}) done waiting for dependent futures
2022-05-12 22:35:51,645 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219414528}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 219414528}
2022-05-12 22:35:51,645 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202375168}) to executor  for transfer request: 0.
2022-05-12 22:35:51,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) about to wait for the following futures []
2022-05-12 22:35:51,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) done waiting for dependent futures
2022-05-12 22:35:51,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202375168}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 202375168}
2022-05-12 22:35:51,649 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198180864}) to executor  for transfer request: 0.
2022-05-12 22:35:52,000 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:52,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) about to wait for the following futures []
2022-05-12 22:35:52,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) done waiting for dependent futures
2022-05-12 22:35:52,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198180864}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 198180864}
2022-05-12 22:35:52,001 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:52,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211025920}) to executor  for transfer request: 0.
2022-05-12 22:35:52,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:52,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) about to wait for the following futures []
2022-05-12 22:35:52,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) done waiting for dependent futures
2022-05-12 22:35:52,140 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211025920}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 211025920}
2022-05-12 22:35:52,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:53,435 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:35:53,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:53,436 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:35:53,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:53,436 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:53,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:35:53,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:35:53,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 16515072}
2022-05-12 22:35:53,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:53,437 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:35:53,437 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:35:53,437 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:35:53,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,275 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180092928}) to executor  for transfer request: 0.
2022-05-12 22:35:54,276 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) about to wait for the following futures []
2022-05-12 22:35:54,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) done waiting for dependent futures
2022-05-12 22:35:54,276 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180092928}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 180092928}
2022-05-12 22:35:54,277 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,479 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:54,480 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UGgRBAAaY45f6zCmul9gl6/mu2OaKFteUlpjdSd5M0DZaBsstpLWKowQM2kvPzDOkFKLn7QSHtM=', 'x-amz-request-id': 'DC0GMMVZ2H204G28', 'Date': 'Thu, 12 May 2022 22:35:55 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:23 GMT', 'ETag': '"28a74130898a2c725c9f77225b96fadd-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 226492416-234881023/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:54,480 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:54,481 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:54,481 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:54,481 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:55,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189792256}) to executor  for transfer request: 0.
2022-05-12 22:35:55,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:55,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) about to wait for the following futures []
2022-05-12 22:35:55,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) done waiting for dependent futures
2022-05-12 22:35:55,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189792256}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 189792256}
2022-05-12 22:35:55,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:55,959 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198443008}) to executor  for transfer request: 0.
2022-05-12 22:35:55,960 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:55,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) about to wait for the following futures []
2022-05-12 22:35:55,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) done waiting for dependent futures
2022-05-12 22:35:55,960 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198443008}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 198443008}
2022-05-12 22:35:55,961 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:55,965 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174850048}) to executor  for transfer request: 0.
2022-05-12 22:35:55,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:55,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) about to wait for the following futures []
2022-05-12 22:35:55,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) done waiting for dependent futures
2022-05-12 22:35:55,965 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174850048}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 174850048}
2022-05-12 22:35:55,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:56,837 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158334976}) to executor  for transfer request: 0.
2022-05-12 22:35:56,837 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:56,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) about to wait for the following futures []
2022-05-12 22:35:56,838 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) done waiting for dependent futures
2022-05-12 22:35:56,838 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158334976}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 158334976}
2022-05-12 22:35:56,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:59,117 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219676672}) to executor  for transfer request: 0.
2022-05-12 22:35:59,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:59,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219676672}) about to wait for the following futures []
2022-05-12 22:35:59,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219676672}) done waiting for dependent futures
2022-05-12 22:35:59,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219676672}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 219676672}
2022-05-12 22:35:59,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:59,559 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234881024}) to executor  for transfer request: 0.
2022-05-12 22:35:59,559 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:59,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234881024}) about to wait for the following futures []
2022-05-12 22:35:59,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234881024}) done waiting for dependent futures
2022-05-12 22:35:59,560 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234881024}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 234881024}
2022-05-12 22:35:59,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:00,088 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211288064}) to executor  for transfer request: 0.
2022-05-12 22:36:00,088 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:00,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) about to wait for the following futures []
2022-05-12 22:36:00,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) done waiting for dependent futures
2022-05-12 22:36:00,089 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211288064}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 211288064}
2022-05-12 22:36:00,089 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:00,362 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198705152}) to executor  for transfer request: 0.
2022-05-12 22:36:00,362 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:00,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) about to wait for the following futures []
2022-05-12 22:36:00,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) done waiting for dependent futures
2022-05-12 22:36:00,363 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198705152}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 198705152}
2022-05-12 22:36:00,363 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:00,737 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202637312}) to executor  for transfer request: 0.
2022-05-12 22:36:00,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:00,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) about to wait for the following futures []
2022-05-12 22:36:00,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) done waiting for dependent futures
2022-05-12 22:36:00,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202637312}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 202637312}
2022-05-12 22:36:00,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:01,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226492416}) to executor  for transfer request: 0.
2022-05-12 22:36:01,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:01,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226492416}) about to wait for the following futures []
2022-05-12 22:36:01,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226492416}) done waiting for dependent futures
2022-05-12 22:36:01,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226492416}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 226492416}
2022-05-12 22:36:01,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:02,929 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235143168}) to executor  for transfer request: 0.
2022-05-12 22:36:02,930 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:02,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235143168}) about to wait for the following futures []
2022-05-12 22:36:02,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235143168}) done waiting for dependent futures
2022-05-12 22:36:02,930 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235143168}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 235143168}
2022-05-12 22:36:02,930 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:03,144 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158597120}) to executor  for transfer request: 0.
2022-05-12 22:36:03,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:03,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) about to wait for the following futures []
2022-05-12 22:36:03,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) done waiting for dependent futures
2022-05-12 22:36:03,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158597120}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 158597120}
2022-05-12 22:36:03,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:03,844 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190054400}) to executor  for transfer request: 0.
2022-05-12 22:36:03,844 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:03,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) about to wait for the following futures []
2022-05-12 22:36:03,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) done waiting for dependent futures
2022-05-12 22:36:03,844 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190054400}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 190054400}
2022-05-12 22:36:03,845 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:04,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180355072}) to executor  for transfer request: 0.
2022-05-12 22:36:04,380 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:04,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) about to wait for the following futures []
2022-05-12 22:36:04,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) done waiting for dependent futures
2022-05-12 22:36:04,381 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180355072}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 180355072}
2022-05-12 22:36:04,381 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,214 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198967296}) to executor  for transfer request: 0.
2022-05-12 22:36:05,214 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) about to wait for the following futures []
2022-05-12 22:36:05,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) done waiting for dependent futures
2022-05-12 22:36:05,215 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198967296}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 198967296}
2022-05-12 22:36:05,215 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211550208}) to executor  for transfer request: 0.
2022-05-12 22:36:05,428 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) about to wait for the following futures []
2022-05-12 22:36:05,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) done waiting for dependent futures
2022-05-12 22:36:05,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211550208}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 211550208}
2022-05-12 22:36:05,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:06,360 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175112192}) to executor  for transfer request: 0.
2022-05-12 22:36:06,360 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:06,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) about to wait for the following futures []
2022-05-12 22:36:06,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) done waiting for dependent futures
2022-05-12 22:36:06,361 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175112192}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 175112192}
2022-05-12 22:36:06,361 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:07,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219938816}) to executor  for transfer request: 0.
2022-05-12 22:36:07,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:07,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219938816}) about to wait for the following futures []
2022-05-12 22:36:07,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219938816}) done waiting for dependent futures
2022-05-12 22:36:07,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219938816}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 219938816}
2022-05-12 22:36:07,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:09,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158859264}) to executor  for transfer request: 0.
2022-05-12 22:36:09,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:09,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) about to wait for the following futures []
2022-05-12 22:36:09,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) done waiting for dependent futures
2022-05-12 22:36:09,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158859264}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 158859264}
2022-05-12 22:36:09,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:09,510 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190316544}) to executor  for transfer request: 0.
2022-05-12 22:36:09,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:09,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) about to wait for the following futures []
2022-05-12 22:36:09,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) done waiting for dependent futures
2022-05-12 22:36:09,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190316544}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 190316544}
2022-05-12 22:36:09,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:10,087 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226754560}) to executor  for transfer request: 0.
2022-05-12 22:36:10,087 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:10,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226754560}) about to wait for the following futures []
2022-05-12 22:36:10,087 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226754560}) done waiting for dependent futures
2022-05-12 22:36:10,087 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226754560}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 226754560}
2022-05-12 22:36:10,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:10,294 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199229440}) to executor  for transfer request: 0.
2022-05-12 22:36:10,294 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:10,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) about to wait for the following futures []
2022-05-12 22:36:10,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) done waiting for dependent futures
2022-05-12 22:36:10,295 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199229440}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 199229440}
2022-05-12 22:36:10,295 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:10,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202899456}) to executor  for transfer request: 0.
2022-05-12 22:36:10,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:10,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) about to wait for the following futures []
2022-05-12 22:36:10,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) done waiting for dependent futures
2022-05-12 22:36:10,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202899456}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 202899456}
2022-05-12 22:36:10,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:11,042 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235405312}) to executor  for transfer request: 0.
2022-05-12 22:36:11,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:11,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235405312}) about to wait for the following futures []
2022-05-12 22:36:11,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235405312}) done waiting for dependent futures
2022-05-12 22:36:11,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235405312}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 235405312}
2022-05-12 22:36:11,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:11,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211812352}) to executor  for transfer request: 0.
2022-05-12 22:36:11,317 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:11,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) about to wait for the following futures []
2022-05-12 22:36:11,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) done waiting for dependent futures
2022-05-12 22:36:11,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211812352}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 211812352}
2022-05-12 22:36:11,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:12,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175374336}) to executor  for transfer request: 0.
2022-05-12 22:36:12,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:12,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) about to wait for the following futures []
2022-05-12 22:36:12,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) done waiting for dependent futures
2022-05-12 22:36:12,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175374336}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 175374336}
2022-05-12 22:36:12,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:14,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220200960}) to executor  for transfer request: 0.
2022-05-12 22:36:14,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:14,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220200960}) about to wait for the following futures []
2022-05-12 22:36:14,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220200960}) done waiting for dependent futures
2022-05-12 22:36:14,584 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220200960}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 220200960}
2022-05-12 22:36:14,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,439 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190578688}) to executor  for transfer request: 0.
2022-05-12 22:36:15,440 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) about to wait for the following futures []
2022-05-12 22:36:15,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) done waiting for dependent futures
2022-05-12 22:36:15,440 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190578688}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 190578688}
2022-05-12 22:36:15,441 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,506 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180617216}) to executor  for transfer request: 0.
2022-05-12 22:36:15,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) about to wait for the following futures []
2022-05-12 22:36:15,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) done waiting for dependent futures
2022-05-12 22:36:15,507 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180617216}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 180617216}
2022-05-12 22:36:15,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:16,172 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199491584}) to executor  for transfer request: 0.
2022-05-12 22:36:16,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:16,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) about to wait for the following futures []
2022-05-12 22:36:16,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) done waiting for dependent futures
2022-05-12 22:36:16,173 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199491584}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 199491584}
2022-05-12 22:36:16,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:16,343 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212074496}) to executor  for transfer request: 0.
2022-05-12 22:36:16,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:16,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) about to wait for the following futures []
2022-05-12 22:36:16,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) done waiting for dependent futures
2022-05-12 22:36:16,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212074496}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 212074496}
2022-05-12 22:36:16,344 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:16,833 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235667456}) to executor  for transfer request: 0.
2022-05-12 22:36:16,833 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:16,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235667456}) about to wait for the following futures []
2022-05-12 22:36:16,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235667456}) done waiting for dependent futures
2022-05-12 22:36:16,834 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235667456}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 235667456}
2022-05-12 22:36:16,834 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159121408}) to executor  for transfer request: 0.
2022-05-12 22:36:18,413 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) about to wait for the following futures []
2022-05-12 22:36:18,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) done waiting for dependent futures
2022-05-12 22:36:18,414 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159121408}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 159121408}
2022-05-12 22:36:18,414 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:19,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203161600}) to executor  for transfer request: 0.
2022-05-12 22:36:19,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:19,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) about to wait for the following futures []
2022-05-12 22:36:19,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) done waiting for dependent futures
2022-05-12 22:36:19,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203161600}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 203161600}
2022-05-12 22:36:19,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:20,511 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220463104}) to executor  for transfer request: 0.
2022-05-12 22:36:20,511 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:20,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220463104}) about to wait for the following futures []
2022-05-12 22:36:20,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220463104}) done waiting for dependent futures
2022-05-12 22:36:20,512 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220463104}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 220463104}
2022-05-12 22:36:20,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:21,516 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190840832}) to executor  for transfer request: 0.
2022-05-12 22:36:21,516 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:21,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) about to wait for the following futures []
2022-05-12 22:36:21,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) done waiting for dependent futures
2022-05-12 22:36:21,517 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190840832}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 190840832}
2022-05-12 22:36:21,517 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:21,605 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199753728}) to executor  for transfer request: 0.
2022-05-12 22:36:21,606 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:21,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) about to wait for the following futures []
2022-05-12 22:36:21,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) done waiting for dependent futures
2022-05-12 22:36:21,606 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199753728}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 199753728}
2022-05-12 22:36:21,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,064 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212336640}) to executor  for transfer request: 0.
2022-05-12 22:36:23,064 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) about to wait for the following futures []
2022-05-12 22:36:23,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) done waiting for dependent futures
2022-05-12 22:36:23,065 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212336640}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 212336640}
2022-05-12 22:36:23,065 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,584 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175636480}) to executor  for transfer request: 0.
2022-05-12 22:36:24,584 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:24,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) about to wait for the following futures []
2022-05-12 22:36:24,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) done waiting for dependent futures
2022-05-12 22:36:24,585 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175636480}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 175636480}
2022-05-12 22:36:24,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:25,167 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235929600}) to executor  for transfer request: 0.
2022-05-12 22:36:25,167 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:25,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235929600}) about to wait for the following futures []
2022-05-12 22:36:25,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235929600}) done waiting for dependent futures
2022-05-12 22:36:25,167 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235929600}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 235929600}
2022-05-12 22:36:25,168 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:25,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180879360}) to executor  for transfer request: 0.
2022-05-12 22:36:25,797 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:25,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) about to wait for the following futures []
2022-05-12 22:36:25,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) done waiting for dependent futures
2022-05-12 22:36:25,797 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180879360}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 180879360}
2022-05-12 22:36:25,798 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:26,575 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220725248}) to executor  for transfer request: 0.
2022-05-12 22:36:26,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:26,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220725248}) about to wait for the following futures []
2022-05-12 22:36:26,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220725248}) done waiting for dependent futures
2022-05-12 22:36:26,576 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220725248}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 220725248}
2022-05-12 22:36:26,578 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,486 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200015872}) to executor  for transfer request: 0.
2022-05-12 22:36:27,486 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) about to wait for the following futures []
2022-05-12 22:36:27,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) done waiting for dependent futures
2022-05-12 22:36:27,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200015872}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 200015872}
2022-05-12 22:36:27,486 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,298 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191102976}) to executor  for transfer request: 0.
2022-05-12 22:36:30,298 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) about to wait for the following futures []
2022-05-12 22:36:30,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) done waiting for dependent futures
2022-05-12 22:36:30,298 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191102976}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 191102976}
2022-05-12 22:36:30,299 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203423744}) to executor  for transfer request: 0.
2022-05-12 22:36:30,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) about to wait for the following futures []
2022-05-12 22:36:30,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) done waiting for dependent futures
2022-05-12 22:36:30,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203423744}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 203423744}
2022-05-12 22:36:30,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,930 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212598784}) to executor  for transfer request: 0.
2022-05-12 22:36:30,930 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) about to wait for the following futures []
2022-05-12 22:36:30,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) done waiting for dependent futures
2022-05-12 22:36:30,931 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212598784}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 212598784}
2022-05-12 22:36:30,931 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,021 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175898624}) to executor  for transfer request: 0.
2022-05-12 22:36:31,021 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:31,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) about to wait for the following futures []
2022-05-12 22:36:31,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) done waiting for dependent futures
2022-05-12 22:36:31,022 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175898624}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 175898624}
2022-05-12 22:36:31,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200278016}) to executor  for transfer request: 0.
2022-05-12 22:36:31,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:31,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) about to wait for the following futures []
2022-05-12 22:36:31,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) done waiting for dependent futures
2022-05-12 22:36:31,252 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200278016}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 200278016}
2022-05-12 22:36:31,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,654 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220987392}) to executor  for transfer request: 0.
2022-05-12 22:36:31,654 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:31,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220987392}) about to wait for the following futures []
2022-05-12 22:36:31,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220987392}) done waiting for dependent futures
2022-05-12 22:36:31,655 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220987392}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 220987392}
2022-05-12 22:36:31,655 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:32,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236191744}) to executor  for transfer request: 0.
2022-05-12 22:36:32,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:32,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236191744}) about to wait for the following futures []
2022-05-12 22:36:32,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236191744}) done waiting for dependent futures
2022-05-12 22:36:32,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236191744}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 236191744}
2022-05-12 22:36:32,794 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:34,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200540160}) to executor  for transfer request: 0.
2022-05-12 22:36:34,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:34,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) about to wait for the following futures []
2022-05-12 22:36:34,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) done waiting for dependent futures
2022-05-12 22:36:34,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200540160}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 200540160}
2022-05-12 22:36:34,883 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:35,536 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227016704}) to executor  for transfer request: 0.
2022-05-12 22:36:35,536 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:35,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227016704}) about to wait for the following futures []
2022-05-12 22:36:35,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227016704}) done waiting for dependent futures
2022-05-12 22:36:35,537 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227016704}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 227016704}
2022-05-12 22:36:35,537 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:36,058 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181141504}) to executor  for transfer request: 0.
2022-05-12 22:36:36,058 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:36,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) about to wait for the following futures []
2022-05-12 22:36:36,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) done waiting for dependent futures
2022-05-12 22:36:36,059 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181141504}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 181141504}
2022-05-12 22:36:36,059 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:36,114 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191365120}) to executor  for transfer request: 0.
2022-05-12 22:36:36,114 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:36,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) about to wait for the following futures []
2022-05-12 22:36:36,115 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) done waiting for dependent futures
2022-05-12 22:36:36,115 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191365120}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 191365120}
2022-05-12 22:36:36,115 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:37,187 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212860928}) to executor  for transfer request: 0.
2022-05-12 22:36:37,187 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:37,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) about to wait for the following futures []
2022-05-12 22:36:37,188 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) done waiting for dependent futures
2022-05-12 22:36:37,188 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212860928}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 212860928}
2022-05-12 22:36:37,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:39,624 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221249536}) to executor  for transfer request: 0.
2022-05-12 22:36:39,624 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:39,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221249536}) about to wait for the following futures []
2022-05-12 22:36:39,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221249536}) done waiting for dependent futures
2022-05-12 22:36:39,625 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221249536}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 221249536}
2022-05-12 22:36:39,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:40,525 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200802304}) to executor  for transfer request: 0.
2022-05-12 22:36:40,525 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:40,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) about to wait for the following futures []
2022-05-12 22:36:40,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) done waiting for dependent futures
2022-05-12 22:36:40,526 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200802304}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 200802304}
2022-05-12 22:36:40,526 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,193 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236453888}) to executor  for transfer request: 0.
2022-05-12 22:36:41,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236453888}) about to wait for the following futures []
2022-05-12 22:36:41,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236453888}) done waiting for dependent futures
2022-05-12 22:36:41,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236453888}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 236453888}
2022-05-12 22:36:41,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:42,415 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203685888}) to executor  for transfer request: 0.
2022-05-12 22:36:42,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:42,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) about to wait for the following futures []
2022-05-12 22:36:42,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) done waiting for dependent futures
2022-05-12 22:36:42,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203685888}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 203685888}
2022-05-12 22:36:42,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:42,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191627264}) to executor  for transfer request: 0.
2022-05-12 22:36:42,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:42,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) about to wait for the following futures []
2022-05-12 22:36:42,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) done waiting for dependent futures
2022-05-12 22:36:42,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191627264}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 191627264}
2022-05-12 22:36:42,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:44,890 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201064448}) to executor  for transfer request: 0.
2022-05-12 22:36:44,890 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:44,891 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:44,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) about to wait for the following futures []
2022-05-12 22:36:44,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) done waiting for dependent futures
2022-05-12 22:36:44,891 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201064448}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 201064448}
2022-05-12 22:36:44,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:46,405 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213123072}) to executor  for transfer request: 0.
2022-05-12 22:36:46,405 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:46,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213123072}) about to wait for the following futures []
2022-05-12 22:36:46,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213123072}) done waiting for dependent futures
2022-05-12 22:36:46,406 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213123072}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 213123072}
2022-05-12 22:36:46,406 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:47,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227278848}) to executor  for transfer request: 0.
2022-05-12 22:36:47,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227278848}) about to wait for the following futures []
2022-05-12 22:36:47,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227278848}) done waiting for dependent futures
2022-05-12 22:36:47,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227278848}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 227278848}
2022-05-12 22:36:47,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:47,189 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191889408}) to executor  for transfer request: 0.
2022-05-12 22:36:47,189 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) about to wait for the following futures []
2022-05-12 22:36:47,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) done waiting for dependent futures
2022-05-12 22:36:47,190 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191889408}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 191889408}
2022-05-12 22:36:47,190 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:47,882 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221511680}) to executor  for transfer request: 0.
2022-05-12 22:36:47,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221511680}) about to wait for the following futures []
2022-05-12 22:36:47,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221511680}) done waiting for dependent futures
2022-05-12 22:36:47,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221511680}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 221511680}
2022-05-12 22:36:47,883 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:48,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181403648}) to executor  for transfer request: 0.
2022-05-12 22:36:48,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:48,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) about to wait for the following futures []
2022-05-12 22:36:48,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) done waiting for dependent futures
2022-05-12 22:36:48,127 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181403648}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 181403648}
2022-05-12 22:36:48,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:49,958 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236716032}) to executor  for transfer request: 0.
2022-05-12 22:36:49,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:49,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236716032}) about to wait for the following futures []
2022-05-12 22:36:49,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236716032}) done waiting for dependent futures
2022-05-12 22:36:49,959 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236716032}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 236716032}
2022-05-12 22:36:49,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:51,448 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203948032}) to executor  for transfer request: 0.
2022-05-12 22:36:51,448 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:51,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) about to wait for the following futures []
2022-05-12 22:36:51,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) done waiting for dependent futures
2022-05-12 22:36:51,448 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203948032}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 203948032}
2022-05-12 22:36:51,449 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:52,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192151552}) to executor  for transfer request: 0.
2022-05-12 22:36:52,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:52,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) about to wait for the following futures []
2022-05-12 22:36:52,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) done waiting for dependent futures
2022-05-12 22:36:52,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192151552}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 192151552}
2022-05-12 22:36:52,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:53,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227540992}) to executor  for transfer request: 0.
2022-05-12 22:36:53,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:53,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227540992}) about to wait for the following futures []
2022-05-12 22:36:53,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227540992}) done waiting for dependent futures
2022-05-12 22:36:53,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227540992}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 227540992}
2022-05-12 22:36:53,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:53,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221773824}) to executor  for transfer request: 0.
2022-05-12 22:36:53,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:53,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221773824}) about to wait for the following futures []
2022-05-12 22:36:53,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221773824}) done waiting for dependent futures
2022-05-12 22:36:53,791 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221773824}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 221773824}
2022-05-12 22:36:53,791 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:54,117 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213385216}) to executor  for transfer request: 0.
2022-05-12 22:36:54,118 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:54,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213385216}) about to wait for the following futures []
2022-05-12 22:36:54,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213385216}) done waiting for dependent futures
2022-05-12 22:36:54,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213385216}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 213385216}
2022-05-12 22:36:54,119 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:00,688 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181665792}) to executor  for transfer request: 0.
2022-05-12 22:37:00,689 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:00,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) about to wait for the following futures []
2022-05-12 22:37:00,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) done waiting for dependent futures
2022-05-12 22:37:00,689 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181665792}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 181665792}
2022-05-12 22:37:00,690 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:01,489 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222035968}) to executor  for transfer request: 0.
2022-05-12 22:37:01,489 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:01,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222035968}) about to wait for the following futures []
2022-05-12 22:37:01,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222035968}) done waiting for dependent futures
2022-05-12 22:37:01,490 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222035968}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 222035968}
2022-05-12 22:37:01,490 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:01,667 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227803136}) to executor  for transfer request: 0.
2022-05-12 22:37:01,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:01,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227803136}) about to wait for the following futures []
2022-05-12 22:37:01,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227803136}) done waiting for dependent futures
2022-05-12 22:37:01,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227803136}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 227803136}
2022-05-12 22:37:01,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204210176}) to executor  for transfer request: 0.
2022-05-12 22:37:02,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) about to wait for the following futures []
2022-05-12 22:37:02,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) done waiting for dependent futures
2022-05-12 22:37:02,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204210176}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 204210176}
2022-05-12 22:37:02,204 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,535 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213647360}) to executor  for transfer request: 0.
2022-05-12 22:37:02,535 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213647360}) about to wait for the following futures []
2022-05-12 22:37:02,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213647360}) done waiting for dependent futures
2022-05-12 22:37:02,535 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213647360}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 213647360}
2022-05-12 22:37:02,536 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:03,777 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192413696}) to executor  for transfer request: 0.
2022-05-12 22:37:03,778 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:03,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) about to wait for the following futures []
2022-05-12 22:37:03,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) done waiting for dependent futures
2022-05-12 22:37:03,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192413696}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 192413696}
2022-05-12 22:37:03,779 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:04,351 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236978176}) to executor  for transfer request: 0.
2022-05-12 22:37:04,351 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:04,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236978176}) about to wait for the following futures []
2022-05-12 22:37:04,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236978176}) done waiting for dependent futures
2022-05-12 22:37:04,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236978176}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 236978176}
2022-05-12 22:37:04,352 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:06,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222298112}) to executor  for transfer request: 0.
2022-05-12 22:37:06,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:06,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222298112}) about to wait for the following futures []
2022-05-12 22:37:06,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222298112}) done waiting for dependent futures
2022-05-12 22:37:06,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222298112}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 222298112}
2022-05-12 22:37:06,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:09,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204472320}) to executor  for transfer request: 0.
2022-05-12 22:37:09,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:09,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) about to wait for the following futures []
2022-05-12 22:37:09,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) done waiting for dependent futures
2022-05-12 22:37:09,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204472320}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 204472320}
2022-05-12 22:37:09,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:10,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213909504}) to executor  for transfer request: 0.
2022-05-12 22:37:10,921 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:10,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213909504}) about to wait for the following futures []
2022-05-12 22:37:10,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213909504}) done waiting for dependent futures
2022-05-12 22:37:10,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213909504}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 213909504}
2022-05-12 22:37:10,922 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:12,270 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192675840}) to executor  for transfer request: 0.
2022-05-12 22:37:12,270 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:12,270 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:12,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) about to wait for the following futures []
2022-05-12 22:37:12,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) done waiting for dependent futures
2022-05-12 22:37:12,271 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192675840}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 192675840}
2022-05-12 22:37:12,271 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:12,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181927936}) to executor  for transfer request: 0.
2022-05-12 22:37:12,726 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:12,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) about to wait for the following futures []
2022-05-12 22:37:12,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) done waiting for dependent futures
2022-05-12 22:37:12,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181927936}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 181927936}
2022-05-12 22:37:12,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:12,872 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228065280}) to executor  for transfer request: 0.
2022-05-12 22:37:12,873 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:12,873 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228065280}) about to wait for the following futures []
2022-05-12 22:37:12,873 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228065280}) done waiting for dependent futures
2022-05-12 22:37:12,873 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228065280}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 228065280}
2022-05-12 22:37:12,874 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,329 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237240320}) to executor  for transfer request: 0.
2022-05-12 22:37:14,329 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237240320}) about to wait for the following futures []
2022-05-12 22:37:14,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237240320}) done waiting for dependent futures
2022-05-12 22:37:14,330 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237240320}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 237240320}
2022-05-12 22:37:14,331 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:15,246 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222560256}) to executor  for transfer request: 0.
2022-05-12 22:37:15,246 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:15,246 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222560256}) about to wait for the following futures []
2022-05-12 22:37:15,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222560256}) done waiting for dependent futures
2022-05-12 22:37:15,247 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222560256}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 222560256}
2022-05-12 22:37:15,247 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:16,232 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214171648}) to executor  for transfer request: 0.
2022-05-12 22:37:16,232 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:16,232 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214171648}) about to wait for the following futures []
2022-05-12 22:37:16,232 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214171648}) done waiting for dependent futures
2022-05-12 22:37:16,233 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214171648}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 214171648}
2022-05-12 22:37:16,233 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,333 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204734464}) to executor  for transfer request: 0.
2022-05-12 22:37:17,333 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) about to wait for the following futures []
2022-05-12 22:37:17,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) done waiting for dependent futures
2022-05-12 22:37:17,334 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204734464}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 204734464}
2022-05-12 22:37:17,334 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:19,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222822400}) to executor  for transfer request: 0.
2022-05-12 22:37:19,933 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:19,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222822400}) about to wait for the following futures []
2022-05-12 22:37:19,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222822400}) done waiting for dependent futures
2022-05-12 22:37:19,934 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222822400}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 222822400}
2022-05-12 22:37:19,934 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:21,498 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182190080}) to executor  for transfer request: 0.
2022-05-12 22:37:21,498 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:21,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) about to wait for the following futures []
2022-05-12 22:37:21,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) done waiting for dependent futures
2022-05-12 22:37:21,499 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182190080}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 182190080}
2022-05-12 22:37:21,499 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:21,500 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214433792}) to executor  for transfer request: 0.
2022-05-12 22:37:21,500 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:21,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214433792}) about to wait for the following futures []
2022-05-12 22:37:21,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214433792}) done waiting for dependent futures
2022-05-12 22:37:21,501 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214433792}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 214433792}
2022-05-12 22:37:21,501 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,152 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228327424}) to executor  for transfer request: 0.
2022-05-12 22:37:22,152 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228327424}) about to wait for the following futures []
2022-05-12 22:37:22,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228327424}) done waiting for dependent futures
2022-05-12 22:37:22,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228327424}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 228327424}
2022-05-12 22:37:22,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,366 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223084544}) to executor  for transfer request: 0.
2022-05-12 22:37:22,366 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223084544}) about to wait for the following futures []
2022-05-12 22:37:22,366 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223084544}) done waiting for dependent futures
2022-05-12 22:37:22,367 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223084544}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 223084544}
2022-05-12 22:37:22,367 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:23,839 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204996608}) to executor  for transfer request: 0.
2022-05-12 22:37:23,840 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:23,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) about to wait for the following futures []
2022-05-12 22:37:23,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) done waiting for dependent futures
2022-05-12 22:37:23,840 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204996608}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 204996608}
2022-05-12 22:37:23,841 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223346688}) to executor  for transfer request: 0.
2022-05-12 22:37:27,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223346688}) about to wait for the following futures []
2022-05-12 22:37:27,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223346688}) done waiting for dependent futures
2022-05-12 22:37:27,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223346688}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 223346688}
2022-05-12 22:37:27,828 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237502464}) to executor  for transfer request: 0.
2022-05-12 22:37:27,922 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237502464}) about to wait for the following futures []
2022-05-12 22:37:27,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237502464}) done waiting for dependent futures
2022-05-12 22:37:27,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237502464}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 237502464}
2022-05-12 22:37:27,923 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:28,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214695936}) to executor  for transfer request: 0.
2022-05-12 22:37:28,971 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:28,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214695936}) about to wait for the following futures []
2022-05-12 22:37:28,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214695936}) done waiting for dependent futures
2022-05-12 22:37:28,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214695936}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 214695936}
2022-05-12 22:37:28,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,613 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228589568}) to executor  for transfer request: 0.
2022-05-12 22:37:30,614 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:30,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228589568}) about to wait for the following futures []
2022-05-12 22:37:30,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228589568}) done waiting for dependent futures
2022-05-12 22:37:30,615 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228589568}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 228589568}
2022-05-12 22:37:30,615 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182452224}) to executor  for transfer request: 0.
2022-05-12 22:37:30,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:30,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) about to wait for the following futures []
2022-05-12 22:37:30,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) done waiting for dependent futures
2022-05-12 22:37:30,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182452224}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 182452224}
2022-05-12 22:37:30,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,260 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205258752}) to executor  for transfer request: 0.
2022-05-12 22:37:32,260 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) about to wait for the following futures []
2022-05-12 22:37:32,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) done waiting for dependent futures
2022-05-12 22:37:32,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205258752}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 205258752}
2022-05-12 22:37:32,261 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:34,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237764608}) to executor  for transfer request: 0.
2022-05-12 22:37:34,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:34,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237764608}) about to wait for the following futures []
2022-05-12 22:37:34,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237764608}) done waiting for dependent futures
2022-05-12 22:37:34,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237764608}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 237764608}
2022-05-12 22:37:34,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:36,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223608832}) to executor  for transfer request: 0.
2022-05-12 22:37:36,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:36,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223608832}) about to wait for the following futures []
2022-05-12 22:37:36,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223608832}) done waiting for dependent futures
2022-05-12 22:37:36,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223608832}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 223608832}
2022-05-12 22:37:36,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,472 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228851712}) to executor  for transfer request: 0.
2022-05-12 22:37:37,472 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,472 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228851712}) about to wait for the following futures []
2022-05-12 22:37:37,472 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228851712}) done waiting for dependent futures
2022-05-12 22:37:37,472 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228851712}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 228851712}
2022-05-12 22:37:37,473 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214958080}) to executor  for transfer request: 0.
2022-05-12 22:37:37,685 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214958080}) about to wait for the following futures []
2022-05-12 22:37:37,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214958080}) done waiting for dependent futures
2022-05-12 22:37:37,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214958080}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 214958080}
2022-05-12 22:37:37,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:39,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205520896}) to executor  for transfer request: 0.
2022-05-12 22:37:39,290 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:39,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) about to wait for the following futures []
2022-05-12 22:37:39,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) done waiting for dependent futures
2022-05-12 22:37:39,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205520896}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 205520896}
2022-05-12 22:37:39,291 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215220224}) to executor  for transfer request: 0.
2022-05-12 22:37:41,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215220224}) about to wait for the following futures []
2022-05-12 22:37:41,629 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215220224}) done waiting for dependent futures
2022-05-12 22:37:41,629 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215220224}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 215220224}
2022-05-12 22:37:41,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,640 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238026752}) to executor  for transfer request: 0.
2022-05-12 22:37:41,640 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238026752}) about to wait for the following futures []
2022-05-12 22:37:41,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238026752}) done waiting for dependent futures
2022-05-12 22:37:41,641 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238026752}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 238026752}
2022-05-12 22:37:41,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:42,416 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182714368}) to executor  for transfer request: 0.
2022-05-12 22:37:42,416 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:42,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) about to wait for the following futures []
2022-05-12 22:37:42,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) done waiting for dependent futures
2022-05-12 22:37:42,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182714368}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 182714368}
2022-05-12 22:37:42,417 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:43,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223870976}) to executor  for transfer request: 0.
2022-05-12 22:37:43,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:43,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223870976}) about to wait for the following futures []
2022-05-12 22:37:43,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223870976}) done waiting for dependent futures
2022-05-12 22:37:43,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223870976}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 223870976}
2022-05-12 22:37:43,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:43,967 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229113856}) to executor  for transfer request: 0.
2022-05-12 22:37:43,967 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:43,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229113856}) about to wait for the following futures []
2022-05-12 22:37:43,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229113856}) done waiting for dependent futures
2022-05-12 22:37:43,968 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229113856}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 229113856}
2022-05-12 22:37:43,968 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205783040}) to executor  for transfer request: 0.
2022-05-12 22:37:44,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) about to wait for the following futures []
2022-05-12 22:37:44,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) done waiting for dependent futures
2022-05-12 22:37:44,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205783040}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 205783040}
2022-05-12 22:37:44,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:48,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224133120}) to executor  for transfer request: 0.
2022-05-12 22:37:48,203 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:48,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224133120}) about to wait for the following futures []
2022-05-12 22:37:48,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224133120}) done waiting for dependent futures
2022-05-12 22:37:48,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224133120}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 224133120}
2022-05-12 22:37:48,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:48,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215482368}) to executor  for transfer request: 0.
2022-05-12 22:37:48,283 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:48,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215482368}) about to wait for the following futures []
2022-05-12 22:37:48,283 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215482368}) done waiting for dependent futures
2022-05-12 22:37:48,283 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215482368}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 215482368}
2022-05-12 22:37:48,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:48,978 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206045184}) to executor  for transfer request: 0.
2022-05-12 22:37:48,978 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:48,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) about to wait for the following futures []
2022-05-12 22:37:48,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) done waiting for dependent futures
2022-05-12 22:37:48,979 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206045184}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 206045184}
2022-05-12 22:37:48,979 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,260 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229376000}) to executor  for transfer request: 0.
2022-05-12 22:37:49,260 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:49,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229376000}) about to wait for the following futures []
2022-05-12 22:37:49,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229376000}) done waiting for dependent futures
2022-05-12 22:37:49,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229376000}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 229376000}
2022-05-12 22:37:49,261 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238288896}) to executor  for transfer request: 0.
2022-05-12 22:37:49,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:49,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238288896}) about to wait for the following futures []
2022-05-12 22:37:49,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238288896}) done waiting for dependent futures
2022-05-12 22:37:49,994 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238288896}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 238288896}
2022-05-12 22:37:49,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,210 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182976512}) to executor  for transfer request: 0.
2022-05-12 22:37:51,210 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) about to wait for the following futures []
2022-05-12 22:37:51,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) done waiting for dependent futures
2022-05-12 22:37:51,211 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182976512}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 182976512}
2022-05-12 22:37:51,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:52,258 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224395264}) to executor  for transfer request: 0.
2022-05-12 22:37:52,258 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:52,258 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224395264}) about to wait for the following futures []
2022-05-12 22:37:52,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224395264}) done waiting for dependent futures
2022-05-12 22:37:52,259 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224395264}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 224395264}
2022-05-12 22:37:52,259 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:55,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215744512}) to executor  for transfer request: 0.
2022-05-12 22:37:55,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:55,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215744512}) about to wait for the following futures []
2022-05-12 22:37:55,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215744512}) done waiting for dependent futures
2022-05-12 22:37:55,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215744512}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 215744512}
2022-05-12 22:37:55,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206307328}) to executor  for transfer request: 0.
2022-05-12 22:37:56,279 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) about to wait for the following futures []
2022-05-12 22:37:56,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) done waiting for dependent futures
2022-05-12 22:37:56,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206307328}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 206307328}
2022-05-12 22:37:56,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,309 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224657408}) to executor  for transfer request: 0.
2022-05-12 22:37:56,309 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224657408}) about to wait for the following futures []
2022-05-12 22:37:56,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224657408}) done waiting for dependent futures
2022-05-12 22:37:56,310 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224657408}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 224657408}
2022-05-12 22:37:56,310 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229638144}) to executor  for transfer request: 0.
2022-05-12 22:37:57,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:57,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229638144}) about to wait for the following futures []
2022-05-12 22:37:57,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229638144}) done waiting for dependent futures
2022-05-12 22:37:57,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229638144}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 229638144}
2022-05-12 22:37:57,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:57,378 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238551040}) to executor  for transfer request: 0.
2022-05-12 22:37:57,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:57,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238551040}) about to wait for the following futures []
2022-05-12 22:37:57,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238551040}) done waiting for dependent futures
2022-05-12 22:37:57,379 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238551040}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 238551040}
2022-05-12 22:37:57,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183238656}) to executor  for transfer request: 0.
2022-05-12 22:38:01,173 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) about to wait for the following futures []
2022-05-12 22:38:01,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) done waiting for dependent futures
2022-05-12 22:38:01,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183238656}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 183238656}
2022-05-12 22:38:01,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206569472}) to executor  for transfer request: 0.
2022-05-12 22:38:01,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) about to wait for the following futures []
2022-05-12 22:38:01,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) done waiting for dependent futures
2022-05-12 22:38:01,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206569472}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 206569472}
2022-05-12 22:38:01,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229900288}) to executor  for transfer request: 0.
2022-05-12 22:38:01,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229900288}) about to wait for the following futures []
2022-05-12 22:38:01,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229900288}) done waiting for dependent futures
2022-05-12 22:38:01,647 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229900288}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 229900288}
2022-05-12 22:38:01,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,936 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224919552}) to executor  for transfer request: 0.
2022-05-12 22:38:01,937 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,937 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224919552}) about to wait for the following futures []
2022-05-12 22:38:01,937 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224919552}) done waiting for dependent futures
2022-05-12 22:38:01,937 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224919552}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 224919552}
2022-05-12 22:38:01,938 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:03,751 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238813184}) to executor  for transfer request: 0.
2022-05-12 22:38:03,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:03,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238813184}) about to wait for the following futures []
2022-05-12 22:38:03,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238813184}) done waiting for dependent futures
2022-05-12 22:38:03,752 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238813184}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 238813184}
2022-05-12 22:38:03,752 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:04,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216006656}) to executor  for transfer request: 0.
2022-05-12 22:38:04,253 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:04,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216006656}) about to wait for the following futures []
2022-05-12 22:38:04,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216006656}) done waiting for dependent futures
2022-05-12 22:38:04,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216006656}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 216006656}
2022-05-12 22:38:04,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206831616}) to executor  for transfer request: 0.
2022-05-12 22:38:05,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) about to wait for the following futures []
2022-05-12 22:38:05,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) done waiting for dependent futures
2022-05-12 22:38:05,484 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206831616}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 206831616}
2022-05-12 22:38:05,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:06,775 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183500800}) to executor  for transfer request: 0.
2022-05-12 22:38:06,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:06,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) about to wait for the following futures []
2022-05-12 22:38:06,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) done waiting for dependent futures
2022-05-12 22:38:06,776 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183500800}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 183500800}
2022-05-12 22:38:06,777 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,275 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225181696}) to executor  for transfer request: 0.
2022-05-12 22:38:08,275 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225181696}) about to wait for the following futures []
2022-05-12 22:38:08,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225181696}) done waiting for dependent futures
2022-05-12 22:38:08,276 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225181696}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 225181696}
2022-05-12 22:38:08,276 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216268800}) to executor  for transfer request: 0.
2022-05-12 22:38:08,594 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216268800}) about to wait for the following futures []
2022-05-12 22:38:08,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216268800}) done waiting for dependent futures
2022-05-12 22:38:08,595 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216268800}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 216268800}
2022-05-12 22:38:08,595 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230162432}) to executor  for transfer request: 0.
2022-05-12 22:38:08,834 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230162432}) about to wait for the following futures []
2022-05-12 22:38:08,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230162432}) done waiting for dependent futures
2022-05-12 22:38:08,834 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230162432}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 230162432}
2022-05-12 22:38:08,835 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:11,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183762944}) to executor  for transfer request: 0.
2022-05-12 22:38:11,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:11,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) about to wait for the following futures []
2022-05-12 22:38:11,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) done waiting for dependent futures
2022-05-12 22:38:11,168 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183762944}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 183762944}
2022-05-12 22:38:11,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:12,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207093760}) to executor  for transfer request: 0.
2022-05-12 22:38:12,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:12,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) about to wait for the following futures []
2022-05-12 22:38:12,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) done waiting for dependent futures
2022-05-12 22:38:12,140 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207093760}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 207093760}
2022-05-12 22:38:12,141 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:12,386 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216530944}) to executor  for transfer request: 0.
2022-05-12 22:38:12,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:12,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216530944}) about to wait for the following futures []
2022-05-12 22:38:12,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216530944}) done waiting for dependent futures
2022-05-12 22:38:12,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216530944}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 216530944}
2022-05-12 22:38:12,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:12,946 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239075328}) to executor  for transfer request: 0.
2022-05-12 22:38:12,946 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:12,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239075328}) about to wait for the following futures []
2022-05-12 22:38:12,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239075328}) done waiting for dependent futures
2022-05-12 22:38:12,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239075328}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 239075328}
2022-05-12 22:38:12,947 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,313 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230424576}) to executor  for transfer request: 0.
2022-05-12 22:38:13,313 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230424576}) about to wait for the following futures []
2022-05-12 22:38:13,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230424576}) done waiting for dependent futures
2022-05-12 22:38:13,313 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230424576}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 230424576}
2022-05-12 22:38:13,314 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,608 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225443840}) to executor  for transfer request: 0.
2022-05-12 22:38:13,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225443840}) about to wait for the following futures []
2022-05-12 22:38:13,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225443840}) done waiting for dependent futures
2022-05-12 22:38:13,609 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225443840}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 225443840}
2022-05-12 22:38:13,609 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:14,095 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216793088}) to executor  for transfer request: 0.
2022-05-12 22:38:14,095 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:14,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216793088}) about to wait for the following futures []
2022-05-12 22:38:14,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216793088}) done waiting for dependent futures
2022-05-12 22:38:14,095 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216793088}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 216793088}
2022-05-12 22:38:14,095 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:18,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217055232}) to executor  for transfer request: 0.
2022-05-12 22:38:18,026 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:18,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217055232}) about to wait for the following futures []
2022-05-12 22:38:18,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217055232}) done waiting for dependent futures
2022-05-12 22:38:18,027 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217055232}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 217055232}
2022-05-12 22:38:18,027 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:18,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184025088}) to executor  for transfer request: 0.
2022-05-12 22:38:18,377 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:18,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) about to wait for the following futures []
2022-05-12 22:38:18,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) done waiting for dependent futures
2022-05-12 22:38:18,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184025088}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 184025088}
2022-05-12 22:38:18,378 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:18,432 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239337472}) to executor  for transfer request: 0.
2022-05-12 22:38:18,432 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:18,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239337472}) about to wait for the following futures []
2022-05-12 22:38:18,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239337472}) done waiting for dependent futures
2022-05-12 22:38:18,433 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239337472}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 239337472}
2022-05-12 22:38:18,433 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:18,632 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225705984}) to executor  for transfer request: 0.
2022-05-12 22:38:18,632 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:18,632 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225705984}) about to wait for the following futures []
2022-05-12 22:38:18,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225705984}) done waiting for dependent futures
2022-05-12 22:38:18,633 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225705984}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 225705984}
2022-05-12 22:38:18,633 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:20,049 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207355904}) to executor  for transfer request: 0.
2022-05-12 22:38:20,049 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:20,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) about to wait for the following futures []
2022-05-12 22:38:20,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) done waiting for dependent futures
2022-05-12 22:38:20,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207355904}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 207355904}
2022-05-12 22:38:20,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:20,316 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230686720}) to executor  for transfer request: 0.
2022-05-12 22:38:20,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:20,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230686720}) about to wait for the following futures []
2022-05-12 22:38:20,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230686720}) done waiting for dependent futures
2022-05-12 22:38:20,317 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230686720}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 230686720}
2022-05-12 22:38:20,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184287232}) to executor  for transfer request: 0.
2022-05-12 22:38:22,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) about to wait for the following futures []
2022-05-12 22:38:22,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) done waiting for dependent futures
2022-05-12 22:38:22,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184287232}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 184287232}
2022-05-12 22:38:22,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217317376}) to executor  for transfer request: 0.
2022-05-12 22:38:23,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:23,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217317376}) about to wait for the following futures []
2022-05-12 22:38:23,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217317376}) done waiting for dependent futures
2022-05-12 22:38:23,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217317376}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 217317376}
2022-05-12 22:38:23,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,477 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225968128}) to executor  for transfer request: 0.
2022-05-12 22:38:23,477 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:23,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225968128}) about to wait for the following futures []
2022-05-12 22:38:23,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225968128}) done waiting for dependent futures
2022-05-12 22:38:23,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225968128}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 225968128}
2022-05-12 22:38:23,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,075 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239599616}) to executor  for transfer request: 0.
2022-05-12 22:38:26,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239599616}) about to wait for the following futures []
2022-05-12 22:38:26,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239599616}) done waiting for dependent futures
2022-05-12 22:38:26,076 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239599616}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 239599616}
2022-05-12 22:38:26,076 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226230272}) to executor  for transfer request: 0.
2022-05-12 22:38:26,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,268 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226230272}) about to wait for the following futures []
2022-05-12 22:38:26,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226230272}) done waiting for dependent futures
2022-05-12 22:38:26,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226230272}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 226230272}
2022-05-12 22:38:26,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207618048}) to executor  for transfer request: 0.
2022-05-12 22:38:26,685 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) about to wait for the following futures []
2022-05-12 22:38:26,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) done waiting for dependent futures
2022-05-12 22:38:26,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207618048}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 207618048}
2022-05-12 22:38:26,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,656 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230948864}) to executor  for transfer request: 0.
2022-05-12 22:38:27,656 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230948864}) about to wait for the following futures []
2022-05-12 22:38:27,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230948864}) done waiting for dependent futures
2022-05-12 22:38:27,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230948864}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 230948864}
2022-05-12 22:38:27,657 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:29,156 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217579520}) to executor  for transfer request: 0.
2022-05-12 22:38:29,156 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:29,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217579520}) about to wait for the following futures []
2022-05-12 22:38:29,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217579520}) done waiting for dependent futures
2022-05-12 22:38:29,156 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217579520}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 217579520}
2022-05-12 22:38:29,157 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:30,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239861760}) to executor  for transfer request: 0.
2022-05-12 22:38:30,458 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:30,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239861760}) about to wait for the following futures []
2022-05-12 22:38:30,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239861760}) done waiting for dependent futures
2022-05-12 22:38:30,458 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239861760}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 239861760}
2022-05-12 22:38:30,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207880192}) to executor  for transfer request: 0.
2022-05-12 22:38:31,674 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) about to wait for the following futures []
2022-05-12 22:38:31,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) done waiting for dependent futures
2022-05-12 22:38:31,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207880192}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 207880192}
2022-05-12 22:38:31,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:34,747 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231211008}) to executor  for transfer request: 0.
2022-05-12 22:38:34,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:34,748 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231211008}) about to wait for the following futures []
2022-05-12 22:38:34,748 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231211008}) done waiting for dependent futures
2022-05-12 22:38:34,748 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231211008}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 231211008}
2022-05-12 22:38:34,748 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217841664}) to executor  for transfer request: 0.
2022-05-12 22:38:35,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217841664}) about to wait for the following futures []
2022-05-12 22:38:35,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217841664}) done waiting for dependent futures
2022-05-12 22:38:35,127 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217841664}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 217841664}
2022-05-12 22:38:35,127 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,797 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208142336}) to executor  for transfer request: 0.
2022-05-12 22:38:35,797 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) about to wait for the following futures []
2022-05-12 22:38:35,798 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) done waiting for dependent futures
2022-05-12 22:38:35,798 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208142336}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 208142336}
2022-05-12 22:38:35,798 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231473152}) to executor  for transfer request: 0.
2022-05-12 22:38:40,009 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231473152}) about to wait for the following futures []
2022-05-12 22:38:40,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231473152}) done waiting for dependent futures
2022-05-12 22:38:40,010 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231473152}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 231473152}
2022-05-12 22:38:40,010 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208404480}) to executor  for transfer request: 0.
2022-05-12 22:38:40,148 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) about to wait for the following futures []
2022-05-12 22:38:40,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) done waiting for dependent futures
2022-05-12 22:38:40,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208404480}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 208404480}
2022-05-12 22:38:40,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240123904}) to executor  for transfer request: 0.
2022-05-12 22:38:40,355 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,355 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240123904}) about to wait for the following futures []
2022-05-12 22:38:40,355 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240123904}) done waiting for dependent futures
2022-05-12 22:38:40,355 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240123904}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 240123904}
2022-05-12 22:38:40,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:44,217 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231735296}) to executor  for transfer request: 0.
2022-05-12 22:38:44,217 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:44,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231735296}) about to wait for the following futures []
2022-05-12 22:38:44,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231735296}) done waiting for dependent futures
2022-05-12 22:38:44,218 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231735296}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 231735296}
2022-05-12 22:38:44,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:45,102 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208666624}) to executor  for transfer request: 0.
2022-05-12 22:38:45,102 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:45,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) about to wait for the following futures []
2022-05-12 22:38:45,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) done waiting for dependent futures
2022-05-12 22:38:45,103 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208666624}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 208666624}
2022-05-12 22:38:45,103 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,484 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240386048}) to executor  for transfer request: 0.
2022-05-12 22:38:47,484 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:47,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240386048}) about to wait for the following futures []
2022-05-12 22:38:47,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240386048}) done waiting for dependent futures
2022-05-12 22:38:47,484 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240386048}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 240386048}
2022-05-12 22:38:47,485 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,935 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231997440}) to executor  for transfer request: 0.
2022-05-12 22:38:47,936 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:47,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231997440}) about to wait for the following futures []
2022-05-12 22:38:47,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231997440}) done waiting for dependent futures
2022-05-12 22:38:47,936 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231997440}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 231997440}
2022-05-12 22:38:47,937 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:51,305 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208928768}) to executor  for transfer request: 0.
2022-05-12 22:38:51,305 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:51,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) about to wait for the following futures []
2022-05-12 22:38:51,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) done waiting for dependent futures
2022-05-12 22:38:51,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208928768}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 208928768}
2022-05-12 22:38:51,306 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:51,391 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240648192}) to executor  for transfer request: 0.
2022-05-12 22:38:51,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:51,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240648192}) about to wait for the following futures []
2022-05-12 22:38:51,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240648192}) done waiting for dependent futures
2022-05-12 22:38:51,392 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240648192}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 240648192}
2022-05-12 22:38:51,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,056 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232259584}) to executor  for transfer request: 0.
2022-05-12 22:38:52,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:52,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232259584}) about to wait for the following futures []
2022-05-12 22:38:52,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232259584}) done waiting for dependent futures
2022-05-12 22:38:52,057 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232259584}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 232259584}
2022-05-12 22:38:52,057 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:55,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232521728}) to executor  for transfer request: 0.
2022-05-12 22:38:55,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:55,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232521728}) about to wait for the following futures []
2022-05-12 22:38:55,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232521728}) done waiting for dependent futures
2022-05-12 22:38:55,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232521728}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 232521728}
2022-05-12 22:38:55,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:56,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209190912}) to executor  for transfer request: 0.
2022-05-12 22:38:56,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:56,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) about to wait for the following futures []
2022-05-12 22:38:56,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) done waiting for dependent futures
2022-05-12 22:38:56,512 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209190912}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 209190912}
2022-05-12 22:38:56,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:57,614 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240910336}) to executor  for transfer request: 0.
2022-05-12 22:38:57,614 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:57,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240910336}) about to wait for the following futures []
2022-05-12 22:38:57,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240910336}) done waiting for dependent futures
2022-05-12 22:38:57,615 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240910336}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 240910336}
2022-05-12 22:38:57,615 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:59,645 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232783872}) to executor  for transfer request: 0.
2022-05-12 22:38:59,645 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:59,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232783872}) about to wait for the following futures []
2022-05-12 22:38:59,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232783872}) done waiting for dependent futures
2022-05-12 22:38:59,646 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232783872}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 232783872}
2022-05-12 22:38:59,646 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:01,584 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241172480}) to executor  for transfer request: 0.
2022-05-12 22:39:01,584 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:01,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241172480}) about to wait for the following futures []
2022-05-12 22:39:01,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241172480}) done waiting for dependent futures
2022-05-12 22:39:01,585 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241172480}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 241172480}
2022-05-12 22:39:01,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:02,006 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209453056}) to executor  for transfer request: 0.
2022-05-12 22:39:02,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:02,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:02,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) about to wait for the following futures []
2022-05-12 22:39:02,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) done waiting for dependent futures
2022-05-12 22:39:02,007 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209453056}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 209453056}
2022-05-12 22:39:02,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:02,958 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233046016}) to executor  for transfer request: 0.
2022-05-12 22:39:02,958 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:02,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233046016}) about to wait for the following futures []
2022-05-12 22:39:02,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233046016}) done waiting for dependent futures
2022-05-12 22:39:02,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233046016}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 233046016}
2022-05-12 22:39:02,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241434624}) to executor  for transfer request: 0.
2022-05-12 22:39:04,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:04,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241434624}) about to wait for the following futures []
2022-05-12 22:39:04,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241434624}) done waiting for dependent futures
2022-05-12 22:39:04,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241434624}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 241434624}
2022-05-12 22:39:04,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:08,808 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241696768}) to executor  for transfer request: 0.
2022-05-12 22:39:08,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:08,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241696768}) about to wait for the following futures []
2022-05-12 22:39:08,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241696768}) done waiting for dependent futures
2022-05-12 22:39:08,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241696768}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 241696768}
2022-05-12 22:39:08,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,174 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241958912}) to executor  for transfer request: 0.
2022-05-12 22:39:09,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241958912}) about to wait for the following futures []
2022-05-12 22:39:09,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241958912}) done waiting for dependent futures
2022-05-12 22:39:09,175 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241958912}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 241958912}
2022-05-12 22:39:09,175 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,220 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233308160}) to executor  for transfer request: 0.
2022-05-12 22:39:11,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:11,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233308160}) about to wait for the following futures []
2022-05-12 22:39:11,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233308160}) done waiting for dependent futures
2022-05-12 22:39:11,221 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233308160}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 233308160}
2022-05-12 22:39:11,221 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:15,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233570304}) to executor  for transfer request: 0.
2022-05-12 22:39:15,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:15,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233570304}) about to wait for the following futures []
2022-05-12 22:39:15,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233570304}) done waiting for dependent futures
2022-05-12 22:39:15,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233570304}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 233570304}
2022-05-12 22:39:15,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,936 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233832448}) to executor  for transfer request: 0.
2022-05-12 22:39:19,936 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233832448}) about to wait for the following futures []
2022-05-12 22:39:19,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233832448}) done waiting for dependent futures
2022-05-12 22:39:19,936 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233832448}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 233832448}
2022-05-12 22:39:19,937 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:24,891 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234094592}) to executor  for transfer request: 0.
2022-05-12 22:39:24,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:24,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234094592}) about to wait for the following futures []
2022-05-12 22:39:24,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234094592}) done waiting for dependent futures
2022-05-12 22:39:24,891 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234094592}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 234094592}
2022-05-12 22:39:24,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:27,521 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234356736}) to executor  for transfer request: 0.
2022-05-12 22:39:27,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:27,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234356736}) about to wait for the following futures []
2022-05-12 22:39:27,522 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234356736}) done waiting for dependent futures
2022-05-12 22:39:27,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234356736}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 234356736}
2022-05-12 22:39:27,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:28,565 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234618880}) to executor  for transfer request: 0.
2022-05-12 22:39:28,566 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:28,566 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:39:28,566 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:28,566 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:28,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234618880}) about to wait for the following futures []
2022-05-12 22:39:28,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234618880}) done waiting for dependent futures
2022-05-12 22:39:28,567 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234618880}) with kwargs {'fileobj': <_io.BufferedRandom name=32>, 'offset': 234618880}
2022-05-12 22:39:28,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:28,568 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:39:28,568 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:39:28,568 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:39:28,568 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:28,859 eolearn.core.eoworkflow DEBUG    Computing DB2Vector(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {}
  meta_info: {}
  bbox: BBox(((229500.0, 1379500.0), (240500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:28,947 eolearn.core.eoworkflow DEBUG    Removing intermediate result for DB2Vector
2022-05-12 22:39:28,949 eolearn.core.eoworkflow DEBUG    Computing VectorToRaster(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1379500.0), (240500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:28,954 eolearn.core.eoworkflow DEBUG    Removing intermediate result for VectorToRaster
2022-05-12 22:39:28,955 eolearn.core.eoworkflow DEBUG    Computing Extent2Boundary(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1379500.0), (240500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:28,970 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Boundary
2022-05-12 22:39:28,971 eolearn.core.eoworkflow DEBUG    Computing Extent2Distance(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1379500.0), (240500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:29,187 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Distance
2022-05-12 22:39:29,188 eolearn.core.eoworkflow DEBUG    Computing SaveTask(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {
    DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
  }
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1379500.0), (240500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{'eopatch_folder': '30PTU_3_1'})
2022-05-12 22:39:29,192 botocore.loaders DEBUG    Loading JSON file: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/boto3/data/s3/2006-03-01/resources-1.json
2022-05-12 22:39:29,193 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:29,193 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:29,193 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:29,193 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:29,194 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:29,194 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:29,195 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:29,196 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:29,196 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:29,197 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1'}
2022-05-12 22:39:29,197 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,197 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,197 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,197 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:29,197 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:29,197 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,197 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:29,197 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,197 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:29,197 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:29,197 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:29,198 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,198 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:29,198 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:29,198 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:29,198 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:29,198 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:29,198 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1
2022-05-12 22:39:29,198 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,198 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223929Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:29,198 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/us-east-1/s3/aws4_request
3b3a2d05550acd44a1bfc208a63f0c6f3fdd076d05ba35c777634dea20ae39e8
2022-05-12 22:39:29,198 botocore.auth DEBUG    Signature:
1caae7b9d7b0a92e8e132a241c2a7c5e90fd712ba6ffdd90ad3054676c1e9ef5
2022-05-12 22:39:29,198 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:29,198 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,199 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,199 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:29,621 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1 HTTP/1.1" 400 0
2022-05-12 22:39:29,621 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'Z32GCK6GDDERBP7G', 'x-amz-id-2': '7+uO7MseMzAFAY+ZonSrUhWVaQO7LK2OWG+G+M0sPIp4IYMOtPcw69FXUtONNSBW8a4BdAFU/ao=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:28 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:29,621 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:29,623 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:29,623 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:29,623 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:29,624 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:29,624 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:29,624 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:39:29,624 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:39:29,624 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:29,624 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223929Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:29,624 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223929Z
20220512/us-east-1/s3/aws4_request
f7cad2f80e645137c4a313890aee0d6133392ab9d40ca97dddf31fd1a5b8b54f
2022-05-12 22:39:29,624 botocore.auth DEBUG    Signature:
603239dee4d4fe892bcc2f8feb68ca9708fb16fb2f707714250dc575d1b4c169
2022-05-12 22:39:29,624 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:29,624 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:29,624 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:29,624 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:39:30,578 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:39:30,579 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'N62NH4EH2DCCJ1G8', 'x-amz-id-2': 'cD7ki+QoUyRpvHh/ARwudzP+dSvlEYToKi7rhhhnJHhCGHihQIsphbEtV+kVx+dFh3fWOh69lHo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:29 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:30,579 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:30,580 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,580 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:30,580 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,580 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:30,580 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:30,581 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:30,581 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,581 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,581 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,581 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,581 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:30,582 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:30,582 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:39:30,582 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:30,582 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223930Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:30,582 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223930Z
20220512/eu-central-1/s3/aws4_request
6d0e90937f8f2b000b03dda8105e7ab2079c5763bba830a9bd3656e82a11ed27
2022-05-12 22:39:30,582 botocore.auth DEBUG    Signature:
dac07a13a009acb10d1f27bf43af6a7113f6bf06b1ce20073b372cfc4ec69224
2022-05-12 22:39:30,583 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:30,583 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:30,583 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:30,583 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:31,734 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:39:31,734 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'o5XTsfKL//JnTTRzrnFpb5jxs1gwqjgZuGq6j5FV4WQ+tvzcsOGDeZ6VnA4lJa7sf4qIy1lNogQ=', 'x-amz-request-id': 'SNYPDXNYF2T1TY6S', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:39:31,735 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:31,735 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:31,735 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:31,735 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:31,735 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:31,736 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:31,736 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:31,736 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:31,737 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:31,737 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:31,737 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:31,737 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:31,737 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:31,737 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:31,737 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1
2022-05-12 22:39:31,738 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:31,738 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223931Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:31,738 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223931Z
20220512/eu-central-1/s3/aws4_request
bb854c842759dc65d613d17863112239e11b46e0695ef2e32e231115d0775527
2022-05-12 22:39:31,738 botocore.auth DEBUG    Signature:
7cde8329a1844771c5b82a7f8d67c55dd4de2322a58f20cc51bc87fc1a1efe54
2022-05-12 22:39:31,738 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:31,738 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:31,739 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:31,821 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1 HTTP/1.1" 404 0
2022-05-12 22:39:31,822 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'SNYMTN4WPBCF42H2', 'x-amz-id-2': '/kEbcb3eVj26zYMwERyaWP4+UleqEz8yDDIJ1NyUkNLzge28v65AB+qEj/SXZ5z0c2lCtswVn+g=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:31 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:31,822 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:31,822 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:31,822 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:31,822 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:31,822 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:31,822 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:31,824 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:31,824 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:31,824 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:31,824 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:31,824 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:31,825 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:31,825 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:31,825 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:31,825 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:31,825 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:31,825 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:31,825 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:31,825 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:31,826 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:31,826 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:31,826 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:31,826 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:31,826 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:31,826 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:31,826 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:31,826 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:31,826 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223931Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:31,826 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223931Z
20220512/eu-central-1/s3/aws4_request
2196144422994690ef50207aef70408ca21a3e62e71895098158fffd8b0ed213
2022-05-12 22:39:31,827 botocore.auth DEBUG    Signature:
a5cb8616626d3cfe7494a524d00f5a3745eab5494388c747435f2877c881b1b9
2022-05-12 22:39:31,827 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:31,827 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:31,827 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:31,910 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:31,910 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'nW9k9TuT40bjlR+khTM9Nn52D1ML5Ock2XPQvvbw38IroDGiJ3HkNc0urhxzFNFcsklO11U4xLM=', 'x-amz-request-id': 'SNYZ06PS7W7B93SN', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:31,910 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:31,911 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:31,911 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:31,911 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:31,911 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'SNYZ06PS7W7B93SN', 'HostId': 'nW9k9TuT40bjlR+khTM9Nn52D1ML5Ock2XPQvvbw38IroDGiJ3HkNc0urhxzFNFcsklO11U4xLM=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'nW9k9TuT40bjlR+khTM9Nn52D1ML5Ock2XPQvvbw38IroDGiJ3HkNc0urhxzFNFcsklO11U4xLM=', 'x-amz-request-id': 'SNYZ06PS7W7B93SN', 'date': 'Thu, 12 May 2022 22:39:32 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:31,912 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:31,915 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:31,915 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:31,915 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:31,916 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:31,917 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:31,918 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:31,918 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:31,918 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:31,918 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:31,918 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:31,919 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:31,919 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:39:31,919 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:31,919 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:31,919 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_1/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:31,920 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:39:31,920 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:31,920 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:31,920 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:39:31,920 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:39:31,920 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:31,920 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:31,920 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:31,920 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:31,920 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_1%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223931Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:31,920 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223931Z
20220512/us-east-1/s3/aws4_request
554dd0620cddaf81421c3a11bb2fce745e836c576e8886bb5a4bfa5acb908b4a
2022-05-12 22:39:31,921 botocore.auth DEBUG    Signature:
1a5c0ab9a5526adda4546bc63f0eac310da03dc9a6287f9cd04286dc78b4467e
2022-05-12 22:39:31,921 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:39:31,921 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:31,921 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:31,921 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:32,579 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:39:32,581 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'KRRF6Y7FF151EE0E', 'x-amz-id-2': 'iu90+Sw26LB39hTXwXAC294/ANgjAlwitXi3HYK6G+iS1YGCrjr3O2/yFj6dOcbJ2kVjUaiyy90=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:39:32 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:32,581 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1KRRF6Y7FF151EE0Eiu90+Sw26LB39hTXwXAC294/ANgjAlwitXi3HYK6G+iS1YGCrjr3O2/yFj6dOcbJ2kVjUaiyy90='
2022-05-12 22:39:32,585 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:39:32,585 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:32,585 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:39:32,585 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:32,586 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:32,586 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:32,586 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:39:32,586 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:32,586 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:32,587 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:39:32,587 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:39:32,587 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:32,587 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:32,587 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:32,587 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_1%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223932Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:32,587 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223932Z
20220512/eu-central-1/s3/aws4_request
e8eb040d0e83be5c22bead0a47ada4d523ac69a8f78b3c06692952571f06a258
2022-05-12 22:39:32,588 botocore.auth DEBUG    Signature:
fe5ad8c6144160fc22f6e147f5a57dbb0d66958d7569ba90c080456a669e6330
2022-05-12 22:39:32,588 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:39:32,588 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:32,588 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:32,589 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:33,740 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:39:33,742 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'TkwXvYFvuhQq0s8LsQxenigabJAUTm1CFQlK8Gv0qC6OTCDuNu1O8L397MSvRk0sRX1XwLJZC0o=', 'x-amz-request-id': 'A5Y9SQY8813ZG74F', 'Date': 'Thu, 12 May 2022 22:39:34 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:39:33,742 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_1/1000/urlfalseeopatches/30PTU_3_1/2022-05-12T11:04:03.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/bbox.pkl2022-05-12T11:04:23.000Z"f216c56cedb9629e4ca10bc42be4f89b"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/timestamp.pkl2022-05-12T11:04:23.000Z"d20f57f9b0299badcdaec2f120421aa8"2089e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/data/eopatches/30PTU_3_1/mask/'
2022-05-12 22:39:33,743 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:39:33,743 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:33,743 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:39:33,743 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:33,743 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:39:33,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:33,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:33,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:33,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:33,744 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:33,744 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:33,744 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:39:33,744 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:33,744 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:33,744 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:33,744 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_1/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:33,745 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:39:33,745 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:33,745 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:33,745 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:39:33,745 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:39:33,745 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:33,745 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:33,745 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:33,745 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_1%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223933Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:33,745 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223933Z
20220512/eu-central-1/s3/aws4_request
70aba6a2967179484b036747cc4af9a8520a52bd54d3c4fb39f9dfaaba698cb3
2022-05-12 22:39:33,745 botocore.auth DEBUG    Signature:
4ad8ae895d4b2830141133b7e7890a06e67b763122ef32cbc3a98588f01469c4
2022-05-12 22:39:33,745 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:39:33,745 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:33,746 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:33,837 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_1%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:39:33,840 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'zv6jiuD1Egr9OlCvnJVCudQt0a5edWYfJom4M6Z1b0wAuAjkeuRtaKmKBdjBwzzWZU2P7R1I4ho=', 'x-amz-request-id': 'A5Y4QC4062GQCM2X', 'Date': 'Thu, 12 May 2022 22:39:34 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:39:33,840 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_1/data/1000/urlfalseeopatches/30PTU_3_1/data/2022-05-12T11:04:14.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/data/BANDS.npy2022-05-12T11:04:23.000Z"28a74130898a2c725c9f77225b96fadd-29"242000128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/data/CLP.npy2022-05-12T11:04:23.000Z"0ad066d03dcf8945d5ee800490dc8253-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:39:33,841 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:39:33,841 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:33,841 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:39:33,841 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:39:33,842 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:33,842 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:33,842 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:33,842 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:39:33,842 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:39:33,842 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:33,842 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:39:33,843 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:33,843 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:33,843 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:39:33,843 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_1/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:33,843 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:39:33,843 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:33,843 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:39:33,843 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:39:33,843 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:39:33,843 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:33,843 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:39:33,844 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:33,844 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_1%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223933Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:33,844 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223933Z
20220512/eu-central-1/s3/aws4_request
1fa1c82ac1e4472703b5a884ee7f32ae5fac2447f04aced2559eca7c2bf753ca
2022-05-12 22:39:33,844 botocore.auth DEBUG    Signature:
f8fb7f0776de6e3f53e6d044441219e0eab3e59057d1965c7380eb8ea37a9ed0
2022-05-12 22:39:33,844 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:39:33,844 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:33,845 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:33,993 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_1%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:39:33,994 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'unJPmw+a6fNp5gCBK9aeyGVUzRUaE1+Z6H2QNY2hLqCw4cxR4WYXO3uJTCUSA2oTXszMM2DM+4A=', 'x-amz-request-id': 'A5YDH8CPVGHD8Q0H', 'Date': 'Thu, 12 May 2022 22:39:34 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:39:33,994 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_1/mask/1000/urlfalseeopatches/30PTU_3_1/mask/2022-05-12T11:04:10.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/mask/CLM.npy2022-05-12T11:04:23.000Z"bcefa9aacb1cb323ee3ba6fbb834d72e-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_1/mask/IS_DATA.npy2022-05-12T11:04:23.000Z"b325fca684ab8a8fdd2ce5098e8276ed-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:39:33,996 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:39:33,996 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:33,997 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:39:33,997 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:39:33,997 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:33,999 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:33,999 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless'}
2022-05-12 22:39:34,000 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,000 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,000 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,000 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,000 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,000 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,000 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:34,000 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:34,000 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,001 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,001 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:34,001 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:34,001 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,001 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,001 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:34,001 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:34,001 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:34,001 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:34,002 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:34,002 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223934Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:34,002 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223934Z
20220512/eu-central-1/s3/aws4_request
22b80e39f75e085b748650ec776499593cc4f636db5d7002e41ff6fd30b03a96
2022-05-12 22:39:34,002 botocore.auth DEBUG    Signature:
3b172790640e802e9db030e0b844d373514f5618402a2b95da027beb6802825c
2022-05-12 22:39:34,002 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:34,002 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:34,003 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:34,091 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:39:34,092 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'YFKF10R8045PZRCV', 'x-amz-id-2': 'FAcYRl2jt5jkS359FJ0deCa/Pb/eQIxnx1FRS7shk3fQ0IbxUS2YkfZWo6prz5FXVDiZ9puq5AE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:34,092 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:34,092 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:34,092 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:34,092 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:34,093 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:34,094 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:34,094 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless/'}
2022-05-12 22:39:34,095 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,095 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,095 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,095 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,095 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,095 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,095 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:34,095 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:34,095 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,096 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,096 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:34,096 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:34,096 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,096 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,096 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:34,096 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:34,096 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:34,096 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:34,097 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:34,097 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223934Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:34,097 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223934Z
20220512/eu-central-1/s3/aws4_request
a88f3d1d8c646e954ffcb4360df306a18e4ba3031e3a1d79cb1e24aa404b70bb
2022-05-12 22:39:34,097 botocore.auth DEBUG    Signature:
01c8586954a193c336ee5609e7d472d957617616cdd1ad9adbc0357a68a56daa
2022-05-12 22:39:34,097 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:34,097 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:34,098 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:34,179 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:34,180 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'YFKC3RFVPG9R1Q7J', 'x-amz-id-2': 'M2BqGah+NBRQ9204s2j3fWQj/utr2QKcPfpiygGUhhkhYjQlRgBZ2zF2oESNtc4y1jtJaXZgqF4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:34,180 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:34,180 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:34,180 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:34,180 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:34,181 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:34,182 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:34,183 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:34,183 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,183 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,183 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,183 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,183 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,183 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,183 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:34,184 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:34,184 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,184 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,184 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:34,184 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:34,184 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,184 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,184 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:34,184 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:34,185 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:34,185 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:34,185 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:34,185 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223934Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:34,185 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223934Z
20220512/eu-central-1/s3/aws4_request
12a59bcacdcedde5423159a23dafc2d1ddbef963f289ac95d44c6be9bfc0bb87
2022-05-12 22:39:34,186 botocore.auth DEBUG    Signature:
1d9d03c253efe77d1b55bb8b18f6765be473f9a9f206f1b244705ece6ef59cc1
2022-05-12 22:39:34,186 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:34,186 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:34,186 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:34,266 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:34,267 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'O6ai1HF5Rpfug8mwd8R3zsSY1bFKL+rd2OnSneVvckW/k/EqojNort5laEqJQehz2ymA/YHFAeE=', 'x-amz-request-id': 'YFK54FJK06V1VMBV', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:34,267 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:34,268 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:34,268 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:34,268 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:34,268 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'YFK54FJK06V1VMBV', 'HostId': 'O6ai1HF5Rpfug8mwd8R3zsSY1bFKL+rd2OnSneVvckW/k/EqojNort5laEqJQehz2ymA/YHFAeE=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'O6ai1HF5Rpfug8mwd8R3zsSY1bFKL+rd2OnSneVvckW/k/EqojNort5laEqJQehz2ymA/YHFAeE=', 'x-amz-request-id': 'YFK54FJK06V1VMBV', 'date': 'Thu, 12 May 2022 22:39:35 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:34,269 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:34,270 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:34,270 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless'}
2022-05-12 22:39:34,271 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,271 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,271 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,271 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,271 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,271 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,271 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:34,271 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:34,271 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,271 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,272 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:34,272 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:34,272 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,272 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,272 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:34,272 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:34,272 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:34,272 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:34,273 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:34,273 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223934Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:34,273 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223934Z
20220512/eu-central-1/s3/aws4_request
22b80e39f75e085b748650ec776499593cc4f636db5d7002e41ff6fd30b03a96
2022-05-12 22:39:34,273 botocore.auth DEBUG    Signature:
3b172790640e802e9db030e0b844d373514f5618402a2b95da027beb6802825c
2022-05-12 22:39:34,273 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:34,273 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:34,274 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:34,614 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:39:34,615 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'YFKEZ4TWVXA3BG8F', 'x-amz-id-2': 'Oqn9Thn1jv7OgF3wZLQdnVjOXvAvIcCeKnYtg4qYSrvJB3Jfapph6Pf0A2H8eX0Nrl7OcFtZd+w=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:34,615 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:34,615 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:34,615 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:34,615 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:34,615 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:34,617 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:34,617 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless/'}
2022-05-12 22:39:34,618 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,618 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,618 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,618 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,618 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,618 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,618 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:34,619 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:34,619 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,619 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,619 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:34,619 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:34,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:34,619 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:34,619 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:34,619 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:34,620 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:34,620 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223934Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:34,620 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223934Z
20220512/eu-central-1/s3/aws4_request
a88f3d1d8c646e954ffcb4360df306a18e4ba3031e3a1d79cb1e24aa404b70bb
2022-05-12 22:39:34,620 botocore.auth DEBUG    Signature:
01c8586954a193c336ee5609e7d472d957617616cdd1ad9adbc0357a68a56daa
2022-05-12 22:39:34,620 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:34,620 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:34,621 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:34,702 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:34,703 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'YFK4DX5XAT8FJHK0', 'x-amz-id-2': 'cufNIu7y+/PC4fmJH8DWORa0TfYx2M7uEQ50T2w0vOSEwcMFCwZth2cHMHn+FtlpqqROrD3Tlos=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:33 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:34,703 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:34,703 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:34,703 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:34,703 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:34,703 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:34,705 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:34,705 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1'}
2022-05-12 22:39:34,705 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,705 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,705 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,705 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,705 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,705 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,706 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:34,706 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:34,706 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,706 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,706 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:34,706 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:34,706 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,706 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,706 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:34,706 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:34,706 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:34,706 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1
2022-05-12 22:39:34,707 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:34,707 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223934Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:34,707 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223934Z
20220512/eu-central-1/s3/aws4_request
027289094db44bf0fbf60b2bf853bd96b721c85bf1a9af474007acb42cb7dde3
2022-05-12 22:39:34,707 botocore.auth DEBUG    Signature:
6099b4e0cde17bf81c801bfbbd404fc568dff403426c3c83b300ab7b5d38d2c4
2022-05-12 22:39:34,707 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:34,707 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:34,707 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:34,791 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1 HTTP/1.1" 404 0
2022-05-12 22:39:34,791 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'YFKDFM5YK0VQ74DE', 'x-amz-id-2': 'GE9Rud95P23qlNA8DgUK7I55VhC/4qL+NgXOphGxB2AyX9YFTRQGsxvdA84PjKLxuZJb+ZLoQgI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:34 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:34,792 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:34,792 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:34,792 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:34,792 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:34,792 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:34,794 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:34,794 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:34,794 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,794 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,794 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,794 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,794 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,795 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,795 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:34,795 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:34,795 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,795 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,795 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:34,795 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:34,795 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,795 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,795 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:34,796 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:34,796 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:34,796 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:34,796 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:34,796 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223934Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:34,796 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223934Z
20220512/eu-central-1/s3/aws4_request
12a59bcacdcedde5423159a23dafc2d1ddbef963f289ac95d44c6be9bfc0bb87
2022-05-12 22:39:34,796 botocore.auth DEBUG    Signature:
1d9d03c253efe77d1b55bb8b18f6765be473f9a9f206f1b244705ece6ef59cc1
2022-05-12 22:39:34,797 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:34,797 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:34,797 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:34,880 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:34,880 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'bWSBT0ZId0fJsqkWI+7cZJGSrTrqU+itp72Ky/7tpBeiR2V2ouTkvCY/45+Megm9bdlhKPbQSME=', 'x-amz-request-id': 'YFK9MN61BSWPV5VN', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:34,880 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:34,881 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:34,881 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:34,881 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:34,881 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'YFK9MN61BSWPV5VN', 'HostId': 'bWSBT0ZId0fJsqkWI+7cZJGSrTrqU+itp72Ky/7tpBeiR2V2ouTkvCY/45+Megm9bdlhKPbQSME=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'bWSBT0ZId0fJsqkWI+7cZJGSrTrqU+itp72Ky/7tpBeiR2V2ouTkvCY/45+Megm9bdlhKPbQSME=', 'x-amz-request-id': 'YFK9MN61BSWPV5VN', 'date': 'Thu, 12 May 2022 22:39:35 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:34,881 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:34,882 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:34,882 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1'}
2022-05-12 22:39:34,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:34,883 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:34,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,883 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:34,883 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:34,883 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,883 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,883 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:34,883 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:34,883 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:34,883 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1
2022-05-12 22:39:34,883 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:34,883 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223934Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:34,883 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223934Z
20220512/eu-central-1/s3/aws4_request
027289094db44bf0fbf60b2bf853bd96b721c85bf1a9af474007acb42cb7dde3
2022-05-12 22:39:34,883 botocore.auth DEBUG    Signature:
6099b4e0cde17bf81c801bfbbd404fc568dff403426c3c83b300ab7b5d38d2c4
2022-05-12 22:39:34,883 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:34,884 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:34,884 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:34,959 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1 HTTP/1.1" 404 0
2022-05-12 22:39:34,960 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'YFK6GWS4SJ1R8H4V', 'x-amz-id-2': 'VJlL/n/fermzIz0vABNX7C7GTKGJVyuv3LOWoRKY4q35lqtSSJnbh7PS909pQIOZ3dYX8OyjSnU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:34 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:34,960 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:34,960 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:34,960 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:34,960 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:34,960 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:34,963 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:34,963 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:34,963 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,963 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,963 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,963 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:34,963 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:34,964 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,964 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:34,964 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:34,964 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,964 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:34,964 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:34,964 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:34,964 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,964 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:34,964 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:34,965 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:34,965 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:34,965 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:34,965 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:34,965 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223934Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:34,965 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223934Z
20220512/eu-central-1/s3/aws4_request
12a59bcacdcedde5423159a23dafc2d1ddbef963f289ac95d44c6be9bfc0bb87
2022-05-12 22:39:34,965 botocore.auth DEBUG    Signature:
1d9d03c253efe77d1b55bb8b18f6765be473f9a9f206f1b244705ece6ef59cc1
2022-05-12 22:39:34,966 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:34,966 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:34,966 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:35,077 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:35,078 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'GlZYte/4pQf57OuUOcb3+kWD5g0QLLcOMYldSmk/iRSpZ3jPqQX+C54cyE9FUfPI15xRkkj+ZDM=', 'x-amz-request-id': 'VK7656689VG60981', 'Date': 'Thu, 12 May 2022 22:39:36 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:35,078 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:35,079 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:35,079 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:35,079 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:35,079 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'VK7656689VG60981', 'HostId': 'GlZYte/4pQf57OuUOcb3+kWD5g0QLLcOMYldSmk/iRSpZ3jPqQX+C54cyE9FUfPI15xRkkj+ZDM=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'GlZYte/4pQf57OuUOcb3+kWD5g0QLLcOMYldSmk/iRSpZ3jPqQX+C54cyE9FUfPI15xRkkj+ZDM=', 'x-amz-request-id': 'VK7656689VG60981', 'date': 'Thu, 12 May 2022 22:39:36 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:35,080 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:35,082 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:35,082 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless'}
2022-05-12 22:39:35,082 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,083 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,083 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,083 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,083 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,083 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,083 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:35,083 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:35,084 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,084 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,084 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:35,084 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:35,084 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,084 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,084 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:35,084 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:35,084 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:35,084 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:35,085 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:35,085 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223935Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:35,085 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223935Z
20220512/eu-central-1/s3/aws4_request
3c04831d187cd6e50573a26df56fb4ca4278c81035ba354ef924e18e2ee08f17
2022-05-12 22:39:35,085 botocore.auth DEBUG    Signature:
2173d6a172bf42f59896e92dda6e256a00f29e76b441bd9e654a39d8c82ffc1a
2022-05-12 22:39:35,085 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:35,086 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:35,086 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:35,457 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:39:35,458 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'VK74P1AB7DKEYKX6', 'x-amz-id-2': 'EDWDHg+4mkG/Inc1aw7ZymCJxKVHnIwJliBYBHtPxaAll7TAaMaDmUKrcGhh3R/effyzhVIF6oY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:34 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:35,458 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:35,458 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:35,458 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:35,458 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:35,458 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:35,460 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:35,460 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless/'}
2022-05-12 22:39:35,460 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,461 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,461 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,461 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,461 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,461 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,461 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:35,461 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:35,461 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,461 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,462 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:35,462 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:35,462 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,462 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,462 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:35,462 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:35,462 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:35,462 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:35,463 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:35,463 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223935Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:35,463 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223935Z
20220512/eu-central-1/s3/aws4_request
a1b286be8005f783a5851a1555ae512a634769cc47ecc07408a2849eb179dd38
2022-05-12 22:39:35,463 botocore.auth DEBUG    Signature:
8fc35f3403045733a48fb087808943fa352fe4e244ccdb99e19fe11876b7eae8
2022-05-12 22:39:35,463 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:35,463 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:35,463 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:35,549 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:35,550 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'VK731JA5X6HT0B6H', 'x-amz-id-2': '533UU+hEnE6Pc79mSc0H2zTUNSBMK3dLA30/WLCZMKSmd8tMBupXa2iFD08wyM7tFQcy+cD3avM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:34 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:35,550 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:35,550 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:35,550 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:35,550 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:35,551 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:35,552 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:35,556 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:39:35,557 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:35,558 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:35,558 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:35,558 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:35,558 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:35,558 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:35,558 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:35,559 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:35,559 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:35,559 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:35,559 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:35,559 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:35,559 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:35,559 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:35,560 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:35,560 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:35,560 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:35,560 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:35,560 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:35,560 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:35,560 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:35,561 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:35,561 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_1/vector_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223935Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:35,561 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223935Z
20220512/eu-central-1/s3/aws4_request
9a5752315a69af4cd34bf6e897e9723d60866aace731b1146c7e513adc373861
2022-05-12 22:39:35,561 botocore.auth DEBUG    Signature:
8b6b3104cdcd6b5f074365a1a92b26a56d581ede26c9d3621d1acee0efbbecb3
2022-05-12 22:39:35,561 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:35,561 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:35,562 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:35,653 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:35,653 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'WjQBxaJPP3e7y5YnV24NNbVf2VlPlKShc3hzVmfyH24we2EBMxU3twuzmy+W2qM5NwcFkR+a/9U=', 'x-amz-request-id': 'VK72TEYK164X1R8H', 'Date': 'Thu, 12 May 2022 22:39:36 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:35,653 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:35,654 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:35,654 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:35,654 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:35,654 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'VK72TEYK164X1R8H', 'HostId': 'WjQBxaJPP3e7y5YnV24NNbVf2VlPlKShc3hzVmfyH24we2EBMxU3twuzmy+W2qM5NwcFkR+a/9U=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'WjQBxaJPP3e7y5YnV24NNbVf2VlPlKShc3hzVmfyH24we2EBMxU3twuzmy+W2qM5NwcFkR+a/9U=', 'x-amz-request-id': 'VK72TEYK164X1R8H', 'date': 'Thu, 12 May 2022 22:39:36 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:39:35,655 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:35,656 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:35,656 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:35,656 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,657 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,657 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,657 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,657 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,657 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,657 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:35,657 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:35,657 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,657 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,657 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:35,658 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:35,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,658 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:35,658 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:35,658 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:35,658 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:35,658 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:35,658 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223935Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:35,658 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223935Z
20220512/eu-central-1/s3/aws4_request
d3c01f7bc34f1747e7af8f9e0fc893f47b2fbb703a86be2e900cb01f686265b1
2022-05-12 22:39:35,659 botocore.auth DEBUG    Signature:
6b834b37c00f61f2bd0cd2cb9e1519425eede5b6b9a15c2ce2cc0c9d62043038
2022-05-12 22:39:35,659 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:35,659 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:35,659 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:35,748 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:35,748 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'uljrSBbKFpPoaHV3oXhk9UqQAy9rXs3twf8DDMtIF8IuQ270x6agjInIIIB+KwFkLTOpOoFbKeA=', 'x-amz-request-id': 'VK74E6XXPSF4TY3W', 'Date': 'Thu, 12 May 2022 22:39:36 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:35,748 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:35,749 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:35,749 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:35,749 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:35,750 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'VK74E6XXPSF4TY3W', 'HostId': 'uljrSBbKFpPoaHV3oXhk9UqQAy9rXs3twf8DDMtIF8IuQ270x6agjInIIIB+KwFkLTOpOoFbKeA=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'uljrSBbKFpPoaHV3oXhk9UqQAy9rXs3twf8DDMtIF8IuQ270x6agjInIIIB+KwFkLTOpOoFbKeA=', 'x-amz-request-id': 'VK74E6XXPSF4TY3W', 'date': 'Thu, 12 May 2022 22:39:36 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:35,750 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:35,751 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:35,752 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless'}
2022-05-12 22:39:35,752 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,752 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,752 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,752 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,752 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,753 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,753 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:35,753 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:35,753 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,753 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,753 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:35,753 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:35,754 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,754 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,754 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:35,754 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:35,754 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:35,754 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:35,754 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:35,754 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223935Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:35,755 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223935Z
20220512/eu-central-1/s3/aws4_request
3c04831d187cd6e50573a26df56fb4ca4278c81035ba354ef924e18e2ee08f17
2022-05-12 22:39:35,755 botocore.auth DEBUG    Signature:
2173d6a172bf42f59896e92dda6e256a00f29e76b441bd9e654a39d8c82ffc1a
2022-05-12 22:39:35,755 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:35,755 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:35,755 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:35,837 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:39:35,837 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'VK7DCKWQKCH4PFYN', 'x-amz-id-2': 'JbOjpRG3KVfJMTZhgSX4j7P5lE9ffZdH156AThSwT0JAM+bN+HepdJpROvhsF+2Nc/PkgMV+wyk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:35,837 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:35,838 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:35,838 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:35,838 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:35,838 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:35,839 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:35,840 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless/'}
2022-05-12 22:39:35,840 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,840 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,840 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,840 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,840 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,840 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,841 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:35,841 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:35,841 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,841 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,841 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:35,841 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:35,841 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,841 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,841 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:35,841 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:35,842 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:35,842 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:35,842 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:35,842 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223935Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:35,842 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223935Z
20220512/eu-central-1/s3/aws4_request
a1b286be8005f783a5851a1555ae512a634769cc47ecc07408a2849eb179dd38
2022-05-12 22:39:35,842 botocore.auth DEBUG    Signature:
8fc35f3403045733a48fb087808943fa352fe4e244ccdb99e19fe11876b7eae8
2022-05-12 22:39:35,843 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:35,843 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:35,843 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:35,924 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:35,925 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'trjxc0nS7PhpUrti9811jPXwD1jz7YzJqJfEMAGUwbNVVgFHaPmvOCI9hIeMPnyxFptY5DpILR8=', 'x-amz-request-id': 'VK77JRQFQ2S0481C', 'Date': 'Thu, 12 May 2022 22:39:36 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:36 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:35,925 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:35,926 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:35,926 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:35,926 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:35,926 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'VK77JRQFQ2S0481C', 'HostId': 'trjxc0nS7PhpUrti9811jPXwD1jz7YzJqJfEMAGUwbNVVgFHaPmvOCI9hIeMPnyxFptY5DpILR8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'trjxc0nS7PhpUrti9811jPXwD1jz7YzJqJfEMAGUwbNVVgFHaPmvOCI9hIeMPnyxFptY5DpILR8=', 'x-amz-request-id': 'VK77JRQFQ2S0481C', 'date': 'Thu, 12 May 2022 22:39:36 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:36 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 36, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:35,926 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:35,928 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:35,928 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless'}
2022-05-12 22:39:35,928 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,929 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,929 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,929 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:35,929 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:35,929 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,929 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:35,929 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:35,929 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,929 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:35,930 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:35,930 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:35,930 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,930 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:35,930 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:35,930 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:35,930 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:35,930 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:35,931 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:35,931 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223935Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:35,931 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223935Z
20220512/eu-central-1/s3/aws4_request
242d0acdc81bdd4d793445195e8411060d7aadf0b9933a09c433a82c6fda3909
2022-05-12 22:39:35,931 botocore.auth DEBUG    Signature:
321522c162a580022cdc1c9b81b94309e4e20a3715146a990a6b6b15f1061edc
2022-05-12 22:39:35,931 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:35,931 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:35,931 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:36,012 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:39:36,012 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'VK7268D9D0S3VEZE', 'x-amz-id-2': 'Ck1/4XW92cLeO2ecyRNDkrkMEisYkEuiYEiF7e4tEEHN+xte1A8HNRigTd88Jk7PmfsXGT3hQbo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:36,012 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:36,013 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:36,013 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:36,013 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:36,013 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:36,014 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:36,015 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless/'}
2022-05-12 22:39:36,015 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,015 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,015 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,015 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,015 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,015 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,015 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:36,016 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,016 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,016 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,016 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:36,016 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:36,016 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,016 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,017 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:36,017 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:36,017 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,017 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,017 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:36,017 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223936Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:36,017 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223936Z
20220512/eu-central-1/s3/aws4_request
b5bd2eb4a3cfdcf6660d11a128bc5dbe70498442d7a8bcf24e68a6c8f907007b
2022-05-12 22:39:36,018 botocore.auth DEBUG    Signature:
6bad0c3a86af8217e10df8be7ff84cd6c95c1eb504d0279db1acd5d70d7059d8
2022-05-12 22:39:36,018 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:36,018 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:36,018 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:36,099 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:36,100 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ENGAY2E81MQH7PHH', 'x-amz-id-2': 'gvamAjPdVx8SrQCFJfEiNP8mR1WM5GWZlhMBJOC32kcisSgw3iV+Ds0hliAgi4y4x6jxz0hAxGo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:36,100 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:36,100 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:36,100 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:36,101 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:36,101 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:36,104 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:36,104 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:36,104 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,105 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,105 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,105 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,105 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,105 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,105 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:36,105 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:36,105 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,105 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,105 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:36,106 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:36,106 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,106 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,106 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:36,106 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:36,106 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:36,106 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:36,107 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:36,107 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223936Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:36,107 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223936Z
20220512/eu-central-1/s3/aws4_request
0abdfc25fb9610841b612c508b252fdb6764e8eec7abaed38b3a9d728e23a9bb
2022-05-12 22:39:36,107 botocore.auth DEBUG    Signature:
b5b68fada0810bc7b05397b3fa4811679305defcec7be48123e1c9da1cd80f4c
2022-05-12 22:39:36,107 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:36,107 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:36,107 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:36,190 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:36,190 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'LiT9gKDwNjkULQABmk/KtOshEwokLdEop+VPNNToT1U/t3U9W1V4ept1WrVgnNNRCYtFemZmdPs=', 'x-amz-request-id': 'ENG24WJYTJ1A275Y', 'Date': 'Thu, 12 May 2022 22:39:37 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:36,190 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:36,191 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:36,191 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:36,192 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:36,192 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ENG24WJYTJ1A275Y', 'HostId': 'LiT9gKDwNjkULQABmk/KtOshEwokLdEop+VPNNToT1U/t3U9W1V4ept1WrVgnNNRCYtFemZmdPs=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'LiT9gKDwNjkULQABmk/KtOshEwokLdEop+VPNNToT1U/t3U9W1V4ept1WrVgnNNRCYtFemZmdPs=', 'x-amz-request-id': 'ENG24WJYTJ1A275Y', 'date': 'Thu, 12 May 2022 22:39:37 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:36,192 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:36,194 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:36,194 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless'}
2022-05-12 22:39:36,194 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,194 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,194 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,195 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,195 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,195 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,195 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:36,195 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:36,195 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,195 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,195 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:36,196 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:36,196 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,196 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,196 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:36,196 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:36,196 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:36,196 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:36,197 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:36,197 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223936Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:36,197 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223936Z
20220512/eu-central-1/s3/aws4_request
882a7d401a297f53a9b4c31ff6414dfd500380adf1a46401f28425fce5ddc88e
2022-05-12 22:39:36,197 botocore.auth DEBUG    Signature:
61e46c06c29d593d7114ff5de0b407815aa743ef979efb6a1b9855fb1a2b7250
2022-05-12 22:39:36,197 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:36,197 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:36,198 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:36,280 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:39:36,280 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ENG454VYFA8ME3K9', 'x-amz-id-2': 'Yo+IRiFaFWjMFw1TB+2fv0FRERKtTT20Gd2xB1pYSodX+Z6e7brmEfwwUh9UeDOPDARK4uJ/iuY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:36,280 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:36,281 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:36,281 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:36,281 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:36,281 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:36,283 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:36,283 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless/'}
2022-05-12 22:39:36,283 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,283 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,284 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,284 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,284 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,284 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,284 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:36,284 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,284 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,284 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,284 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:36,285 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:36,285 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,285 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,285 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:36,285 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:36,285 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,285 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,285 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:36,286 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223936Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:36,286 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223936Z
20220512/eu-central-1/s3/aws4_request
b5bd2eb4a3cfdcf6660d11a128bc5dbe70498442d7a8bcf24e68a6c8f907007b
2022-05-12 22:39:36,286 botocore.auth DEBUG    Signature:
6bad0c3a86af8217e10df8be7ff84cd6c95c1eb504d0279db1acd5d70d7059d8
2022-05-12 22:39:36,286 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:36,286 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:36,287 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:36,370 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:36,370 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ENG8FFCZ6AJFBR94', 'x-amz-id-2': '9+sqQx71QGjSPk2fkgojTsQfTPxFIoyomuQGUVkAHmJ5mKNgowZUNV0lDWiS6+n73pkMh4zD1Is=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:36,370 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:36,371 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:36,371 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:36,371 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:36,371 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:36,373 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:36,373 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1'}
2022-05-12 22:39:36,373 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,373 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,373 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,374 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,374 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,374 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,374 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:36,374 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:36,374 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,374 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,374 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:36,374 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:36,375 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,375 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,375 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:36,375 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:36,375 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:36,375 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1
2022-05-12 22:39:36,375 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:36,375 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223936Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:36,376 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223936Z
20220512/eu-central-1/s3/aws4_request
24b67058aae460a70997d78e67270b98c557657836121f6c933bfa636d5e5785
2022-05-12 22:39:36,376 botocore.auth DEBUG    Signature:
ca664d51c1a0ff0fae1fd8af9a7a59e5d0afb037f5663f6f7e577d4967aca519
2022-05-12 22:39:36,376 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:36,376 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:36,377 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:36,462 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1 HTTP/1.1" 404 0
2022-05-12 22:39:36,463 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ENGESX64WRTJJD3G', 'x-amz-id-2': 'qa+q3oWEuHGuz9pGpNF4zAzlS4zmTePKs7UJVTdZdwJ6ny3FDbbA8NrW+KFk96O4a1iP0UhjJqg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:36,463 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:36,463 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:36,463 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:36,463 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:36,463 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:36,465 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:36,465 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:36,465 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,465 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,466 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,466 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,466 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,466 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,466 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:36,466 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:36,466 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,466 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,466 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:36,466 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:36,467 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,467 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,467 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:36,467 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:36,467 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:36,467 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:36,467 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:36,467 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223936Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:36,467 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223936Z
20220512/eu-central-1/s3/aws4_request
0abdfc25fb9610841b612c508b252fdb6764e8eec7abaed38b3a9d728e23a9bb
2022-05-12 22:39:36,467 botocore.auth DEBUG    Signature:
b5b68fada0810bc7b05397b3fa4811679305defcec7be48123e1c9da1cd80f4c
2022-05-12 22:39:36,468 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:36,468 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:36,468 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:36,552 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:36,553 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ZGriRpnL8gtnAE3oOk6H7Mmj49bC1cYnZxHZhcFNdQAvYtN334xS/j9/HHGo7QRWJY0nl9bM7LU=', 'x-amz-request-id': 'ENG0EMYX5DJAZARP', 'Date': 'Thu, 12 May 2022 22:39:37 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:36,553 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:36,554 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:36,554 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:36,554 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:36,554 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ENG0EMYX5DJAZARP', 'HostId': 'ZGriRpnL8gtnAE3oOk6H7Mmj49bC1cYnZxHZhcFNdQAvYtN334xS/j9/HHGo7QRWJY0nl9bM7LU=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'ZGriRpnL8gtnAE3oOk6H7Mmj49bC1cYnZxHZhcFNdQAvYtN334xS/j9/HHGo7QRWJY0nl9bM7LU=', 'x-amz-request-id': 'ENG0EMYX5DJAZARP', 'date': 'Thu, 12 May 2022 22:39:37 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:36,555 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:36,556 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:36,557 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1'}
2022-05-12 22:39:36,557 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,557 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,557 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,557 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,557 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,557 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,558 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:36,558 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:36,558 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,558 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,558 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:36,558 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:36,558 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,558 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,558 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:36,558 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:36,559 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:36,559 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1
2022-05-12 22:39:36,559 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:36,559 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223936Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:36,559 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223936Z
20220512/eu-central-1/s3/aws4_request
24b67058aae460a70997d78e67270b98c557657836121f6c933bfa636d5e5785
2022-05-12 22:39:36,559 botocore.auth DEBUG    Signature:
ca664d51c1a0ff0fae1fd8af9a7a59e5d0afb037f5663f6f7e577d4967aca519
2022-05-12 22:39:36,559 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:36,560 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:36,560 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:36,643 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1 HTTP/1.1" 404 0
2022-05-12 22:39:36,644 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ENG197EQ63P6NCAG', 'x-amz-id-2': 'r+qKD+hWeZhS5OnuaM7bmLONq1CNQQ8xlS7Aqf1jtrPqbaoEJbSySdUx7Ws5o/tjUr0Psr/RiyY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:35 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:36,644 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:36,644 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:36,644 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:36,644 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:36,645 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:36,646 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:36,646 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:36,646 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,647 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,647 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,647 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,647 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,647 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,647 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:36,647 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:36,647 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,647 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,647 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:36,647 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:36,648 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,648 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,648 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:36,648 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:36,648 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:36,648 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:36,648 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:36,648 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223936Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:36,649 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223936Z
20220512/eu-central-1/s3/aws4_request
0abdfc25fb9610841b612c508b252fdb6764e8eec7abaed38b3a9d728e23a9bb
2022-05-12 22:39:36,649 botocore.auth DEBUG    Signature:
b5b68fada0810bc7b05397b3fa4811679305defcec7be48123e1c9da1cd80f4c
2022-05-12 22:39:36,649 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:36,649 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:36,650 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:36,731 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:36,732 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'oTCC2hBDDlTj1H0KeWE7Fbf+jg4/DTLSHGM4h3Cm77PQnqhwLzDR4TXh0oq5iPqftwcEgBks3cU=', 'x-amz-request-id': 'ENG7P6GSSPFCR5XC', 'Date': 'Thu, 12 May 2022 22:39:37 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:36,732 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:36,733 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:36,733 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:36,733 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:36,734 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ENG7P6GSSPFCR5XC', 'HostId': 'oTCC2hBDDlTj1H0KeWE7Fbf+jg4/DTLSHGM4h3Cm77PQnqhwLzDR4TXh0oq5iPqftwcEgBks3cU=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'oTCC2hBDDlTj1H0KeWE7Fbf+jg4/DTLSHGM4h3Cm77PQnqhwLzDR4TXh0oq5iPqftwcEgBks3cU=', 'x-amz-request-id': 'ENG7P6GSSPFCR5XC', 'date': 'Thu, 12 May 2022 22:39:37 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:36,734 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:36,736 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:36,736 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless'}
2022-05-12 22:39:36,736 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,736 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,736 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,737 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,737 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,737 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,737 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:36,737 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:36,737 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,737 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,737 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:36,738 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:36,738 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,738 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,738 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:36,738 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:36,738 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:36,738 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:36,738 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:36,738 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223936Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:36,739 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223936Z
20220512/eu-central-1/s3/aws4_request
882a7d401a297f53a9b4c31ff6414dfd500380adf1a46401f28425fce5ddc88e
2022-05-12 22:39:36,739 botocore.auth DEBUG    Signature:
61e46c06c29d593d7114ff5de0b407815aa743ef979efb6a1b9855fb1a2b7250
2022-05-12 22:39:36,739 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:36,739 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:36,739 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:36,820 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:39:36,820 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ENG4R3JMCM7YWC93', 'x-amz-id-2': 'ljrtj6xKRwyqMhLhHHFxZYiBxx/paezbH5+czK8WFbHWq4Il5j6ZxtwAqOCmPJp8EQLpQLJ79rs=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:36 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:36,820 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:36,820 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:36,820 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:36,820 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:36,820 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:36,821 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:36,821 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless/'}
2022-05-12 22:39:36,821 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,821 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,821 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,821 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:36,821 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:36,822 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,822 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:36,822 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,822 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,822 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:36,822 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:36,822 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:36,822 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,822 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:36,822 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:36,822 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:36,822 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,822 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,822 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:36,822 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223936Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:36,822 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223936Z
20220512/eu-central-1/s3/aws4_request
b5bd2eb4a3cfdcf6660d11a128bc5dbe70498442d7a8bcf24e68a6c8f907007b
2022-05-12 22:39:36,822 botocore.auth DEBUG    Signature:
6bad0c3a86af8217e10df8be7ff84cd6c95c1eb504d0279db1acd5d70d7059d8
2022-05-12 22:39:36,822 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:36,823 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:36,823 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:36,907 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:36,907 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ENG32EX48JGCSYSH', 'x-amz-id-2': 'aEESxY067T5ioNja7sUSCDIy+ab1cOe/uj/r1Tu0ToI4NZewNYGVGnZZI7YJNs+AIj7lQGSLDpQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:36 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:36,907 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:36,908 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:36,908 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:36,908 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:36,908 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:36,910 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:36,910 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:39:36,910 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:36,911 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:36,911 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:36,911 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:36,911 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:36,911 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:36,911 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:36,911 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:36,911 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:36,911 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:36,912 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,912 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:36,912 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:36,912 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:36,912 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:36,912 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:36,912 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:36,912 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:36,912 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:36,912 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,912 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:36,913 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:36,913 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_1/data_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223936Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:36,913 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223936Z
20220512/eu-central-1/s3/aws4_request
02ec29e96c3fa3bebdaa9e796f891711d11cb79dbc4a780aced69a4f849ede2f
2022-05-12 22:39:36,913 botocore.auth DEBUG    Signature:
d348908e2e798a344c204b431252a216493fa9832f03180ff18d2875b7d70cea
2022-05-12 22:39:36,913 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:36,914 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:36,914 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:37,007 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:37,007 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'X+5ttpMZaTZ6bFO0XUzdK0P19CS2V0s2ymSBurKk2KBCs+vzT1LKfY9fmoyVZHgdNuR3cslykjc=', 'x-amz-request-id': 'ENG3E92CK2PX11KS', 'Date': 'Thu, 12 May 2022 22:39:37 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:37,007 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:37,008 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:37,008 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:37,008 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:37,008 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ENG3E92CK2PX11KS', 'HostId': 'X+5ttpMZaTZ6bFO0XUzdK0P19CS2V0s2ymSBurKk2KBCs+vzT1LKfY9fmoyVZHgdNuR3cslykjc=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'X+5ttpMZaTZ6bFO0XUzdK0P19CS2V0s2ymSBurKk2KBCs+vzT1LKfY9fmoyVZHgdNuR3cslykjc=', 'x-amz-request-id': 'ENG3E92CK2PX11KS', 'date': 'Thu, 12 May 2022 22:39:37 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:39:37,008 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:37,011 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:37,012 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:37,012 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,012 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,012 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,012 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,012 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,012 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,013 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:37,013 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:37,013 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,013 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,013 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:37,013 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:37,013 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,013 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,013 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:37,013 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:37,014 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:37,014 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:37,014 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:37,014 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223937Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:37,014 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223937Z
20220512/eu-central-1/s3/aws4_request
628a800b35d26909b465e4cdf4dc4bad11661381166c6e1a76da7eb5e93e3331
2022-05-12 22:39:37,014 botocore.auth DEBUG    Signature:
c223be6d4664cf210168149d3c3124e042513c965b0578885fb1b6d9064e1cc6
2022-05-12 22:39:37,014 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:37,015 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:37,015 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:37,101 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:37,102 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'XlopJ+y9KXKDeH6ULaar0areLFvau2NOu+hkk5HZf3EoR/8kv5FAyTQwV/8DfXIj+iutIDyTbVo=', 'x-amz-request-id': '5QN2EVC18MGEGTAX', 'Date': 'Thu, 12 May 2022 22:39:38 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:37,102 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:37,103 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:37,103 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:37,103 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:37,103 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '5QN2EVC18MGEGTAX', 'HostId': 'XlopJ+y9KXKDeH6ULaar0areLFvau2NOu+hkk5HZf3EoR/8kv5FAyTQwV/8DfXIj+iutIDyTbVo=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'XlopJ+y9KXKDeH6ULaar0areLFvau2NOu+hkk5HZf3EoR/8kv5FAyTQwV/8DfXIj+iutIDyTbVo=', 'x-amz-request-id': '5QN2EVC18MGEGTAX', 'date': 'Thu, 12 May 2022 22:39:38 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:37,103 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:37,105 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:37,105 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless'}
2022-05-12 22:39:37,106 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,106 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,106 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,106 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,106 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,106 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,106 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:37,106 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:37,106 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,106 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,106 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:37,107 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:37,107 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,107 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,107 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:37,107 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:37,107 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:37,107 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:37,107 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:37,107 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223937Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:37,108 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223937Z
20220512/eu-central-1/s3/aws4_request
70084eb436d48846aeba09225935d42bd8615c78652e67bb682cdc42121552fb
2022-05-12 22:39:37,108 botocore.auth DEBUG    Signature:
dda3330278aa2c002cbd049e4abb62edc74df0a7d9bf6663acec87d89bf90ecb
2022-05-12 22:39:37,108 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:37,108 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:37,108 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:37,189 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:39:37,190 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5QNBW2EZW6EY52XT', 'x-amz-id-2': 'IqOcSRhX6tEza5MQJvnV7Oja745p7BoUp1sYAhL2t3f6GI7oUcAxUxiNAlYdAa3D50g1NQctLwQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:36 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:37,190 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:37,190 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:37,190 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:37,190 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:37,190 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:37,192 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:37,192 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless/'}
2022-05-12 22:39:37,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:37,193 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:37,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,193 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:37,194 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:37,194 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,194 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,194 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:37,194 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:37,194 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:37,194 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:37,195 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:37,195 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223937Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:37,195 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223937Z
20220512/eu-central-1/s3/aws4_request
774b25f31f4da19f7fac7d502ffc4688ceb999941244275f630614dd260e5deb
2022-05-12 22:39:37,195 botocore.auth DEBUG    Signature:
17ac502b91dbf9e0e555f9169713cd28eefee94b48c74cfca844099c17e60594
2022-05-12 22:39:37,195 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:37,195 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:37,196 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:37,284 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:37,285 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'vTkOFlgYLgO2oPtssGFrWHLoJdIXJPjjmfC8jISzKciFXneYnMxg7rLwskHApRyoqGvhdYRr/mQ=', 'x-amz-request-id': '5QN50K3JDZBN887W', 'Date': 'Thu, 12 May 2022 22:39:38 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:37 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:37,285 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:37,286 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:37,286 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:37,286 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:37,286 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '5QN50K3JDZBN887W', 'HostId': 'vTkOFlgYLgO2oPtssGFrWHLoJdIXJPjjmfC8jISzKciFXneYnMxg7rLwskHApRyoqGvhdYRr/mQ=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'vTkOFlgYLgO2oPtssGFrWHLoJdIXJPjjmfC8jISzKciFXneYnMxg7rLwskHApRyoqGvhdYRr/mQ=', 'x-amz-request-id': '5QN50K3JDZBN887W', 'date': 'Thu, 12 May 2022 22:39:38 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:37 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 37, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:37,287 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:37,288 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:37,288 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless'}
2022-05-12 22:39:37,288 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,288 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,288 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,288 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,289 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,289 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,289 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:37,289 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:37,289 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,289 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,289 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:37,289 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:37,289 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,290 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,290 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:37,290 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:37,290 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:37,290 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:37,290 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:37,290 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223937Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:37,290 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223937Z
20220512/eu-central-1/s3/aws4_request
f50806677451c088d38f22a3fbac119229058ca5f71198bce282ac5d2b0b52db
2022-05-12 22:39:37,290 botocore.auth DEBUG    Signature:
c7e3c9633e6c6a63d1358fc3d05e6c3597cbd9b6e170db9d1f14c4703b0f2ff1
2022-05-12 22:39:37,291 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:37,291 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:37,291 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:37,372 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:37,373 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5QNEGT7VN65M8SAQ', 'x-amz-id-2': 'dwyES1+iLzfRERboBUQepHDn+2o95Y7fbWFsFWJ3C+a7mvmhZP0eYTDDenP+1sja3VDs1zQek3c=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:36 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:37,373 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:37,373 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:37,373 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:37,373 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:37,373 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:37,375 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:37,375 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless/'}
2022-05-12 22:39:37,375 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,376 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,376 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,376 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,376 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,376 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,376 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:37,376 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:37,377 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,377 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,377 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:37,377 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:37,377 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,377 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,377 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:37,377 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:37,377 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:37,378 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:37,378 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:37,378 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223937Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:37,378 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223937Z
20220512/eu-central-1/s3/aws4_request
4148db6328f0f7c28799d2f1e027492932e301997d01375045d3cc2aa0f0d4f6
2022-05-12 22:39:37,378 botocore.auth DEBUG    Signature:
706526e15629b892ab2d6d96afc2fca9d6aa1a9c723c4681ae8bf48570b19550
2022-05-12 22:39:37,378 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:37,379 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:37,379 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:37,465 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:37,465 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5QN6FKS3KR4R1201', 'x-amz-id-2': 'a5Cdelxjy6GN/a/R4tsU2Up6LlIJISHI8xfvUCkhe2bEHBwdclnU4faL+i/WsJhjchPyIe/KpJ4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:36 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:37,465 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:37,465 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:37,466 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:37,466 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:37,466 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:37,467 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:37,468 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:37,468 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,468 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,468 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,468 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,468 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,468 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,468 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:37,468 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:37,469 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,469 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,469 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:37,469 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:37,469 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,469 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,469 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:37,469 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:37,469 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:37,469 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:37,470 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:37,470 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223937Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:37,470 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223937Z
20220512/eu-central-1/s3/aws4_request
628a800b35d26909b465e4cdf4dc4bad11661381166c6e1a76da7eb5e93e3331
2022-05-12 22:39:37,470 botocore.auth DEBUG    Signature:
c223be6d4664cf210168149d3c3124e042513c965b0578885fb1b6d9064e1cc6
2022-05-12 22:39:37,470 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:37,470 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:37,471 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:37,554 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:37,554 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'K9uzhZ3Qn+7sXBRyZ9lNHcs5H+9l1USY79FEPjkRRJr49RkOn+e/+w2Gs7hcKA/xcnWvhnrZaIY=', 'x-amz-request-id': '5QNB14HX5BCW1JH3', 'Date': 'Thu, 12 May 2022 22:39:38 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:37,554 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:37,555 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:37,555 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:37,555 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:37,555 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '5QNB14HX5BCW1JH3', 'HostId': 'K9uzhZ3Qn+7sXBRyZ9lNHcs5H+9l1USY79FEPjkRRJr49RkOn+e/+w2Gs7hcKA/xcnWvhnrZaIY=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'K9uzhZ3Qn+7sXBRyZ9lNHcs5H+9l1USY79FEPjkRRJr49RkOn+e/+w2Gs7hcKA/xcnWvhnrZaIY=', 'x-amz-request-id': '5QNB14HX5BCW1JH3', 'date': 'Thu, 12 May 2022 22:39:38 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:37,555 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:37,557 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:37,557 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless'}
2022-05-12 22:39:37,557 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,557 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,557 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,557 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,557 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,557 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,557 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:37,557 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:37,558 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,558 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,558 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:37,558 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:37,558 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,558 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,558 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:37,558 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:37,558 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:37,558 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:37,559 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:37,559 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223937Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:37,559 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223937Z
20220512/eu-central-1/s3/aws4_request
f50806677451c088d38f22a3fbac119229058ca5f71198bce282ac5d2b0b52db
2022-05-12 22:39:37,559 botocore.auth DEBUG    Signature:
c7e3c9633e6c6a63d1358fc3d05e6c3597cbd9b6e170db9d1f14c4703b0f2ff1
2022-05-12 22:39:37,559 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:37,559 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:37,559 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:37,649 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:37,650 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5QNB5GS2SM5Z9G68', 'x-amz-id-2': '1VuWYrDiaY2/Lq4UaaVEQYMuvOxUEsaCrhcv9BioLQKZxB1LmaMutNkAwxQ+iM0/srvuekE16Rk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:36 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:37,650 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:37,650 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:37,651 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:37,651 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:37,651 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:37,652 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:37,653 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless/'}
2022-05-12 22:39:37,653 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,653 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,653 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,653 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,653 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,653 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,654 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:37,654 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:37,654 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,654 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,654 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:37,654 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:37,654 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,654 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,654 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:37,654 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:37,654 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:37,655 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:37,655 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:37,655 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223937Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:37,655 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223937Z
20220512/eu-central-1/s3/aws4_request
4148db6328f0f7c28799d2f1e027492932e301997d01375045d3cc2aa0f0d4f6
2022-05-12 22:39:37,655 botocore.auth DEBUG    Signature:
706526e15629b892ab2d6d96afc2fca9d6aa1a9c723c4681ae8bf48570b19550
2022-05-12 22:39:37,655 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:37,655 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:37,656 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:37,738 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:37,739 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5QN5EYCY1KGBCG22', 'x-amz-id-2': 'YWwOskJOXFBJ5a2zd6wSl6qiW5IpilB3HML8HyBK5Si1omtaTtP2SX1j6i0Jxd3hIsP24gvs20E=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:37 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:37,739 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:37,739 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:37,739 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:37,739 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:37,740 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:37,741 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:37,742 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1'}
2022-05-12 22:39:37,742 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,742 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,742 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,742 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,742 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,742 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,742 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:37,742 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:37,743 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,743 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,743 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:37,743 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:37,743 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,743 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,743 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:37,743 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:37,743 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:37,744 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1
2022-05-12 22:39:37,744 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:37,744 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223937Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:37,744 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223937Z
20220512/eu-central-1/s3/aws4_request
033e333a18565c39fdcc887c589b4daeb17574c2dfb9bf4f6494dd6930f83d83
2022-05-12 22:39:37,744 botocore.auth DEBUG    Signature:
84493ebdaef36ae4bf43639c96b45778fcc7ee350e2b66d9b6362198c6028c54
2022-05-12 22:39:37,744 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:37,745 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:37,745 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:37,822 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1 HTTP/1.1" 404 0
2022-05-12 22:39:37,822 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5QNCAFCW9H1HCPBV', 'x-amz-id-2': 'xN8jZLkrjc9aq/17QlRKbCJem2RVbzzgrpwBb8m6fcFtkDFMEzcHUaIiFtpUDSxW9YSZRFcJzRY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:37 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:37,822 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:37,822 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:37,823 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:37,823 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:37,823 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:37,824 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:37,825 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:37,825 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,825 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,825 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,825 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,825 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,825 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,825 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:37,825 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:37,825 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,826 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,826 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:37,826 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:37,826 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,826 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,826 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:37,826 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:37,826 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:37,826 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:37,827 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:37,827 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223937Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:37,827 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223937Z
20220512/eu-central-1/s3/aws4_request
628a800b35d26909b465e4cdf4dc4bad11661381166c6e1a76da7eb5e93e3331
2022-05-12 22:39:37,827 botocore.auth DEBUG    Signature:
c223be6d4664cf210168149d3c3124e042513c965b0578885fb1b6d9064e1cc6
2022-05-12 22:39:37,827 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:37,827 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:37,828 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:37,909 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:37,910 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'gCPDzMTM2F7VGGaiNiYI85PuAUeb2+506t79BRBsbaZjEaL/ng8kml/WHMHJU4wj1/fSQ/ozDcA=', 'x-amz-request-id': '5QN7XCTC2F054CCB', 'Date': 'Thu, 12 May 2022 22:39:38 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:37,911 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:37,911 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:37,912 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:37,912 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:37,912 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '5QN7XCTC2F054CCB', 'HostId': 'gCPDzMTM2F7VGGaiNiYI85PuAUeb2+506t79BRBsbaZjEaL/ng8kml/WHMHJU4wj1/fSQ/ozDcA=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'gCPDzMTM2F7VGGaiNiYI85PuAUeb2+506t79BRBsbaZjEaL/ng8kml/WHMHJU4wj1/fSQ/ozDcA=', 'x-amz-request-id': '5QN7XCTC2F054CCB', 'date': 'Thu, 12 May 2022 22:39:38 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:37,912 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:37,914 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:37,914 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1'}
2022-05-12 22:39:37,914 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,914 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,914 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,914 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:37,914 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:37,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:37,915 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:37,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:37,915 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:37,915 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:37,916 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,916 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:37,916 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:37,916 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:37,916 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1
2022-05-12 22:39:37,916 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1
2022-05-12 22:39:37,917 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:37,917 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223937Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:37,917 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223937Z
20220512/eu-central-1/s3/aws4_request
033e333a18565c39fdcc887c589b4daeb17574c2dfb9bf4f6494dd6930f83d83
2022-05-12 22:39:37,917 botocore.auth DEBUG    Signature:
84493ebdaef36ae4bf43639c96b45778fcc7ee350e2b66d9b6362198c6028c54
2022-05-12 22:39:37,917 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:37,917 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:37,918 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,001 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1 HTTP/1.1" 404 0
2022-05-12 22:39:38,001 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5QN892MPFXR5AB47', 'x-amz-id-2': 'jj6flfCoLezhbgv111C4n0piM6nSk1FkMxTCRwIBhf5V7ggDMxdzMz+PAF0PnzmeEYm1ViEhCmk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:37 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:38,001 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:38,002 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:38,002 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:38,002 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:38,002 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:38,004 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:38,004 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:38,004 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,004 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,005 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,005 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,005 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,005 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,005 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:38,005 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:38,005 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,005 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,005 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:38,006 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:38,006 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,006 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,006 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:38,006 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:38,006 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:38,006 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:38,006 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:38,007 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223938Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:38,007 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223938Z
20220512/eu-central-1/s3/aws4_request
da2cc4e9e8b650eb8f7e06419d8c27d8042fb48577fe5fac7975fd0525ff4a20
2022-05-12 22:39:38,007 botocore.auth DEBUG    Signature:
901523cf26795f7c3a171a52886457585be4fcc82fc762061843a0d9caeb4ebc
2022-05-12 22:39:38,007 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:38,007 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:38,008 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,086 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:38,087 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'uFfbQJo6uTshALQgtkNU1La5Btss7l7QXTz982Qq4kEGAHEsAkjI4xJPE977PdXG2MuLjKjuzZ8=', 'x-amz-request-id': '4S4WPBJWJCEVVMBV', 'Date': 'Thu, 12 May 2022 22:39:39 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:38,087 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:38,088 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:38,088 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:38,088 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:38,088 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '4S4WPBJWJCEVVMBV', 'HostId': 'uFfbQJo6uTshALQgtkNU1La5Btss7l7QXTz982Qq4kEGAHEsAkjI4xJPE977PdXG2MuLjKjuzZ8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'uFfbQJo6uTshALQgtkNU1La5Btss7l7QXTz982Qq4kEGAHEsAkjI4xJPE977PdXG2MuLjKjuzZ8=', 'x-amz-request-id': '4S4WPBJWJCEVVMBV', 'date': 'Thu, 12 May 2022 22:39:39 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:38,088 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:38,090 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:38,090 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless'}
2022-05-12 22:39:38,090 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,091 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,091 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,091 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,091 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,091 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,091 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:38,091 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:38,091 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,091 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,091 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:38,092 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:38,092 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,092 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,092 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:38,092 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:38,092 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:38,092 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:38,093 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:38,093 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223938Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:38,093 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223938Z
20220512/eu-central-1/s3/aws4_request
56589cdd6ffbdb1b1103c4c819e7d8dcf13bcf6c665c6c347f80f85d4d0317f5
2022-05-12 22:39:38,093 botocore.auth DEBUG    Signature:
58d4f379cb1f2bccf01d5c9a61fe134faef597ff0af69413286b21bd90f184b4
2022-05-12 22:39:38,093 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:38,093 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:38,094 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,469 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:38,469 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '4S4WYVYXMWMC27F9', 'x-amz-id-2': 'I2X+UfOYSr7czqXzsPO9t+ulVWUBtbkrST/wwqHt1STK9wmnTd/sgbxCeWkcOOYOAjG3lGPb5cI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:37 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:38,469 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:38,469 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:38,470 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:38,470 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:38,470 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:38,471 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:38,471 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless/'}
2022-05-12 22:39:38,471 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,472 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,472 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,472 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,472 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,472 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,472 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:38,472 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:38,472 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,472 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,472 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:38,473 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:38,473 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,473 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,473 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:38,473 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:38,473 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:38,473 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:38,473 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:38,473 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223938Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:38,473 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223938Z
20220512/eu-central-1/s3/aws4_request
2f8009fc114cf6633294db0a3f0ded791f66a2572398b13cfb2bf559ea3ca18d
2022-05-12 22:39:38,474 botocore.auth DEBUG    Signature:
b0dc3998b709dcc01369fdda37e8da080b2019a5e9ab7b675885568ae699af8b
2022-05-12 22:39:38,474 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:38,474 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:38,474 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,586 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:39:38,587 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '4S4ZZ9CW8XKZDSBP', 'x-amz-id-2': 'zL5hGDxc6P/e9pkB87pBv3vtLM/8BgFbTtCwa74C63ttNyQK4R7iAeiHfKBI+jY3SasXZKdYG/U=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:37 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:38,587 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:38,587 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:38,587 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:38,587 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:38,587 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:38,588 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:38,588 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:38,588 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:38,588 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:38,589 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:38,589 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:38,589 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:38,589 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:38,589 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:38,589 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:38,589 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:38,589 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:38,589 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_1/mask_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223938Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:38,589 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223938Z
20220512/eu-central-1/s3/aws4_request
9fb3955137173e243361c4e1d2c34163505d6a08e16d730bfe9fb94eb5209f52
2022-05-12 22:39:38,589 botocore.auth DEBUG    Signature:
d5958120b3fc1a8d94e9db5c38bfa780252722992e3cb84b8c8fafae4bf47a48
2022-05-12 22:39:38,589 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:38,589 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:38,589 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,686 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:38,687 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'LDTew4MBkCEFMRSTHLB24hBJ5Km3ZH4MM1ktfr5lCBOPaPWq4WSRbnj3OQE7iCOJ2nz/4vxZpp0=', 'x-amz-request-id': '4S4GBHASXAJ8WXR4', 'Date': 'Thu, 12 May 2022 22:39:39 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:38,687 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:38,687 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:38,687 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:38,687 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:38,688 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '4S4GBHASXAJ8WXR4', 'HostId': 'LDTew4MBkCEFMRSTHLB24hBJ5Km3ZH4MM1ktfr5lCBOPaPWq4WSRbnj3OQE7iCOJ2nz/4vxZpp0=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'LDTew4MBkCEFMRSTHLB24hBJ5Km3ZH4MM1ktfr5lCBOPaPWq4WSRbnj3OQE7iCOJ2nz/4vxZpp0=', 'x-amz-request-id': '4S4GBHASXAJ8WXR4', 'date': 'Thu, 12 May 2022 22:39:39 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:39:38,688 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:38,690 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:38,690 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/'}
2022-05-12 22:39:38,690 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,690 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,690 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,690 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,690 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,691 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,691 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:38,691 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:38,691 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,691 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,691 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:38,691 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:38,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:38,691 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:38,691 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/
2022-05-12 22:39:38,692 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/
2022-05-12 22:39:38,692 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:38,692 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223938Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:38,692 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223938Z
20220512/eu-central-1/s3/aws4_request
da2cc4e9e8b650eb8f7e06419d8c27d8042fb48577fe5fac7975fd0525ff4a20
2022-05-12 22:39:38,692 botocore.auth DEBUG    Signature:
901523cf26795f7c3a171a52886457585be4fcc82fc762061843a0d9caeb4ebc
2022-05-12 22:39:38,692 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:38,693 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:38,693 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,778 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/ HTTP/1.1" 200 0
2022-05-12 22:39:38,779 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '/4JxwBE7HX1Auka8g3LqcxS37Bvc0uIlODLcZOFbLaCFxNLsmNbDQmGsDNxkAlacQBC/GmGLb3M=', 'x-amz-request-id': '4S4RQX5JAWKWM26E', 'Date': 'Thu, 12 May 2022 22:39:39 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:03 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:38,779 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:38,780 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:38,780 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:38,780 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:38,780 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '4S4RQX5JAWKWM26E', 'HostId': '/4JxwBE7HX1Auka8g3LqcxS37Bvc0uIlODLcZOFbLaCFxNLsmNbDQmGsDNxkAlacQBC/GmGLb3M=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '/4JxwBE7HX1Auka8g3LqcxS37Bvc0uIlODLcZOFbLaCFxNLsmNbDQmGsDNxkAlacQBC/GmGLb3M=', 'x-amz-request-id': '4S4RQX5JAWKWM26E', 'date': 'Thu, 12 May 2022 22:39:39 GMT', 'last-modified': 'Thu, 12 May 2022 11:04:03 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 4, 3, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:38,780 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:38,782 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:38,782 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless'}
2022-05-12 22:39:38,782 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,782 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,783 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,783 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,783 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,783 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,783 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:38,783 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:38,783 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,783 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,783 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:38,784 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:38,784 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,784 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,784 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:38,784 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:38,784 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:38,784 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:38,784 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:38,785 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223938Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:38,785 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223938Z
20220512/eu-central-1/s3/aws4_request
56589cdd6ffbdb1b1103c4c819e7d8dcf13bcf6c665c6c347f80f85d4d0317f5
2022-05-12 22:39:38,785 botocore.auth DEBUG    Signature:
58d4f379cb1f2bccf01d5c9a61fe134faef597ff0af69413286b21bd90f184b4
2022-05-12 22:39:38,785 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:38,785 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:38,786 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,865 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:38,866 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '4S4Z24ZPJ5DZ857M', 'x-amz-id-2': '44Z0RIrEeV9LvzJxY9NQvn/kq5cx3NYiLh3Avrrchk/YTtoU1sVk/UmUdrDvkqUqaJIQlOQuHqU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:38 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:38,866 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:38,866 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:38,866 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:38,866 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:38,867 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:38,869 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:38,869 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless/'}
2022-05-12 22:39:38,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:38,870 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:38,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,870 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,871 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:38,871 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:38,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:38,871 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:38,871 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:38,871 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:38,872 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:38,872 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223938Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:38,872 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223938Z
20220512/eu-central-1/s3/aws4_request
2f8009fc114cf6633294db0a3f0ded791f66a2572398b13cfb2bf559ea3ca18d
2022-05-12 22:39:38,872 botocore.auth DEBUG    Signature:
b0dc3998b709dcc01369fdda37e8da080b2019a5e9ab7b675885568ae699af8b
2022-05-12 22:39:38,872 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:38,872 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:38,873 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,954 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:38,955 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'iU4Tq2eHnar7kXFzFHsTpLCvg9ey3zuayWa4JvhR5uWv7yZebUaSBj9gmSu1VT9FvaA6z+QAz70=', 'x-amz-request-id': '4S4JTAC2879RGG2T', 'Date': 'Thu, 12 May 2022 22:39:39 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:39 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:38,955 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:38,955 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:38,955 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:38,956 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:38,956 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '4S4JTAC2879RGG2T', 'HostId': 'iU4Tq2eHnar7kXFzFHsTpLCvg9ey3zuayWa4JvhR5uWv7yZebUaSBj9gmSu1VT9FvaA6z+QAz70=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'iU4Tq2eHnar7kXFzFHsTpLCvg9ey3zuayWa4JvhR5uWv7yZebUaSBj9gmSu1VT9FvaA6z+QAz70=', 'x-amz-request-id': '4S4JTAC2879RGG2T', 'date': 'Thu, 12 May 2022 22:39:39 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:39 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 39, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:38,957 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:38,957 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:38,958 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:38,962 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:38,962 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:38,962 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:38,959 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:38,963 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:38,963 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:38,964 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:38,965 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:38,966 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:38,967 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:38,967 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:38,967 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:38,969 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:38,969 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:38,969 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:38,968 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:38,970 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:38,971 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:38,972 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:38,972 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:38,973 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:38,974 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:38,975 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:38,976 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:38,977 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:38,978 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:38,978 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:38,979 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless'}
2022-05-12 22:39:38,979 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:38,980 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:38,981 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:38,982 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,983 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:38,984 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:38,984 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless'}
2022-05-12 22:39:38,984 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,985 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:38,985 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless'}
2022-05-12 22:39:38,986 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,986 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,986 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless'}
2022-05-12 22:39:38,986 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,987 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,987 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,987 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,987 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,987 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,987 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,987 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,987 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,987 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,987 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,988 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,988 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,988 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,988 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:38,988 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:38,988 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,988 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,988 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,988 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:38,988 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,989 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:38,989 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,989 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,989 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:38,989 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,989 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:38,989 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:38,989 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,989 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,990 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:38,990 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,990 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,990 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:38,990 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,990 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:38,990 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:38,990 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:38,991 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,991 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:38,991 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:38,991 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,991 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:38,992 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:38,992 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,992 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,992 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:38,992 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,992 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,992 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:38,992 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:38,992 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:38,992 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:38,992 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:38,993 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:38,993 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:38,993 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:38,993 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:38,993 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:38,993 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:38,993 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:38,993 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:38,993 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:38,993 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:38,993 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:38,994 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:38,994 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223938Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:38,994 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:38,994 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:38,994 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:38,994 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223938Z
20220512/us-east-1/s3/aws4_request
95dc68c0e7109f024fb0f9c9d89f86239d719a63dbfab4a34f534437520e6d7b
2022-05-12 22:39:38,994 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:38,994 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:38,994 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223938Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:38,994 botocore.auth DEBUG    Signature:
83d3a090c4b9dee351ce9283c0ee0a417e618224753591707e061ab214c3726f
2022-05-12 22:39:38,994 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:38,994 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223938Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:38,994 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223938Z
20220512/us-east-1/s3/aws4_request
628b4e9cfe8def9b92e21144b1287785bf1a1820589b2477c4297d3a97ba2a8d
2022-05-12 22:39:38,994 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:38,994 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223938Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:38,994 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223938Z
20220512/us-east-1/s3/aws4_request
628b4e9cfe8def9b92e21144b1287785bf1a1820589b2477c4297d3a97ba2a8d
2022-05-12 22:39:38,995 botocore.auth DEBUG    Signature:
c7d1b561c7491db47717de78d700440248bc7c6ecd27e3f5ce5573a6c1ef0bdc
2022-05-12 22:39:38,995 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:38,995 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223938Z
20220512/us-east-1/s3/aws4_request
4877f696c0c385dba2255d4e07960d9bef2926af5f574cb7c63b98d6d4c22f93
2022-05-12 22:39:38,995 botocore.auth DEBUG    Signature:
c7d1b561c7491db47717de78d700440248bc7c6ecd27e3f5ce5573a6c1ef0bdc
2022-05-12 22:39:38,995 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:38,995 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,995 botocore.auth DEBUG    Signature:
9679ebe3ecaeeaae3b847d6c678d4a067d18eefaac8d77e84f49919f3275d54f
2022-05-12 22:39:38,995 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:38,995 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:38,995 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:38,995 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:38,996 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:38,996 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,996 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:38,996 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,996 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:38,996 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:38,996 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:38,997 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:39,584 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:39:39,585 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZM5MKF9W2C7N7JF9', 'x-amz-id-2': 'DcGOUdVg/KfxZ6vbkq3Q56KlaeSFu3Gm3dQ0l+k/e5RR6ttLEuFowqimRvb/3dZNRODNkLZMpoY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:39 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:39,585 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:39,588 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:39,589 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:39,589 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:39,589 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,589 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,589 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,589 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,590 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,590 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,590 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,590 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,590 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:39,590 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,591 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,591 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,591 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,591 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,591 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:39:39,591 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:39:39,591 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:39,592 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223939Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:39,592 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223939Z
20220512/us-east-1/s3/aws4_request
47034123a945b6a0ee6ccbd3a5e3e303ce064cf547b3a3034d496fa1a62b4039
2022-05-12 22:39:39,592 botocore.auth DEBUG    Signature:
688d6d9398ae16695e4adce7ba4e0a5674e2200278f5141513fce7d3ff00d854
2022-05-12 22:39:39,592 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,592 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:39,593 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:39,593 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:39:39,599 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless HTTP/1.1" 400 0
2022-05-12 22:39:39,600 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZM5QE7AH5BRXD0AT', 'x-amz-id-2': 'XW6n8VF+uya4un+hxfbyG5ZIJvrZpm+RRlpEEU1kYQGlhInzNjTAmgvyAsFCl0/6W6zPievGarI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:38 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:39,600 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:39,603 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:39,603 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:39,603 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:39,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,604 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,605 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,605 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,605 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,605 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,605 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:39,605 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,606 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,606 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,606 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,606 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,606 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:39:39,606 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:39:39,607 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:39,607 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223939Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:39,607 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223939Z
20220512/us-east-1/s3/aws4_request
47034123a945b6a0ee6ccbd3a5e3e303ce064cf547b3a3034d496fa1a62b4039
2022-05-12 22:39:39,607 botocore.auth DEBUG    Signature:
688d6d9398ae16695e4adce7ba4e0a5674e2200278f5141513fce7d3ff00d854
2022-05-12 22:39:39,607 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,608 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:39,608 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:39,608 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:39:39,740 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:39:39,741 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless HTTP/1.1" 400 0
2022-05-12 22:39:39,742 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZM5QACF7PRKBC5F4', 'x-amz-id-2': 'DF/rHVnSS2bFOoEhqHAu3GcNBh9xUdWUdFOkmHK6aOCF0D3NP3AoqhUCTfqx8L9MUeSKGfsRFh0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:38 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:39,742 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZM5ZGJS8RYS1GDF6', 'x-amz-id-2': '5ntxC2DeWVSI7KKchczlp49kcN+eZJ1VOFq/zQCy+ix7Y/fONvj9tO5DqDxrxrLPSvTzpRr0SSk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:38 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:39,743 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:39,743 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:39,747 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:39,750 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:39,751 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:39,751 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:39,751 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:39,752 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:39,752 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,753 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,753 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,753 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,753 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,753 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,754 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,754 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,754 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,755 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,755 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,755 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,755 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,755 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,755 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,755 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,755 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:39,755 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:39,756 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,756 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,756 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,756 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,757 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,757 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,757 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,757 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,757 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,757 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:39,757 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:39:39,758 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:39:39,758 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:39:39,758 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:39:39,758 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:39,758 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:39,758 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223939Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:39,758 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223939Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:39,758 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223939Z
20220512/us-east-1/s3/aws4_request
47034123a945b6a0ee6ccbd3a5e3e303ce064cf547b3a3034d496fa1a62b4039
2022-05-12 22:39:39,758 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223939Z
20220512/us-east-1/s3/aws4_request
47034123a945b6a0ee6ccbd3a5e3e303ce064cf547b3a3034d496fa1a62b4039
2022-05-12 22:39:39,758 botocore.auth DEBUG    Signature:
688d6d9398ae16695e4adce7ba4e0a5674e2200278f5141513fce7d3ff00d854
2022-05-12 22:39:39,758 botocore.auth DEBUG    Signature:
688d6d9398ae16695e4adce7ba4e0a5674e2200278f5141513fce7d3ff00d854
2022-05-12 22:39:39,758 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,759 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:39,759 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:39,759 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:39,759 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:39,759 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:39,759 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:39:39,759 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:39:40,560 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:39:40,561 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SB5N06YXKRT01B67', 'x-amz-id-2': '2Hm3aReRog2ZKEuZudZDr9Sh1L2eUJkVnQq9OT5gW6a5UYS8OqzCW49PVX5QpJFedp1WE8oENps=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:39 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:40,561 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:40,562 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,562 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:40,562 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,562 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:40,562 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:40,562 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:40,563 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,563 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,563 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,563 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,564 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,564 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:40,565 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:39:40,565 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:39:40,566 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SB5XGB8FV8CG4V50', 'x-amz-id-2': 'USQHS0E/lJOr7fYW07yW8HMWwDmTk3JlXTgFRb7yW6qACDPU4E7nwVJ8iBdAOq/D1Gwzr4CCFm4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:39 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:40,566 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:40,567 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:39:40,567 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:40,567 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223940Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:40,568 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SB5M9415P7X1EM2E', 'x-amz-id-2': 'KzvVSQTtuR193BUzRfItDsN6XHvABHrRb5xVPcSRAqpO8+ERHkMpsX4r1O5H8Z+ISIYcfdtNg04=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:39 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:40,568 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,569 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223940Z
20220512/eu-central-1/s3/aws4_request
ae0501e4727e7744b70cad406bd93cd0cddf0a19563ea5b156960db0ded53d82
2022-05-12 22:39:40,569 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:40,569 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:40,569 botocore.auth DEBUG    Signature:
01770a9fb256d2313cb29ea89b84e33225f5abe8fbd450ded3ca52532e00b498
2022-05-12 22:39:40,570 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,570 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:39:40,570 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,571 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,571 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:40,572 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SB5WGMPF8YHYK0ZZ', 'x-amz-id-2': 'TC7Q+eNw2Ep4KFbqgGM+0R29gzGALBxj5hmvSuW8ylEoHmwZ/GuXeLNldlR2gDZabDXj+uLKp5E=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:39 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:40,572 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:40,572 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:40,573 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,573 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:40,573 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:40,574 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:40,574 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:40,574 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,574 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:40,574 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:40,574 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:40,574 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:40,575 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,575 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:40,575 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,575 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,575 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,575 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:40,575 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,575 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,575 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:40,575 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,576 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,576 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:40,576 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,576 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,576 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,576 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:40,576 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,576 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,576 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:39:40,576 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:40,576 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,576 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:40,576 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:39:40,576 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,576 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223940Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:40,577 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:40,577 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:40,577 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223940Z
20220512/eu-central-1/s3/aws4_request
ae0501e4727e7744b70cad406bd93cd0cddf0a19563ea5b156960db0ded53d82
2022-05-12 22:39:40,577 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223940Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:40,577 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:39:40,577 botocore.auth DEBUG    Signature:
01770a9fb256d2313cb29ea89b84e33225f5abe8fbd450ded3ca52532e00b498
2022-05-12 22:39:40,577 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223940Z
20220512/eu-central-1/s3/aws4_request
ae0501e4727e7744b70cad406bd93cd0cddf0a19563ea5b156960db0ded53d82
2022-05-12 22:39:40,577 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:39:40,577 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,577 botocore.auth DEBUG    Signature:
01770a9fb256d2313cb29ea89b84e33225f5abe8fbd450ded3ca52532e00b498
2022-05-12 22:39:40,577 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:40,577 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:40,577 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,577 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223940Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:40,578 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:40,578 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:40,578 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223940Z
20220512/eu-central-1/s3/aws4_request
ae0501e4727e7744b70cad406bd93cd0cddf0a19563ea5b156960db0ded53d82
2022-05-12 22:39:40,578 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:40,578 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:40,578 botocore.auth DEBUG    Signature:
01770a9fb256d2313cb29ea89b84e33225f5abe8fbd450ded3ca52532e00b498
2022-05-12 22:39:40,578 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:40,578 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:40,578 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:40,579 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:40,579 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:41,630 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:39:41,630 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'dkqbGzSyykrwXyodD9bJSImpPiTvwRXi0hm2QhrSE5ZBXdERWxOJXWm+MDssRUYTRfUTDHHg68g=', 'x-amz-request-id': 'ZQBXESJRYT46DSX1', 'Date': 'Thu, 12 May 2022 22:39:42 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,630 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,631 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:41,631 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,631 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:41,631 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:41,631 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:41,631 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:41,632 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:41,632 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,632 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,632 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:39:41,632 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,633 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hZci5906Pp5IPPKuq562wKMRe8ND/pmq9WBDA5YgK8AF7gKZbGObXvpl1bpezhgzigvsXSTrg7Q=', 'x-amz-request-id': 'ZQBZ2BGM8Z47VRXQ', 'Date': 'Thu, 12 May 2022 22:39:42 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,633 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,633 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,633 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,634 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:41,634 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:41,634 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,634 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:41,634 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:41,635 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,635 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:41,635 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,635 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:41,635 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
a19014276b3389fcef211a3b1401f24fb9da76cfc4920a8f5f32954519fea332
2022-05-12 22:39:41,636 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:41,636 botocore.auth DEBUG    Signature:
c8ecf5fac98d52d7ff45d388ca4ef53daff69712bc143409e666e153e58aeba0
2022-05-12 22:39:41,636 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:41,636 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,636 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,637 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,638 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,638 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,638 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:41,638 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless
2022-05-12 22:39:41,638 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,639 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,639 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:39:41,639 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
96bab6cd8d691bea689746da85ff81308bd256ab94e8cca05329a7831b80fbf1
2022-05-12 22:39:41,639 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NkbemjQCsTeFb7NlSa1OIvhvwbHXZu7m5ryTFDKleMS5ti1UHEgxquViX/VgCmuDN4nYxlQ2iNI=', 'x-amz-request-id': 'ZQBR30VB6KPEX9J4', 'Date': 'Thu, 12 May 2022 22:39:42 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,639 botocore.auth DEBUG    Signature:
d56d7e9b621cd0947541be87a35ebfc75de7af972052276f74cb69f23ca1721d
2022-05-12 22:39:41,639 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,639 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,639 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:41,639 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,639 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,639 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,639 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:41,640 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:41,640 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:41,640 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:41,640 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:41,640 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,640 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,640 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,640 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,640 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,640 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:41,640 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless
2022-05-12 22:39:41,640 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,640 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,640 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
0bc55d7cb71d4e3942e8a208d620ada2c51a22f658e3dfb43656fb98fa788255
2022-05-12 22:39:41,640 botocore.auth DEBUG    Signature:
d95c7d2e18c279494eb0f82a9126aa9828e54927f4f37d8505156bd3c7247d5f
2022-05-12 22:39:41,640 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,640 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,640 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,652 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:39:41,653 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'K4SgedwtBYig59uC+0lFsnWhL+BRSimsmlK00Em7yqqRG5tVly/AZRfH6BVchYs1sIZNdzZZG+8=', 'x-amz-request-id': 'ZQBSFN5CP5HPNNYX', 'Date': 'Thu, 12 May 2022 22:39:42 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,653 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:39:41,653 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:39:41,653 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:41,653 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:41,653 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:41,653 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:41,653 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,653 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,653 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,653 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,653 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,653 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:41,653 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless
2022-05-12 22:39:41,654 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,654 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,654 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
a19014276b3389fcef211a3b1401f24fb9da76cfc4920a8f5f32954519fea332
2022-05-12 22:39:41,654 botocore.auth DEBUG    Signature:
c8ecf5fac98d52d7ff45d388ca4ef53daff69712bc143409e666e153e58aeba0
2022-05-12 22:39:41,654 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,654 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,654 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,721 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:41,721 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBWCAQ5ETZJMMEV', 'x-amz-id-2': 'XLOnPjbxTtzlUVBIpyhFI4U0j0OEQf6SduO7+OEgQH8J3Euyp89m/3g0THHjAr8g+P0Yrwr1wZc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:40 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,721 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,721 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,722 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:39:41,722 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,722 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBM43E2XV7DAN76', 'x-amz-id-2': 'vjMtvZdtrHt53OuLnA9dLDL/vQlIi+Bwo+0BzesfmPkfSPA6/LTuvXXEdYPMuxA24DHny6JgU6M=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,722 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,722 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,723 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,723 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:41,723 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,723 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:39:41,723 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,723 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,723 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBS6ZPRQJVRJ6HD', 'x-amz-id-2': 'jo4ZcqDF5JSDhetWPIQXjPlo4aw7cggWaCoCXb3anrBklsusuzy6uAD6cSpKzC4wxZJed2YW6Ps=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:40 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,725 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,725 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:41,725 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,725 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless/'}
2022-05-12 22:39:41,726 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,725 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,726 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,727 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless/'}
2022-05-12 22:39:41,727 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,727 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,727 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,727 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,727 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,727 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,727 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,727 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,727 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,727 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:41,727 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,727 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,727 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,728 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,728 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,729 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,729 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,729 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,729 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless/'}
2022-05-12 22:39:41,729 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,729 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,729 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,729 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,729 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:41,729 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,729 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:41,730 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,730 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,730 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,730 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,730 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,730 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,730 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,730 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:41,730 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,730 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,730 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,730 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,730 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,730 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,731 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,731 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,731 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,731 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,731 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,731 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,731 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,731 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,731 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,731 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,732 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:41,732 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,732 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,732 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless/
2022-05-12 22:39:41,732 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,732 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:41,732 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,732 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,732 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:41,733 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,733 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:41,733 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,733 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
7a78bd3203a81bde2a22d0e92417e1c0d1dbbd89154f525c0d62d29b1e87e9ca
2022-05-12 22:39:41,733 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless/
2022-05-12 22:39:41,733 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,733 botocore.auth DEBUG    Signature:
75434664e1955c6c3686bc884c08fc92db99b636524eaf984c074b4c8c0577e3
2022-05-12 22:39:41,733 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,733 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
8cd261b6ef0047420593fc52a0a88ed0acb8b814a2506c14d75a0f3dbdebe0c6
2022-05-12 22:39:41,733 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,734 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,734 botocore.auth DEBUG    Signature:
2fcc3765be06173d92b68f52c1c8e32c6712dc37d4c2017b62e64cdfa0bc0b97
2022-05-12 22:39:41,734 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,734 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
b14be9c5a73364ec74d75e29566a39c3dc75b4d0c787163321f7f800c93d9bb0
2022-05-12 22:39:41,734 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,734 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,734 botocore.auth DEBUG    Signature:
b6575cde45820e44c6925fa05177259ab65ca8c40b2396fae2c6052ea7f08142
2022-05-12 22:39:41,734 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,735 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,735 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,735 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,735 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:39:41,736 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,736 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBSYR1DT5W0QGW9', 'x-amz-id-2': 'Yy6TiTGTZJoJvYBPtJCJix9E5nXo//NmHsMrz2D7A2UWHhS2LageRHSeOxhWUXhGDe7eGJj+aqk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,736 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,736 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,736 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,737 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,737 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:41,737 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,738 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,738 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless/'}
2022-05-12 22:39:41,738 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,738 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,738 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,738 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,738 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,738 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,738 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,738 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:41,738 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,738 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,738 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,739 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,739 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,739 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,739 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,739 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,739 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:41,739 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/
2022-05-12 22:39:41,739 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,739 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,739 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
8cd261b6ef0047420593fc52a0a88ed0acb8b814a2506c14d75a0f3dbdebe0c6
2022-05-12 22:39:41,739 botocore.auth DEBUG    Signature:
2fcc3765be06173d92b68f52c1c8e32c6712dc37d4c2017b62e64cdfa0bc0b97
2022-05-12 22:39:41,739 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,739 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,739 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,816 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:41,816 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'yPy08DwgYQY58P0gI21JMwId6rSTh1MyMYq5L/WwJ6xW/UYg2uXbkPxqEm2WjpzpMNnoAjkUnOc=', 'x-amz-request-id': 'ZQBH836JJZCYQ3XP', 'Date': 'Thu, 12 May 2022 22:39:42 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:37 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:41,817 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,817 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,818 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,818 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,818 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:41,818 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZQBH836JJZCYQ3XP', 'HostId': 'yPy08DwgYQY58P0gI21JMwId6rSTh1MyMYq5L/WwJ6xW/UYg2uXbkPxqEm2WjpzpMNnoAjkUnOc=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'yPy08DwgYQY58P0gI21JMwId6rSTh1MyMYq5L/WwJ6xW/UYg2uXbkPxqEm2WjpzpMNnoAjkUnOc=', 'x-amz-request-id': 'ZQBH836JJZCYQ3XP', 'date': 'Thu, 12 May 2022 22:39:42 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:37 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 37, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:41,819 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:41,819 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'kuuVCeXKcqS526wg4vcvxGLTO4bkuecL8HUv1PDKBxcwtwchgk6WnOH4EonznU4sOr1zXCGvCY4=', 'x-amz-request-id': 'ZQBXT63HQXSACQHX', 'Date': 'Thu, 12 May 2022 22:39:42 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:36 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:41,820 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,820 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'GOmDDTLHx43r0yxUHxP6gKHdKdJiEa69N0xkhzGuZ7utk9WyxMVXNTNgdRdX2KumBZOKdKGouEQ=', 'x-amz-request-id': 'ZQBMP0F1YZJECG9A', 'Date': 'Thu, 12 May 2022 22:39:42 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:39 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:41,821 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,821 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:39:41,824 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,824 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,825 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,826 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'K2WyIhOF6Rc6YaSFI2mKMBLNqd6yKL97rmgfQkiWyDQ25EUdi+soLpa8tVTZStz+tKPL23aOKiE=', 'x-amz-request-id': 'ZQBJ7EP33F930BMB', 'Date': 'Thu, 12 May 2022 22:39:42 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:39:39 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:41,826 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless/DISTANCE.npy'}
2022-05-12 22:39:41,827 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,827 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,828 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,828 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,828 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,829 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,829 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,829 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,828 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,830 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZQBMP0F1YZJECG9A', 'HostId': 'GOmDDTLHx43r0yxUHxP6gKHdKdJiEa69N0xkhzGuZ7utk9WyxMVXNTNgdRdX2KumBZOKdKGouEQ=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'GOmDDTLHx43r0yxUHxP6gKHdKdJiEa69N0xkhzGuZ7utk9WyxMVXNTNgdRdX2KumBZOKdKGouEQ=', 'x-amz-request-id': 'ZQBMP0F1YZJECG9A', 'date': 'Thu, 12 May 2022 22:39:42 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:39 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 39, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:41,830 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,830 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,830 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZQBXT63HQXSACQHX', 'HostId': 'kuuVCeXKcqS526wg4vcvxGLTO4bkuecL8HUv1PDKBxcwtwchgk6WnOH4EonznU4sOr1zXCGvCY4=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'kuuVCeXKcqS526wg4vcvxGLTO4bkuecL8HUv1PDKBxcwtwchgk6WnOH4EonznU4sOr1zXCGvCY4=', 'x-amz-request-id': 'ZQBXT63HQXSACQHX', 'date': 'Thu, 12 May 2022 22:39:42 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:36 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 36, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:41,831 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,831 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,831 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,833 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,833 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,833 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZQBJ7EP33F930BMB', 'HostId': 'K2WyIhOF6Rc6YaSFI2mKMBLNqd6yKL97rmgfQkiWyDQ25EUdi+soLpa8tVTZStz+tKPL23aOKiE=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'K2WyIhOF6Rc6YaSFI2mKMBLNqd6yKL97rmgfQkiWyDQ25EUdi+soLpa8tVTZStz+tKPL23aOKiE=', 'x-amz-request-id': 'ZQBJ7EP33F930BMB', 'date': 'Thu, 12 May 2022 22:39:42 GMT', 'last-modified': 'Thu, 12 May 2022 22:39:39 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 39, 39, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:39:41,832 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,834 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,835 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,834 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,834 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,834 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless/EXTENT.npy'}
2022-05-12 22:39:41,835 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy
2022-05-12 22:39:41,835 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,835 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl'}
2022-05-12 22:39:41,835 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,835 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,836 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,836 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy'}
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,836 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,837 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,837 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy
2022-05-12 22:39:41,837 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy
2022-05-12 22:39:41,837 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:41,837 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,838 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,838 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:41,838 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,838 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
877b7d39d46e41f918f15491005aeb3e726a84808bb4311779040b10e9ca41ae
2022-05-12 22:39:41,838 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,838 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,838 botocore.auth DEBUG    Signature:
8e8ddd71b7c8febe5d72cb5f79633efb88bee16d1cf94024d86539a95afd128a
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,838 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,838 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,838 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,839 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,839 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,839 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,839 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,839 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,839 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,839 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,839 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,839 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,839 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy
2022-05-12 22:39:41,839 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:41,839 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,839 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy
2022-05-12 22:39:41,839 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:41,839 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:41,840 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,840 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,840 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:41,840 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,840 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,840 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,840 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
35ed5aace6e355dbaee198487c68deaf23c17f0fd96384b203778d71bbd9f9bd
2022-05-12 22:39:41,840 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
f243f4841c76587d151dad2d89ba491d72c25d30578ea3d87328c22905213bf2
2022-05-12 22:39:41,840 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,840 botocore.auth DEBUG    Signature:
79ae3754ebb3f77415b08a113f5bc379dc6c800019167b93a56da7e4586ce613
2022-05-12 22:39:41,840 botocore.auth DEBUG    Signature:
e60d4df59904c0032f9f922431eb849e64540a7c6a05352aec0a4404527f1fed
2022-05-12 22:39:41,840 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
4bf3c33490d9e874e75e4f559cebebe8340f443b0606e6e2794f237438b8cd3d
2022-05-12 22:39:41,840 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,840 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,840 botocore.auth DEBUG    Signature:
b92b73bb5754daafbe1e33cced6031e7134b82f52d21067ea276dd77e846a529
2022-05-12 22:39:41,840 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,840 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,840 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,841 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,841 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,841 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,841 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,922 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless/DISTANCE.npy HTTP/1.1" 404 0
2022-05-12 22:39:41,923 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBYFRXEEWZJAZVF', 'x-amz-id-2': 'T9RSzZjuFoh7wSrCBMLQvVupisXYW5X2QAJHT3auUqFm9nWe27wZSDCk+ZP4PG3xN7r5NLhLObc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,923 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,923 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,924 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,924 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,924 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,926 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,926 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/data_timeless/DISTANCE.npy/'}
2022-05-12 22:39:41,926 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,926 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,927 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless/EXTENT.npy HTTP/1.1" 404 0
2022-05-12 22:39:41,927 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 404 0
2022-05-12 22:39:41,927 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,929 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,929 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,929 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 404 0
2022-05-12 22:39:41,928 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBHYZCGX7RXA1J7', 'x-amz-id-2': 'goKhJQ9tX8XoGQJCouEQRCAV1LVckpAme1iPDhByPEhrXKKjDiYjxfR2wlIv/lhJWkALidfAh04=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,929 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBG0XMG57STB6Y8', 'x-amz-id-2': 'T9ne98xtU3fjWaW/s7Q4TY0540j0VpSMWmsmIrUH4B3cRO4ptm8zpLkexjum6Idokb5Ca5dBMf4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,931 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,930 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBPKZSZ86F5METQ', 'x-amz-id-2': 'FnTKShe8QCvNLwwkkG3gDQrgWg7zCXELO6Y9YyPoY7+SyvLwbg1dBTiVmj6pd7u0Nu5kU/Yy+QA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:41,930 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,930 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,931 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,931 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:41,931 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,931 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,932 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,932 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:41,932 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,932 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy/
2022-05-12 22:39:41,932 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,932 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:41,933 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,933 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,933 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,933 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:41,933 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,933 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,934 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,934 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:41,935 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,935 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,935 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy/'}
2022-05-12 22:39:41,935 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:41,935 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/mask_timeless/EXTENT.npy/'}
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,936 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl/'}
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:41,936 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,937 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy/
2022-05-12 22:39:41,937 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,937 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:41,937 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,937 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy/
2022-05-12 22:39:41,937 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,937 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,937 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,937 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy/
2022-05-12 22:39:41,937 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:39:41,937 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:41,937 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,937 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,937 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,937 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:39:41,937 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,937 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,938 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,938 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
62b7891680f7b1cbf5c8878a1c1cf8d3a0eeabea17719ff3c40e78a03e65351b
2022-05-12 22:39:41,938 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,938 botocore.auth DEBUG    Signature:
e861f178b5475678eb66c9530cd0f7f70690354fb0cce6c60e7cd976144bfb5a
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,938 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,938 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,938 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,939 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,939 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,939 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:41,939 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,939 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,939 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:41,939 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy/
2022-05-12 22:39:41,939 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:39:41,939 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:41,939 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy/
2022-05-12 22:39:41,939 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:39:41,939 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:39:41,939 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,939 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,939 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:39:41,939 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,940 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,940 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:41,940 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
dbd3d17d00df1bcee7191b21d6528f1e66b55b84182a271c7518d87711ec83b9
2022-05-12 22:39:41,940 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
cdce478835d15f9badb0fd7d8d3a8f8cfcf4bad483bd37a34d46c0aaabe51b42
2022-05-12 22:39:41,940 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223941Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:41,940 botocore.auth DEBUG    Signature:
d71ad689a8d4a02cc2d564904a5dc837995496efbc1641fc791f64faf07a8dee
2022-05-12 22:39:41,940 botocore.auth DEBUG    Signature:
b3cf1ac1ee8a0583a9232839448698f6656022ee338c2309a7f344fc4921b467
2022-05-12 22:39:41,940 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223941Z
20220512/eu-central-1/s3/aws4_request
f9949131c8c9f1befffa13677b9c4716c0d6c657a17514251920030625f27422
2022-05-12 22:39:41,940 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,940 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,940 botocore.auth DEBUG    Signature:
6de4a4da4a53c8cebf2bc92740ee316f6abe894a386b9ab4c5da43db9bce608c
2022-05-12 22:39:41,940 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,940 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,940 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:41,940 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,940 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:41,941 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:41,941 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:42,021 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/data_timeless/DISTANCE.npy/ HTTP/1.1" 404 0
2022-05-12 22:39:42,022 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBYT8Q704503P9G', 'x-amz-id-2': 'VI671kyasAl5AETr5XstLQ5VnCbOeDdG+UmNmbC8ohqcO27HVF11k4VifLQ2WEscrS5MCaK2E3o=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:42,022 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:42,022 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:42,022 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:42,022 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:42,028 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy/ HTTP/1.1" 404 0
2022-05-12 22:39:42,028 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl/ HTTP/1.1" 404 0
2022-05-12 22:39:42,029 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBJ466Y491NB36N', 'x-amz-id-2': 'h9XZd3FqOR/Bl8+9XFGPvNdmEcPTf2I8TCUIWZXaSTGFVHrnncCsOGule168cCO5N3xCc4sQUbU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:42,029 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_1/mask_timeless/EXTENT.npy/ HTTP/1.1" 404 0
2022-05-12 22:39:42,030 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBPRHRW4JPNK82W', 'x-amz-id-2': '69PUmyaZXBqImyb07/LZdYsto2+uBfMnuk7Xa7wW4Xqs4fg9B8H5HkgRMozTInUW6RMUUj3PxSU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:42,030 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:42,031 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZQBK2ZXN0WZW8JW0', 'x-amz-id-2': 'o5YSmElr6ky+T0z3PEx2eFAHSa+b6r0csjTeK1V3iAhAHUxLkg6ueLAN4ihbgAXYv8GAEjaD8eE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:39:42,031 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:42,032 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:42,032 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:42,032 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:42,033 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:42,033 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:42,033 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:42,033 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:42,034 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:42,034 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:42,035 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:42,035 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:42,037 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:42,037 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:42,038 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:42,038 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:42,039 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:42,040 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:42,043 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:42,040 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:42,043 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:42,041 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:42,043 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:42,045 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:42,046 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:42,047 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:42,048 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:42,048 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:42,048 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:42,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,050 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:42,051 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:42,052 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:42,052 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:39:42,053 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:42,054 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:42,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,055 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:39:42,056 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:42,057 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,057 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:39:42,057 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:39:42,058 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,059 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:39:42,059 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:39:42,059 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:39:42,060 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:39:42,060 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:39:42,060 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:39:42,060 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:39:42,060 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:39:42,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,060 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:39:42,061 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:39:42,061 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,061 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:39:42,061 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,061 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:39:42,062 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:39:42,061 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:39:42,061 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:39:42,061 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,061 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,062 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:39:42,062 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:39:42,062 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:39:42,062 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,062 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:39:42,062 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:39:42,062 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,062 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,062 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:39:42,063 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:39:42,063 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,063 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,063 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:39:42,063 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:39:42,063 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,063 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,063 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,063 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,064 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,065 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:42,065 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:39:42,065 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,065 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,065 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:39:42,066 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,066 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,066 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,066 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:39:42,066 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:42,066 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,066 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,066 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'B0sS5nt7r9iMdSqG874dtg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:42,066 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,067 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:42,067 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,067 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,067 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:42,067 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:42,067 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:42,067 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:42,067 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:42,067 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:42,067 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223942Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:42,067 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223942Z
20220512/us-east-1/s3/aws4_request
145919aaec6c54bac11dbf9cea31b129accc1c9750cdce7f728720c2a2209d2d
2022-05-12 22:39:42,067 botocore.auth DEBUG    Signature:
16932e6423944344d5c38a25b422ebb591e357d0c33a3ee1030dfd63b6d2fae2
2022-05-12 22:39:42,067 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,067 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,067 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:42,068 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:42,068 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:42,068 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,068 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,068 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:39:42,068 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:39:42,068 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:42,068 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:42,068 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,068 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,069 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,069 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,069 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:42,069 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:42,069 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,069 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,069 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:42,069 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:42,069 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,070 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,070 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,070 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,070 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:42,070 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:42,070 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:42,070 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:42,070 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:42,070 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:42,070 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy
2022-05-12 22:39:42,070 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:42,070 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy
2022-05-12 22:39:42,070 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:42,070 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:42,070 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:42,070 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223942Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:42,071 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223942Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:42,071 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223942Z
20220512/us-east-1/s3/aws4_request
c2dd5dd585a5e325e1cedf190ed08ff676ab2bea8ad02aec0621df168bba3248
2022-05-12 22:39:42,071 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223942Z
20220512/us-east-1/s3/aws4_request
ff2209acc0c28cfebf5e723da4093ac486f2ec2ec4f65818e0f63c1c7711aced
2022-05-12 22:39:42,071 botocore.auth DEBUG    Signature:
2a6c4f4bc6307aec504aed5e9d53a8182a1e7a5224af156deaa9acd10529c986
2022-05-12 22:39:42,071 botocore.auth DEBUG    Signature:
d1603ce177838537db581c371a4b4e8db0f054ec69c07506e3e3534b25200672
2022-05-12 22:39:42,071 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,071 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,071 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,071 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,071 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:42,071 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:42,071 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:42,072 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:42,072 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:42,072 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:42,073 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,073 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:39:42,073 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:39:42,073 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,073 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:39:42,073 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'S/Wz7xyo6r7KThbY4TUDPg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:42,073 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,073 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:42,073 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,073 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,073 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:42,073 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:42,073 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:42,074 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy
2022-05-12 22:39:42,074 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy
2022-05-12 22:39:42,074 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:42,074 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223942Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:42,074 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223942Z
20220512/us-east-1/s3/aws4_request
450f21fdce95912cf1b9e79e41ccaf2b56a0bbd176248a69d5520199b329b969
2022-05-12 22:39:42,074 botocore.auth DEBUG    Signature:
a851e074174067b35058c519eaaef751aaf50c742c5c88a912ba35613063b12a
2022-05-12 22:39:42,074 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,074 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,074 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:42,074 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:42,074 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:42,558 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:42,561 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:42,561 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:42,649 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:39:42,650 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_1/mask_timeless/EXTENT.npy HTTP/1.1" 400 None
2022-05-12 22:39:42,651 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:39:42,651 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:39:42,651 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 400 None
2022-05-12 22:39:42,652 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'XQ6DRG3D0C828YS3', 'x-amz-id-2': '+Ko0KOROb0Y4xp/iuqQRUhIGnwUUR8IqngTOOC04GWivAYDZ/R3v4As2NfnOxppM3vrrLEhhkmA=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:42,652 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 400 None
2022-05-12 22:39:42,652 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1XQ6DRG3D0C828YS3+Ko0KOROb0Y4xp/iuqQRUhIGnwUUR8IqngTOOC04GWivAYDZ/R3v4As2NfnOxppM3vrrLEhhkmA='
2022-05-12 22:39:42,653 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'XQ64D5V9TFX5ZFYQ', 'x-amz-id-2': 'W1lQlSesstK0vsk0EXQps0GevlTpAMJ/0hvTZPpn/yYGDZGczv8yiEC1Z4XzamwXf9UQlVR4+8Y=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:42,654 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1XQ64D5V9TFX5ZFYQW1lQlSesstK0vsk0EXQps0GevlTpAMJ/0hvTZPpn/yYGDZGczv8yiEC1Z4XzamwXf9UQlVR4+8Y='
2022-05-12 22:39:42,654 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:42,654 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'XQ63T5J4SATEEAJ2', 'x-amz-id-2': 'WuRWHAQuLlCtGqBZ34FVfqNbsoTeMisLKwiRpLLPwYkAGiKPG40+OGJC7ALpYFs4WaIMpRqoupw=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:39:41 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:42,655 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:42,655 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:42,655 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1XQ63T5J4SATEEAJ2WuRWHAQuLlCtGqBZ34FVfqNbsoTeMisLKwiRpLLPwYkAGiKPG40+OGJC7ALpYFs4WaIMpRqoupw='
2022-05-12 22:39:42,655 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:42,655 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:42,656 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:42,657 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:42,657 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:42,657 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:42,657 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:42,657 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy
2022-05-12 22:39:42,657 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:42,657 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:42,657 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:42,657 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:42,657 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:42,657 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:39:42,657 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:42,658 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,658 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:42,658 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,658 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:42,659 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:42,659 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:42,659 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:42,659 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy
2022-05-12 22:39:42,659 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:42,659 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:42,659 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy
2022-05-12 22:39:42,659 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:42,659 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:39:42,659 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:42,659 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:42,659 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:42,659 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_1/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223942Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:42,659 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:39:42,659 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223942Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:42,659 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223942Z
20220512/eu-central-1/s3/aws4_request
b6c47df3cf6de9cf3cf9cf90343ad599eed21299cfd530269b9c6a93ba7d4548
2022-05-12 22:39:42,659 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:42,659 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223942Z
20220512/eu-central-1/s3/aws4_request
814090cf66aded05bf95ad8b42c0033311a153df3c53479065a3e15560750384
2022-05-12 22:39:42,659 botocore.auth DEBUG    Signature:
9287d207d27d59767d8ab76e0dc8942037e4a1aef1d242f5d6801e40b5a6f1a7
2022-05-12 22:39:42,660 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223942Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:42,660 botocore.auth DEBUG    Signature:
fcf219b520b22710b889ac061edc5761b736a19793c5bb7d9fd89b18d12439b7
2022-05-12 22:39:42,660 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,660 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223942Z
20220512/eu-central-1/s3/aws4_request
0ff37abc5743f32ec484380bc8947afbb5d32678382490f9fded420a8566da0c
2022-05-12 22:39:42,660 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,660 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,660 botocore.auth DEBUG    Signature:
23441fa0b5e939e4f883113777a639465f2660f11a18f08c5f9bf6b90a62caff
2022-05-12 22:39:42,660 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,660 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:42,660 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,660 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:42,660 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:42,660 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:42,661 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:42,661 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:42,661 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:42,661 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:42,661 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:42,661 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:43,495 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:43,496 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:43,509 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:43,544 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:43,590 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:39:43,591 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:39:43,597 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:39:43,661 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:39:43,662 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_1/data_timeless/DISTANCE.npy HTTP/1.1" 400 None
2022-05-12 22:39:43,662 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'CF5WQ93STP4S8RBN', 'x-amz-id-2': 'E+otL47K3i+P/n+h6VJ8iz9n5Bpl6+vXL79yF4b9B83FZU9n/TxdPGoi9XDlxo1roo+A9J/gL9U=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:39:42 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:43,662 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1CF5WQ93STP4S8RBNE+otL47K3i+P/n+h6VJ8iz9n5Bpl6+vXL79yF4b9B83FZU9n/TxdPGoi9XDlxo1roo+A9J/gL9U='
2022-05-12 22:39:43,666 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:43,667 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:43,667 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:43,667 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:39:43,667 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy
2022-05-12 22:39:43,667 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:39:43,667 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:39:43,667 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:43,668 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:39:43,668 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:43,668 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:39:43,668 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:39:43,668 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:39:43,668 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy
2022-05-12 22:39:43,668 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy
2022-05-12 22:39:43,669 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:43,669 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_1/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T223943Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:39:43,669 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223943Z
20220512/eu-central-1/s3/aws4_request
871f8365c794a70900f44f9dd8299a43167a9b47b52ba44ffecdfb9478fa02c1
2022-05-12 22:39:43,669 botocore.auth DEBUG    Signature:
96718305782afe223dd67e26fa5cc854f9453e422e0937b1502ca96459d97fb9
2022-05-12 22:39:43,669 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:43,669 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:39:43,670 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:43,670 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:43,671 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:39:43,684 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 200 0
2022-05-12 22:39:43,685 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'cK94IZYC1dCXUzLH5GzJ/e75MBKcO2GZo6mIkyNPw36/cGPkEMO4MjrUI7R+/anDAKgtoKwjLDQ=', 'x-amz-request-id': 'CF5ZVABVCTWZX95X', 'Date': 'Thu, 12 May 2022 22:39:44 GMT', 'ETag': '"074b12e67b7bafd88c752a86f3be1db6"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:43,685 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:43,685 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:43,685 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:43,685 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:43,685 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:43,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,796 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:39:44,877 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:39:51,794 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 200 0
2022-05-12 22:39:51,795 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'CtRgZ6AAqLKFlWVBavCgjygz1SEFM4bqN/PLg3AbEHrTW74PFEuhKoPFWx4KmYw1o9RXShPVMts=', 'x-amz-request-id': 'CF5TJH2N73F6RZKB', 'Date': 'Thu, 12 May 2022 22:39:44 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:51,795 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:51,795 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:51,796 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:51,796 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:51,796 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:51,797 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:51,943 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_1/mask_timeless/EXTENT.npy HTTP/1.1" 200 0
2022-05-12 22:39:51,943 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'g+B86ZDrQvIUWPxzYoGIEK92aa4pIoFbnMBiOk0LIpT4rVBZceHwv10M8tCtJeCb85mxJjshE8g=', 'x-amz-request-id': 'CF5NZS05RSZST5JH', 'Date': 'Thu, 12 May 2022 22:39:44 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:39:51,944 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:51,944 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:39:51,944 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:51,944 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:39:51,944 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:39:51,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:00,301 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_1/data_timeless/DISTANCE.npy HTTP/1.1" 200 0
2022-05-12 22:40:00,301 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7QpJ5reNK9FhQ0SF0sYlKuNN42yc2vBNEzeEnCxCBq3NpDnyxO+J5z40TOQfwhcBwSigp8nxxtc=', 'x-amz-request-id': '78TKQ53N59DJAFN2', 'Date': 'Thu, 12 May 2022 22:39:45 GMT', 'ETag': '"4bf5b3ef1ca8eabeca4e16d8e135033e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:00,301 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:00,302 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:00,302 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:00,302 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:00,302 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:00,304 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:00,321 eolearn.core.eoworkflow DEBUG    Removing intermediate result for SaveTask
2022-05-12 22:40:00,323 eolearn.core.eoworkflow DEBUG    Workflow finished with WorkflowResults(
  Dependency(SaveTask):
    EOPatch(
      data: {
        BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
        CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
      }
      mask: {
        CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
        IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
      }
      scalar: {}
      label: {}
      vector: {}
      data_timeless: {
        DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
      }
      mask_timeless: {
        BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
        EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
      }
      scalar_timeless: {}
      label_timeless: {}
      vector_timeless: {
        GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
      }
      meta_info: {}
      bbox: BBox(((229500.0, 1379500.0), (240500.0, 1390500.0)), crs=CRS('32630'))
      timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
    )
)
2022-05-12 22:40:00,323 root         DEBUG    EOWorkflow execution finished

Execution 7

Statistics
2022-05-12 22:21:52,333 eolearn.core.eoworkflow DEBUG    Computing LoadTask(*[], **{'eopatch_folder': '30PTU_3_3'})
2022-05-12 22:21:52,334 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:52,336 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,336 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:52,336 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,339 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:52,341 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,344 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,345 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_3/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,345 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,346 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:52,346 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:52,346 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:52,346 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,346 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,346 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:52,347 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_3%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222152Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:52,347 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222152Z
20220512/us-east-1/s3/aws4_request
2c757b6f476a39405e6caa83daf7a9bbf96725a78b34939d5260981309160f41
2022-05-12 22:21:52,347 botocore.auth DEBUG    Signature:
56276ab249727d598b1ea1f5b888cdb60a651f0ae0092c064ee6a9456d3ca435
2022-05-12 22:21:52,347 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:52,347 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:52,348 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:52,348 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:53,699 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:21:53,700 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'W6EY8B67HXQWRHH3', 'x-amz-id-2': 'LZLI/rZ4vazjHy1nQOfZJzYLDcNLUPhLPMI/R1lYJBVzP8/7VP0sBeT64c0ZkwHhGwhw1QgXHHQ=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:21:53 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:53,700 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1W6EY8B67HXQWRHH3LZLI/rZ4vazjHy1nQOfZJzYLDcNLUPhLPMI/R1lYJBVzP8/7VP0sBeT64c0ZkwHhGwhw1QgXHHQ='
2022-05-12 22:21:53,702 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:53,703 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:53,703 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:53,703 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:53,703 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,703 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:53,706 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:53,706 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,706 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,706 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:53,706 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:53,706 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,706 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,706 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:53,706 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_3%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222153Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:53,706 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222153Z
20220512/eu-central-1/s3/aws4_request
3ef7e4fd0e94ee2733365ec32bb75b8b0a2e496ee234851dca501a5dbb97b6a0
2022-05-12 22:21:53,707 botocore.auth DEBUG    Signature:
e0b579d8ac5a091d2637313078aefd1d7059b7d86ac3d41f4c5c5137ff326847
2022-05-12 22:21:53,707 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:53,707 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:53,707 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:53,707 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:54,654 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,655 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'adS/LUxuDGXeAzLqUbkUnsKdjio3WaRxb0UmjYfmLYG8w93mnwuvlrY/O+mYlHsp3traJo47nwk=', 'x-amz-request-id': 'XNTZJRRYSS5EJ484', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,655 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_3/1000/urlfalseeopatches/30PTU_3_3/2022-05-12T11:03:46.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/bbox.pkl2022-05-12T11:04:09.000Z"8a07a5122b194c327e4c3ce5b3eb548c"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/timestamp.pkl2022-05-12T11:04:09.000Z"bddd5da052edd05b16c1bacc1598871b"1858e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/data/eopatches/30PTU_3_3/mask/'
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,656 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,656 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:54,656 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,657 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,657 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_3/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,657 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,658 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,658 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,658 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,658 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_3%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,658 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
87147abd8a6976ce58351407af795364a41d5cfd98d927e22343387227fe8376
2022-05-12 22:21:54,658 botocore.auth DEBUG    Signature:
a05efd954e16a43bc30d1cdcb3623122d1c97c45187f6cf93a6682443aa96bda
2022-05-12 22:21:54,658 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,658 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,658 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,745 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,745 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NtZXDlzkZTVor+wxBehkraHcQDOOV/o9CWV8KOLOoyMd8+FWxFmXRr0RfyhFWpAIrnxSa2N9qR4=', 'x-amz-request-id': 'XNTPTTN8H497NJNC', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,745 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_3/data/1000/urlfalseeopatches/30PTU_3_3/data/2022-05-12T11:03:56.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/data/BANDS.npy2022-05-12T11:04:10.000Z"3846787fb49f8e43ffba81b3901a514b-26"212960128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/data/CLP.npy2022-05-12T11:04:09.000Z"9eb3f42b9bf1760d69e6339db6684bdc-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,746 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,747 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_3/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,747 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,747 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,747 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,748 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,748 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_3%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,748 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
1ccc7229531b1eec9329cb1ccb7977653ef1e6fc8990deb160216a068386fb1f
2022-05-12 22:21:54,748 botocore.auth DEBUG    Signature:
a9d624ef459ed9a63668ce39fa03b6ce9f19ae218ff22887d5367120eb4bbf9b
2022-05-12 22:21:54,748 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,748 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,748 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,837 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,839 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'eaUgQTR4M99AgMZHHesIr+esbCQIhLLQJUAgsrqyWitpB13nDLvtoAhgT5g7pJ0gmZUejKbZJ+Q=', 'x-amz-request-id': 'XNTX52S1XNGQTKQW', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,839 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_3/mask/1000/urlfalseeopatches/30PTU_3_3/mask/2022-05-12T11:04:00.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/mask/CLM.npy2022-05-12T11:04:09.000Z"ab2d6bd1d4bb6419719e4059169e0f0f-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/mask/IS_DATA.npy2022-05-12T11:04:08.000Z"30cacf5f1ee7603a53f0d2a527451479-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,840 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,840 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,840 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,840 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,841 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,842 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,845 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,845 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,842 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,853 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,853 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,849 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,851 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,846 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,848 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,850 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,858 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,855 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,856 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,857 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,859 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,861 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,860 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,860 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,860 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,861 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,867 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,868 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,859 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,870 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,870 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,871 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,871 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,872 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,872 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:54,872 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:54,872 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,872 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,872 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
65cb776bc3d70e459f5a99ed65148e5385ad941288bda639d8a0616f1096fb28
2022-05-12 22:21:54,872 botocore.auth DEBUG    Signature:
ef0e452cc01174d58d441c7fe54ce98542e9b93c20f9e9f0fd95f0d4717bcb02
2022-05-12 22:21:54,872 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,872 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,872 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,866 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,862 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,864 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,872 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,874 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,873 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,873 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,876 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,876 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,864 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,878 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,876 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,874 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,879 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,874 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,880 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,882 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,882 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,883 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,884 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,884 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,885 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:54,885 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:54,885 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,885 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data/CLP.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,885 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
f762380d78b1db9107fb202cda7b327d188ee3af34031c59abd847d882d6df90
2022-05-12 22:21:54,885 botocore.auth DEBUG    Signature:
f9a4760abdb921a763f71cb992ebd8c6c5782ec05eb6485bf526673792c46e50
2022-05-12 22:21:54,882 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,882 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,885 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,882 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,888 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,888 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,889 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,890 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:54,890 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:54,890 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,890 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask/CLM.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,890 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
54fbbd37ae8a82e037e2a3fec1898e2d423fb3a9f64135edf11a26aab81b89dd
2022-05-12 22:21:54,891 botocore.auth DEBUG    Signature:
8b19244b039109574a35358c11da665332002a2ed1f32193c81883bcb18547e4
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,891 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,888 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,891 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,892 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,891 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,888 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,894 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,894 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:54,894 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,894 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,895 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/timestamp.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,896 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,896 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,896 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/timestamp.pkl
2022-05-12 22:21:54,896 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/timestamp.pkl
2022-05-12 22:21:54,896 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,897 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/timestamp.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,897 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
714af09422e14e8571861fd482a92b737eb94b97c30f3ec0c33253d3e3660585
2022-05-12 22:21:54,897 botocore.auth DEBUG    Signature:
f33f325232d9763eea813ca1ee5086b4c9a9178aa344f8b0f6cdad764174a1e4
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,897 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,897 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,898 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,894 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,898 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask/IS_DATA.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,898 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
68d89518e32ac0cd6d965559dd35f6bb88f38e45c5ec0e70ef5e301245f96f48
2022-05-12 22:21:54,898 botocore.auth DEBUG    Signature:
d1409242f5c40bc0f4f54ee7e7769a21120b74248272babc11489341f39ddb69
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,898 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,898 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,899 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,899 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,896 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,899 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,899 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,899 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,900 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,900 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,900 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,900 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,900 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/bbox.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,901 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,901 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,901 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/bbox.pkl
2022-05-12 22:21:54,902 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/bbox.pkl
2022-05-12 22:21:54,902 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,902 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/bbox.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,902 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
4a3ee58771f4cd2c5a2e3062ff7f5811cf8f83a184155f47d7ad08993f535ffb
2022-05-12 22:21:54,902 botocore.auth DEBUG    Signature:
1223d0dc33768dbede8a8df20fdf948eb581fbda736f4b57875880c78df4a89f
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,903 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,903 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:55,612 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data/CLP.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,613 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KE7JTFEDP8BKPX', 'x-amz-id-2': 'hsn1tU3ktxNHRX2tB6xX7kG+3Y9xbBn+xpuGw+552LwLNfRevNZW/nZIRuGKxgcpOvoen43p28E=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,613 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,616 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,616 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,625 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/bbox.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,625 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K49YN6EHQATAF8', 'x-amz-id-2': 'M70Y70QCVQSTUQnJ+cm6E2ECaJAmEPTqjJuYmEpBf4coJKsVkjC9xEbkNnphV9mpoIyYTbIC5No=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,625 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,627 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,628 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,628 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,628 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,628 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,628 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,628 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,628 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,628 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,628 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,628 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,628 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,629 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,629 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,629 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,629 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,629 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,629 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,629 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,629 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,630 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,630 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,630 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,632 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,633 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask/IS_DATA.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,633 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KCKG3XXD2Q321B', 'x-amz-id-2': 'dVpzPcr+KBBTPAb+a8XiyI1/acbtrpXmZ1PMGxTpPWC/vyuzT/kakcwF/XuT85c8tvlhGY5AEEQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,633 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,636 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,636 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,637 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,637 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,633 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,637 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,638 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,638 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,638 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,638 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,638 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,638 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,638 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,633 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask/CLM.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,639 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KBKFZKTG47Y8T7', 'x-amz-id-2': '4fAu45TwH19wbis+kiYaLpa0nZfOE7oOFQq1uwTtJ+CuOChpK1sb0SC7EhHyAmiPt6fHdOCj2lw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,639 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/timestamp.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,639 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,642 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,640 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K4XWNGJ3B8EB61', 'x-amz-id-2': 'PJrVyQmfiBUTZDpzOODnMExrbxkG1KyNGCjQoAdN0ixLzDBiOwEvonhTg115oX/Sc2gADtvEol4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,642 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,645 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,645 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,645 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,646 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,646 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,646 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,646 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,646 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,646 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,646 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,646 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,647 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,647 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,647 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,647 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,647 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,647 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,647 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,648 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,648 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,649 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,650 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,650 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,650 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,650 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,650 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,650 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,650 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,650 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,651 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,651 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,651 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K3MXA1YBEFHBKQ', 'x-amz-id-2': 'JixAvcFVrE632j8m3pOAly4z8EFeHhk8cp49DlwSzblW3Xo9zBKfswXPCLHEItXsmmSzLIo2K8w=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,651 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,642 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,654 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,654 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,654 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,654 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,655 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,655 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,656 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,656 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,656 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,656 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,656 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,656 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,656 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,657 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,657 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,657 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,654 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,657 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,657 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,658 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,659 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,659 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,659 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,659 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,659 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,659 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,659 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,659 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,659 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,660 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,660 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,660 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,660 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,660 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,660 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,660 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,660 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,661 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:56,626 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,627 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JSPST1HBEGJPF1', 'x-amz-id-2': 'oZfhzUdoT/jf4WEZQ36D5651e4XgAd5+Aa77m4CmSiHSbUvhof+pnKQAezCQhfPQph/eitWEqak=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,627 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,627 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,627 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,627 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,627 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,628 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,628 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,628 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,628 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,628 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,628 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,628 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,628 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,628 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,628 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,629 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,629 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,629 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,629 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,629 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,629 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,629 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,630 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,630 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,634 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,634 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JM5YEFHJHM03RB', 'x-amz-id-2': 'A3iw/VwVKoE/SAk47wqzL12q19ZpmHgyoUahtwB4O4Bsmh9QDwW6QBjRQ360BSD+pTyrmgoWVB0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,635 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,635 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,635 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,636 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,636 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,636 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,636 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,636 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,637 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,637 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,637 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,637 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,637 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,637 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,638 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,638 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,638 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,642 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,642 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JW37RZPT33PXP9', 'x-amz-id-2': 'Xn0c1vBaifXd8O8/54l3ces+MHEu98xmDTLzLxmSTP8/Di8IW1g7045+jucNjzVQwx9tJ7RadR0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,643 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,643 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,643 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,643 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,643 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,643 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,643 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,643 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,644 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,644 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,644 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,644 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,644 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,644 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,644 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,644 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,644 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,646 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,646 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JY0RFBFWGJ8JQ1', 'x-amz-id-2': '89aMpqDryUIBR3gEf0biA3L0jLbK/nwkvgYm0wP3XpEjp9wNnzQ5wx7He+GDzicAcErlwTCthCg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,646 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,646 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,646 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,646 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,646 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,647 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,647 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,647 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,647 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,647 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,647 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,647 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,647 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,647 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,647 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,647 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,647 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,647 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,647 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,647 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,648 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,648 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,648 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JS9BQCXMAHWK96', 'x-amz-id-2': 'nlKRQpWJ0GsI5Qqd9oHnK/PpwvoW7aXqQq775MvnrxOzScJ56VgYSLDqUzDBVwbBuZ0JplQcVm0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,648 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,648 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,648 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,649 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,649 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,649 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,649 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,649 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,650 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JTWAFBEVASMNKE', 'x-amz-id-2': 'rNtHtFjW9lAVkADMeRZ2bsp1mpzSdsIhoMAFgZaF4Yfkkn+nQlWbPfY/OaY3Wb0Vq+2NV8tr+SQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,650 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,650 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,650 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,651 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,651 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,651 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,651 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,651 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,652 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,652 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,652 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,652 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,652 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,652 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,652 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,652 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,652 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,652 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,653 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,653 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,653 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,654 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,653 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,654 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,654 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,654 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,654 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,655 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,583 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,584 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'y0bCUdpXBWCddrBdUjytu7dNKKJ5oLPKU1S1oVcEXmvJgaj2yCCHCPPWO04+nI9ddX732w+fpf4=', 'x-amz-request-id': '4P7W6181R17YA6R9', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,584 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,584 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,584 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,584 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,584 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,584 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,585 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/bbox.pkl
2022-05-12 22:21:57,585 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,585 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,585 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,585 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,585 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,585 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,585 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,585 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/bbox.pkl
2022-05-12 22:21:57,585 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/bbox.pkl
2022-05-12 22:21:57,586 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,586 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,586 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b8978be2b0e0c06ce703bcdd06a1393297497f774887fbed95075c3e9b0ea6ea
2022-05-12 22:21:57,586 botocore.auth DEBUG    Signature:
f5cce429972924adf5e44d237995bb992861540866acb2245c3110106e76f766
2022-05-12 22:21:57,586 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,586 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,586 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,586 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,610 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,611 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UjZ3YzAWUhBFJ5X4tWh1WBDPv4Tp96aP0d1tf6SCg+WvWDqhC6uYHHkByeoBRdVAZp3p6/WUqoQ=', 'x-amz-request-id': '4P7PJR8PMH7X9PKX', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,611 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,611 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,611 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,611 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,611 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,611 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,612 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,612 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,612 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,612 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,612 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,612 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,613 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,613 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
78795bc2e56bc734f51dfbf21afb8ecc6d13e19c85bd1c815507dce23f2f268e
2022-05-12 22:21:57,613 botocore.auth DEBUG    Signature:
402172148d28e42cbd15caf4b37c786ed5a3353aacb4834ae1da7bf0e6886213
2022-05-12 22:21:57,613 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,613 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,613 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,613 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,617 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,617 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SjwHH6p90OSfAEtTUmpccOOcb02YKW+Bd2sdyT2aLRWbj61KjcDlesmKHCyL2EcI0DpC2M7soFM=', 'x-amz-request-id': '4P7WKQGDW2W6T1W5', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,617 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,618 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,618 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,618 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,618 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,618 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,619 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,619 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,619 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,619 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,619 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
8ca943b046f901b490c5f2d543ddf2656310dce0238bf8d6c8268e8bd50aa50d
2022-05-12 22:21:57,619 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jQJ1tMWjfXoKUTMPyWLvyDvWQnErIHau2GAcQ+55vlcmNaFBnCP67zZDQmVP01EVX0c9cNJ3M44=', 'x-amz-request-id': '4P7K4Y7Z0G69GNR0', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,619 botocore.auth DEBUG    Signature:
16c6fe05055c710a53d86acaf4331484a96b66304ecc3e2c35e00f96364613ab
2022-05-12 22:21:57,619 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,620 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,620 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,620 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,620 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,621 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,621 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,622 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,622 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,622 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
87e2ffb21627ec810ce8ad1a87250d75d98580ac28829ae7b6a6284f262c39c9
2022-05-12 22:21:57,622 botocore.auth DEBUG    Signature:
e1123bab06d3405cf5008cfffee0530cd2482ccf38fe32eef0783fd16861e7d9
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,622 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,622 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,623 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,623 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,621 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,625 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SwB3vkGyMyFSoHL/qzH5cW7n9czHfnj3Si/M0SlEcKm91KcVjDhSxhGsD/OiH8vbElIlituVXCo=', 'x-amz-request-id': '4P7TSAFT29YQZ5PH', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,625 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,625 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,625 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,625 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,625 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,625 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,621 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,626 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2qLChYpvYY7TcQKPWfedjQeqf0+r2qdKwES5iXUsI3r71W1m6UkN8Glfl10TwCjC/17s48M6V9I=', 'x-amz-request-id': '4P7RRG986ZHTKHVS', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,626 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,626 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,626 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,626 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,626 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/timestamp.pkl
2022-05-12 22:21:57,626 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,626 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,626 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/timestamp.pkl
2022-05-12 22:21:57,626 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/timestamp.pkl
2022-05-12 22:21:57,627 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,627 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,627 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
a0c4d51921e7aa0f38595863fb38f008f258e7d47128f036cc2329e0b7f2a413
2022-05-12 22:21:57,627 botocore.auth DEBUG    Signature:
943393def1a90a7c271c6ed47be6e85c1e9031a53fedc6afa0e8983ce25b42c1
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,627 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,627 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,625 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,628 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,628 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,628 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,628 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,628 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,628 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,628 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
428781ef9ff71069a7df1471d500b77dd3c4238d3e742def81fd5a8c77d24d71
2022-05-12 22:21:57,628 botocore.auth DEBUG    Signature:
bab9ed1ad46506e3ebdfd64f70d5c8c694d18ad22ea29c16460a495ddd30308e
2022-05-12 22:21:57,628 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,628 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,628 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,628 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,692 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/bbox.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,692 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'mYyDStRU053VT+C+Cmqh6L7r0fRgEIybCsFfpafaP/OXUULjByyGMsl575Bfhrq71t20Gwu5uEo=', 'x-amz-request-id': '4P7JD7XN7HTXSYDJ', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"8a07a5122b194c327e4c3ce5b3eb548c"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,692 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,693 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,693 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,693 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/bbox.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,694 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,696 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask/CLM.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,696 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'T5BuS7T2/lJOKRyeQoicNYgEPUsHTy46v6GU1jFsQRUlMREEwU9mklZnIIoMP7pQsF13qBjMrmM=', 'x-amz-request-id': '4P7MWWTW10GE8P8D', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"ab2d6bd1d4bb6419719e4059169e0f0f-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,696 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,697 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,697 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,697 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,697 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,698 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,698 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,699 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,702 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,702 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,703 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask/IS_DATA.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,705 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'CCC4lk9MmYzw8NAjbKi58GPHs8MRs+BTuGsXm/ONU/NN3VWGR2a4elEEGZJdupMho+RZR7bPFKE=', 'x-amz-request-id': '4P7NMNHSM56H6FZT', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,705 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,700 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,705 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,706 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data/CLP.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,706 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Zmv+pSBDjSHK0M93NowfvCdZ6/DkvNw4ZG9Zt3iNh/PJxlwGRBj5N7lPqCmqdHgovCAbl/Lr/zc=', 'x-amz-request-id': '4P7SP410VJ7SDVNX', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"9eb3f42b9bf1760d69e6339db6684bdc-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '26620128'}
2022-05-12 22:21:57,706 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,706 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,706 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,706 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,707 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,707 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,705 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,707 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,707 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/timestamp.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,708 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7cQspT77txeT4mRfC4w5GzBDmPSodnb8oKyuwUc8NkyetCG4GH/n7kWiNWucP8bBjWMiwNgaO7A=', 'x-amz-request-id': '4P7K4HXMRMCP6DPZ', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"bddd5da052edd05b16c1bacc1598871b"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1858'}
2022-05-12 22:21:57,708 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,708 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,708 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,708 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,708 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,708 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/timestamp.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,707 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,709 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,707 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,704 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,709 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,710 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,710 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,709 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,709 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,709 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,710 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,707 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,709 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/timestamp.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,709 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,711 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,711 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,711 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,711 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,711 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,712 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,712 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,710 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,711 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,710 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,710 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,710 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,714 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,714 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,714 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=35>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,714 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,716 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,715 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Op1gopajQDCVvWrIpGQAZg4R8LZ5o78Wj2ItiW2rXiyeBVcO9qhSlJa7X6lY2Ol7KRH5iq1K3n4=', 'x-amz-request-id': '4P7GRN5648M75MGH', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '212960128'}
2022-05-12 22:21:57,718 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,717 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,710 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,716 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,719 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,720 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=35>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,718 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,720 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,701 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,719 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,716 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,719 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,720 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=35>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,719 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,711 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/timestamp.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,721 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,722 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,722 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,725 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,726 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,723 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/timestamp.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/timestamp.pkl', 'fileobj': <_io.BufferedRandom name=39>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,723 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=37>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,717 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,722 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=35>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,728 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,728 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,728 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,729 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,729 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,701 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/bbox.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,726 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,724 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,729 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=37>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,728 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,730 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,723 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,729 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/bbox.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,731 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,732 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,731 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/bbox.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/bbox.pkl', 'fileobj': <_io.BufferedRandom name=38>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,729 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,728 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,735 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
779b00bec4a8eb933c34b1cebdd204310c9fd6b59f6c4be728ffb936c93cbbe4
2022-05-12 22:21:57,732 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,733 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,735 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
1d66a25b0bcb818e4d5be812133aad88a529d763e8e260d3925c18da5ea0dea2
2022-05-12 22:21:57,730 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,728 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.auth DEBUG    Signature:
d43af14d4cd1c19f93dc796c0912f11d340ed69c36442f0d5d053ec177d2e61d
2022-05-12 22:21:57,733 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,731 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,738 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,733 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,740 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,737 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,738 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,741 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,733 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,744 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,744 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=37>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.auth DEBUG    Signature:
d6f013bd33c2f5e80abb51d031c3eab3bcd397781897dd7bb817b756479213ca
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,737 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,745 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,745 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,746 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,747 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,743 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,750 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/bbox.pkl
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,749 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,748 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,747 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,752 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,753 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,753 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,753 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,753 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
f227ce7c865fcce0fc8ebc35d9655610ad489dc1bd12c504ac0c51d8e3dcf49e
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,750 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/bbox.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,753 botocore.auth DEBUG    Signature:
62817327fa531c1a081e3dad023018c8372d348e130b732aca05602903e60127
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,756 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,751 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,757 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,757 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
486261f25bd6441f80f607dc542937cf56bfbb19d9f9bb9ee41e41a22dbd0ee6
2022-05-12 22:21:57,757 botocore.auth DEBUG    Signature:
915ea80f53010fe2c53150f22cf60e2b9e8d4043a32ca4f41df7dd61bdbe2d1b
2022-05-12 22:21:57,746 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,750 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask/CLM.npy
2022-05-12 22:21:57,760 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,752 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
025f8f788bfc618b494958ccfe2d0ae257393adbd95cf62ac86e1d31d81c2fac
2022-05-12 22:21:57,749 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,757 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,760 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,752 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
708c79a0bcfd272b23c0a12e1a114071e7f6564376be01efdd0d1e2c1910c1c6
2022-05-12 22:21:57,761 botocore.auth DEBUG    Signature:
ac9d128997fa5d7c29e02ec9ed4ed1d61db2e8e9ce53435c15ca3ec679ca19d8
2022-05-12 22:21:57,760 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,761 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,759 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,760 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/timestamp.pkl
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,760 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,762 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,763 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,763 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
a29f605d9160e789cce1603e763fd4194b78d4284294f1562ee5326c8787d6e2
2022-05-12 22:21:57,763 botocore.auth DEBUG    Signature:
9fe76e104783beb1c33c76d7dcf964bdba435cc69bfc1895871b462eac997d27
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,762 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/timestamp.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,760 botocore.auth DEBUG    Signature:
1a8d145dcf01dba48bc8d593b86ce90a7b9d14c82cf9a30b0a31dd75a12a2605
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,741 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,766 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,766 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,762 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=37>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,761 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,767 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,767 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,768 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,768 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,770 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,771 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,771 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,771 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
2052b1b879eef5635b594088d74e7141955ef0a8b3ec96d4a84ade9e5312c3e8
2022-05-12 22:21:57,771 botocore.auth DEBUG    Signature:
b9a3a66fb48e8c4afeca829f95cb01d640778709f36fa16d96f13115d700e3db
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,771 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,765 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,772 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,772 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,772 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
f8da630509464eac8b68c6a5695932c4a6bf3f6cba9573d67da3799533f1bfd5
2022-05-12 22:21:57,763 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,773 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,766 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,774 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.auth DEBUG    Signature:
c9e181fea5c69de9de73efbcd08272bf456988260d93d5acfa71d8a4ebf0e3e6
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,775 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,776 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/bbox.pkl
2022-05-12 22:21:57,775 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/bbox.pkl
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,778 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,779 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:21:57,779 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,779 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,779 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
0b5c2d75c22bd3d2d5ada47d9dde5aa05d9c84f7eafaa9705763cd360fca98b0
2022-05-12 22:21:57,775 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,778 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,780 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,780 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
697c3dc154cb3897c59cc48d588d75f7a9382c8abfc8a80de5314cc3412cd766
2022-05-12 22:21:57,780 botocore.auth DEBUG    Signature:
90e4cfcd2d51e39591bbbb77f2e79c1dae653fab3faa8f3a0e7ebb58dc1746ab
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,779 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,781 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,781 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,780 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) about to wait for the following futures []
2022-05-12 22:21:57,780 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,781 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b0c922a02f206c3312474ed083e84039294e3b2154881ce45b4905fba46664e2
2022-05-12 22:21:57,782 botocore.auth DEBUG    Signature:
e7d3dead02ec45d6a730857c121af4627f68f032de81f1e7349637fce7a415fd
2022-05-12 22:21:57,776 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,783 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,783 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,766 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,782 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/timestamp.pkl
2022-05-12 22:21:57,784 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/timestamp.pkl
2022-05-12 22:21:57,784 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,784 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,779 botocore.auth DEBUG    Signature:
46c454c16f18d1e04b09b8c4a6ec1d0623c9a7e55cf092026cfaf476dd85eb9a
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,785 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,774 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) about to wait for the following futures []
2022-05-12 22:21:57,784 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,784 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,785 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
913fb6a301c555ee32d59008c9a0c4e99106d2f77da8b828ef152cf02bd551b2
2022-05-12 22:21:57,781 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) done waiting for dependent futures
2022-05-12 22:21:57,784 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,786 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
9970cf4161ba3f98241a8e83d73fa8bbb1bde63a34a86606e2695c05a6b65c60
2022-05-12 22:21:57,785 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,781 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,784 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,786 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,785 botocore.auth DEBUG    Signature:
18b49f9ff7d375f0de359f7d436ae41b9f05dfc32608233434bf2a15309ca4ab
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,785 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=41943040-50331647'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 41943040, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,786 botocore.auth DEBUG    Signature:
d7786d287a59f2ea4f230b1e516a5ea1d5000677c3545a5f5609cdd61e297e36
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,787 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,787 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,787 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,787 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,788 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,788 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,785 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) done waiting for dependent futures
2022-05-12 22:21:57,786 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) about to wait for the following futures []
2022-05-12 22:21:57,786 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d427fcf1b7565b588db797ba4f72d8fdd944312674a72c5c0b08d33a6f1468d4
2022-05-12 22:21:57,789 botocore.auth DEBUG    Signature:
d7ff8bdffd495c2a4fb145a98881ee50a3c85e2f6df7087d48903f35d69f50fe
2022-05-12 22:21:57,785 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) about to wait for the following futures []
2022-05-12 22:21:57,788 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,789 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,789 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=33554432-41943039'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 33554432, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,789 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) done waiting for dependent futures
2022-05-12 22:21:57,784 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,789 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,791 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) done waiting for dependent futures
2022-05-12 22:21:57,792 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=25165824-33554431'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,793 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,790 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,793 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,792 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,792 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=50331648-58720255'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 50331648, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,793 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,787 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,794 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask/IS_DATA.npy
2022-05-12 22:21:57,794 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,791 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,794 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,794 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,793 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) about to wait for the following futures []
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,795 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,795 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) about to wait for the following futures []
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,796 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
189fedac406fac0c703a1aa2f7c817ac2963d1737ff953e109abc916502d1d2d
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) done waiting for dependent futures
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,796 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 botocore.auth DEBUG    Signature:
2c65789520656ce9872fbcd21a3b018c0cee6677558721850845c25639525458
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=67108864-75497471'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 67108864, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,796 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) done waiting for dependent futures
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,797 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,797 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-33554431', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,798 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=33554432-41943039', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,800 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,799 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,800 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,799 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,800 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,801 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,802 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,802 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=41943040-50331647', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,801 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,803 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,803 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,803 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,803 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,802 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,804 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=67108864-75497471', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,799 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=58720256-67108863'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 58720256, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,804 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,805 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,805 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,804 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=50331648-58720255', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,805 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,806 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=33554432-41943039
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,806 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
642249ad6bbcc08eaad5c05ddbce85d56f74d50e03c03b7c2249de61f54904c1
2022-05-12 22:21:57,805 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,801 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,804 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,800 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) about to wait for the following futures []
2022-05-12 22:21:57,807 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) done waiting for dependent futures
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,806 botocore.auth DEBUG    Signature:
ad8f964ad2e7ad1e53ff4011a75e7696a42e5b7e4dc7480c0650b1930a400706
2022-05-12 22:21:57,806 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,807 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-33554431
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,807 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=75497472-83886079'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 75497472, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,805 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,807 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,807 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,807 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
76955b5e4503e82e505632e7ef282f3f46c42ca9c5a97d40dd8b43798c195f1b
2022-05-12 22:21:57,807 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,808 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
90dc6d441c11d91f009a9817372c55d55b87fc4c02219fb10738f2da12caec69
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,808 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.auth DEBUG    Signature:
643019ea591ecf91f4302deff71d25128fdb85867fdaf4aa189a5d0e49c74795
2022-05-12 22:21:57,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,808 botocore.auth DEBUG    Signature:
1489d4bbf5e0505fe886c9093030d2d5f3f5f4d2347ec34f4961e6c9e2551246
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,808 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,809 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,809 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,809 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=41943040-50331647
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,809 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,809 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,809 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=67108864-75497471
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,809 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
9272ad9d8a6f528319116492622a72f05ef8faccaa1f8ea7288991e448144091
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,810 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,809 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,810 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,811 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,811 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,810 botocore.auth DEBUG    Signature:
9ff31519d4e293e4ff1882fd488bc33d78871d2d4ff93b570b71480cf262d3b1
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,811 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,811 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,812 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,812 urllib3.connectionpool DEBUG    Starting new HTTPS connection (5): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,811 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,811 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,810 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
917ecef53b49af2bf68622bf64367b4c547344c4973437fe1ccd6f6a251d4a8c
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,810 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,813 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,813 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,813 botocore.auth DEBUG    Signature:
db51665b21a0a869319f8db58bb64c1bc9f66f0ea981ff6aadffc65859b9f0f4
2022-05-12 22:21:57,813 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,813 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,811 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,814 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,815 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 urllib3.connectionpool DEBUG    Starting new HTTPS connection (6): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,814 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,815 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,815 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=50331648-58720255
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,815 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,815 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
5d826361fd365033e9646e9a90ed5a995cf91df0c09ddf326e156833f0519823
2022-05-12 22:21:57,815 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,815 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,814 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,815 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,816 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,816 botocore.auth DEBUG    Signature:
dfcc18ce80c80bd7cd52986ca61fbbbc3b374f30a9ff191227aaffac89cdbfe5
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,816 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=75497472-83886079', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,817 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,817 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,817 urllib3.connectionpool DEBUG    Starting new HTTPS connection (7): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,817 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,818 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=58720256-67108863', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,818 urllib3.connectionpool DEBUG    Starting new HTTPS connection (8): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,819 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,818 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,819 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,819 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,819 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,820 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,820 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,820 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,821 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,821 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,821 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,821 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,820 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,821 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,821 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=75497472-83886079
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,821 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
cb8d0c4f32b0cc67219fa9c5a7658cb8622b6f8ee1205585506a0db66040f90d
2022-05-12 22:21:57,820 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,821 botocore.auth DEBUG    Signature:
a7a6a34435255e2d16f4d7bcffdff03a6f4c5a14a25887e2dad1a0dfe8c47a1d
2022-05-12 22:21:57,821 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,822 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,822 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:21:57,822 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,822 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,822 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,822 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=58720256-67108863
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,822 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,822 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
17b636f37762a1632ca10c0abc3b3970433121ee3c946e87d391a3592021f1a9
2022-05-12 22:21:57,823 urllib3.connectionpool DEBUG    Starting new HTTPS connection (9): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,823 botocore.auth DEBUG    Signature:
4e799fa1d53c1375ef04e5187b4d0ef2b95b56b8885ffc85deac65f8d461dd97
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,823 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,823 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,823 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,823 urllib3.connectionpool DEBUG    Starting new HTTPS connection (10): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,897 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/bbox.pkl HTTP/1.1" 200 184
2022-05-12 22:21:57,897 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'M1F0Y13howyO/aDTZ1uHKMZSALDHRKrwcIGOSy3CzIMZLmbUNpnbUwmIHFjf8/hMZwAhAAM0kag=', 'x-amz-request-id': '4P7MVP2EQXXJQEE0', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"8a07a5122b194c327e4c3ce5b3eb548c"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,897 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,898 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,898 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,898 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,899 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 0}
2022-05-12 22:21:57,900 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,900 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,900 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,900 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,901 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/timestamp.pkl HTTP/1.1" 200 1858
2022-05-12 22:21:57,901 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,901 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Yfq1QNLoEeSxIUTWr+ruXzcS5MMf2UsZ3lAwP35uZvOgvnfLqVMdUNU8KYbAYngtW6ATG2tTdYw=', 'x-amz-request-id': '4P7QR6T3AYJM48KW', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"bddd5da052edd05b16c1bacc1598871b"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1858'}
2022-05-12 22:21:57,902 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '92SJe3kNXK9zDQjZo5mgnORP4jh549vloq4qKmRllyzP+NSi6EjhERNVUVyJe6aZ7FlUuQd2aVo=', 'x-amz-request-id': '4P7P7Q1MH680VHNX', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"ab2d6bd1d4bb6419719e4059169e0f0f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,902 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,902 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,903 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,903 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,903 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,903 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,904 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,904 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 0}
2022-05-12 22:21:57,904 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,904 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,904 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,970 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,971 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'S31nL9geob32z8AqSO3yTKqqaBKS6VIhq+CCK+IajUTKmS6ch3SYVfS8Yf06ddhxpS9XyAlwIKE=', 'x-amz-request-id': '4P7J5V2KEKA8ZTE5', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"9eb3f42b9bf1760d69e6339db6684bdc-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,971 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,972 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,972 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,972 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:58,003 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:58,003 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'a8iwcTWW5hGHwEfgJ5YgQc4n/JWPiFoFbQcotIbyMsggYmlRC4mYWN0ANOvPljWSUlt/U4mpJUg=', 'x-amz-request-id': '4P7TP771VJHFKJD2', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:58,003 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:58,005 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:58,005 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:58,005 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:58,099 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:58,099 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Em++bNILnpeRX3DOHmCza2uezMoHmlJvzz/0v285lulz17qeQ81uiOVAYPSNGwEe0kFaxFaoBEs=', 'x-amz-request-id': '4P7MF26WJNW9D1SK', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:58,099 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:58,100 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:58,100 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:58,101 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:59,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:21:59,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:59,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:21:59,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:21:59,854 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 16777216}
2022-05-12 22:21:59,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:00,661 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:00,661 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:00,661 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:00,661 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:00,661 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 8388608}
2022-05-12 22:22:00,661 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:01,889 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:01,889 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:01,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:01,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:01,890 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 8388608}
2022-05-12 22:22:01,890 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:03,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:03,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:03,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:03,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:03,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 17039360}
2022-05-12 22:22:03,835 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:04,262 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:04,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:04,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:04,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:04,262 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 8650752}
2022-05-12 22:22:04,263 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:04,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:04,940 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:04,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:04,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:04,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 8388608}
2022-05-12 22:22:04,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:05,994 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:05,994 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:05,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:05,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:05,995 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 8650752}
2022-05-12 22:22:05,995 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:07,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:07,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:07,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 17301504}
2022-05-12 22:22:07,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,719 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:07,719 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:07,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:07,720 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 8912896}
2022-05-12 22:22:07,720 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:08,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:08,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:08,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:08,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 8912896}
2022-05-12 22:22:08,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,779 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,780 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'JDiGO3d3oWfpLUH5/jVXJsG64tF6uMPFzz3xwZ9TMOk7qwt8NUuuhbFqzY+F8KDPN7enN38lbRI=', 'x-amz-request-id': '8ZJM2V73R6G3RG8Z', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-33554431/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,780 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,781 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,781 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,781 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,826 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,826 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'dc2DZuMOwbPKL+WM32FcXRKLsr8gMhaztetgB3h5Y/LbBqk76+Md9ueaZN8kIc+6u4p8qoYrrKw=', 'x-amz-request-id': '8ZJQS1H9BX1W9NJ6', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,826 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,826 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,826 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,826 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,035 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,036 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'i6HaomOOzsxM4lGW/SJq1XRAYXshnWUHqZahsJ8k6BtCABLMLIlPq1/fvdAmBUIIhGV1noOL7iE=', 'x-amz-request-id': '8ZJY9AH30766G166', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,036 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,037 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,038 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,038 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,095 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,095 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'WWmS1Jn1lJFp+/Lbc05P3qZRZCpIxU5ja+JHak+myWPBwblCcQDHOT2wJXspXhgR3gCebui1jtY=', 'x-amz-request-id': '8ZJNV416D5J6GDDM', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 75497472-83886079/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,095 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,095 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,095 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,095 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,167 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,168 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2ZeQQ8JQjGxngBMGCfc5tU5tKuhwZV7mATYaEWgLd+W1g05ia3T/ZQbccmZRnUlZSmSUtHe4HIw=', 'x-amz-request-id': 'MCAME5SANKDNKVGX', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,168 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,168 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,168 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,168 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,270 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/mask/CLM.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:09,271 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'u29sVJtWTBNw7lPKtCsxPfXoSkL6L5vX0yiprV8kj8YSdWJYqPJrP85HYbXDjOyPRsvIGyVSL8k=', 'x-amz-request-id': 'MCAQDBSXGD3MQNX1', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"ab2d6bd1d4bb6419719e4059169e0f0f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:09,271 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,272 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,272 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,272 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,276 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,277 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NWgRUwJrYKa8A8Qrim30+6wECnjVmu/m3GW/s5Whm0YN1ZXYboCPV7JKUB+VYyzOryrocWPFeY8=', 'x-amz-request-id': 'MCAYYTR4EEDEW5MF', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,277 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,278 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,278 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,278 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,294 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,294 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ecNYFgvhfvg+1/v9amhkt14fbf8PRYT0aC5ZG8HDaLdihWce1GcLu47GPU174eBJjo+IZBcLPJ8=', 'x-amz-request-id': 'MCAJXG3THJ2RM60V', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"9eb3f42b9bf1760d69e6339db6684bdc-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,295 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,295 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,295 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,295 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,319 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,319 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '/nckKagYXt+PXwglLZqftCWUtoWpF+MAROll3gHQM8j8QtC3BPBuFOvEriAH1lCzEcxqCjPH6JU=', 'x-amz-request-id': 'MCAH80641AZ6VN2D', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"ab2d6bd1d4bb6419719e4059169e0f0f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,319 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,319 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,320 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,320 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,651 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/mask/IS_DATA.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:09,652 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'WC4lQqgkfhQIvEoSpiR3UoGcW22Gzkfu1e0IIhSKkX7Hkd0QdtWssD9+EwoMMsoQ5o5Bcg8sNO4=', 'x-amz-request-id': 'MCAXAA7J54GJ64C3', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:08 GMT', 'ETag': '"30cacf5f1ee7603a53f0d2a527451479-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:09,652 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,653 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,653 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,653 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,756 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,757 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '52p9y9deNEU7/A0NoXHNeBHSH69u34aVf2pMxjEE2zxEjM0n+QsuXnqXGxfzzHHXpZeLKWNKbyc=', 'x-amz-request-id': 'MCASWRTF5RCZEZT3', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"ab2d6bd1d4bb6419719e4059169e0f0f-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,757 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,758 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,758 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,758 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,767 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,767 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'JBb/6f7PVFBCUhTkzGQyURA1VrfDbKmK9yVtTM/2ivxC/Slk5y/5wjXuACMobvQS0pVbJ+eGeNA=', 'x-amz-request-id': 'MCARQ45QCFQ8PTEN', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 58720256-67108863/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,767 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,768 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,768 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,768 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,805 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,806 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'oxWw7m2YpIsS/WOBMMEzB6RZ33W2mbCRnczZsFY6gs/EXbbBBDPFn2d8POom+hfsPnFi//XQqV0=', 'x-amz-request-id': 'MCAKE19Y73Z533WF', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 67108864-75497471/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,806 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,807 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,807 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,807 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,855 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,856 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '6ZnQxyDuYRKajIaJDGet+02LeY/ovLv6p9pgAP9wVE7/bJ3ovMgoJwYVos26RVvUAilPZx6osXI=', 'x-amz-request-id': 'MCAWR0RR7SSD7HF8', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"9eb3f42b9bf1760d69e6339db6684bdc-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,856 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,857 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,857 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,857 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,878 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,879 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'QHkkIZKjpeQLet2vmKvPn0aX9/RN8ceiCulGUZj1kqGLT7m8xZzSuIYLjZHfC072OHIz8qI64mk=', 'x-amz-request-id': 'MCAXETYXVR8VZDKR', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 41943040-50331647/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,879 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,880 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,880 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,880 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:10,712 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:10,714 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 't7CK4BhlnUeTj4Sr5X0er6I5L0SOTbYT8jQzfYn6m4ghUCvKiK9fjWNYOUYJUVCA7yuhOeOyZxc=', 'x-amz-request-id': 'YV0SKCVVAWTNJ0MY', 'Date': 'Thu, 12 May 2022 22:22:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 50331648-58720255/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:10,714 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:10,715 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:10,715 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:10,715 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:12,678 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/CLP.npy HTTP/1.1" 206 1454304
2022-05-12 22:22:12,679 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'JvGFuCxOriIpd4ZN8UhISXxnZ0NuvugZ57bntcR+oWujT28mCWLuQhGCm9aZYBogD4S5dejXDyU=', 'x-amz-request-id': '8B7C5NFTQJQ40KNB', 'Date': 'Thu, 12 May 2022 22:22:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"9eb3f42b9bf1760d69e6339db6684bdc-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-26620127/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '1454304'}
2022-05-12 22:22:12,679 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:12,679 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:12,679 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:12,680 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:13,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:22:13,595 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:13,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:22:13,595 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:22:13,595 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 17563648}
2022-05-12 22:22:13,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:15,811 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:22:15,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:15,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:22:15,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:22:15,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 9175040}
2022-05-12 22:22:15,812 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:16,383 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:16,384 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'DAOK2xNSy6DX1y+cn3XLMoHp0bnDkUsu7jzGXmZloQ8xlr5METMO6m7DS3HgVt1cZ1iJBYbwJpM=', 'x-amz-request-id': 'EXYS3MY4NRQR5H67', 'Date': 'Thu, 12 May 2022 22:22:17 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 33554432-41943039/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:16,384 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:16,384 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:16,384 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:16,384 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:17,112 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:17,112 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:17,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:17,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:17,113 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 8650752}
2022-05-12 22:22:17,113 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,870 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67108864}) to executor  for transfer request: 0.
2022-05-12 22:22:23,871 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) about to wait for the following futures []
2022-05-12 22:22:23,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) done waiting for dependent futures
2022-05-12 22:22:23,871 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67108864}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 67108864}
2022-05-12 22:22:23,872 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,529 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75497472}) to executor  for transfer request: 0.
2022-05-12 22:22:24,530 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) about to wait for the following futures []
2022-05-12 22:22:24,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) done waiting for dependent futures
2022-05-12 22:22:24,530 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75497472}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 75497472}
2022-05-12 22:22:24,531 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:24,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:24,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:24,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:24,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:24,568 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 8388608}
2022-05-12 22:22:24,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:26,257 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:22:26,257 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:26,258 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:22:26,258 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:22:26,258 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 9175040}
2022-05-12 22:22:26,258 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:26,341 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:26,341 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:26,342 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:26,342 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:26,342 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 0}
2022-05-12 22:22:26,343 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:28,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:28,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:28,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:28,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:28,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 0}
2022-05-12 22:22:28,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:30,243 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41943040}) to executor  for transfer request: 0.
2022-05-12 22:22:30,244 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:30,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) about to wait for the following futures []
2022-05-12 22:22:30,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) done waiting for dependent futures
2022-05-12 22:22:30,244 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41943040}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 41943040}
2022-05-12 22:22:30,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:30,363 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:22:30,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:30,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:22:30,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:22:30,364 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 17825792}
2022-05-12 22:22:30,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:30,731 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:30,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:30,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:30,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:30,732 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 25165824}
2022-05-12 22:22:30,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:30,832 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:22:30,833 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:30,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:22:30,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:22:30,833 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 9437184}
2022-05-12 22:22:30,834 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:31,022 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:31,023 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:31,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:31,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:31,023 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 8912896}
2022-05-12 22:22:31,024 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:31,832 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50331648}) to executor  for transfer request: 0.
2022-05-12 22:22:31,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:31,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) about to wait for the following futures []
2022-05-12 22:22:31,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) done waiting for dependent futures
2022-05-12 22:22:31,833 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50331648}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 50331648}
2022-05-12 22:22:31,833 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:32,910 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58720256}) to executor  for transfer request: 0.
2022-05-12 22:22:32,910 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:32,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) about to wait for the following futures []
2022-05-12 22:22:32,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) done waiting for dependent futures
2022-05-12 22:22:32,911 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58720256}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 58720256}
2022-05-12 22:22:32,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:34,711 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75759616}) to executor  for transfer request: 0.
2022-05-12 22:22:34,711 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:34,711 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) about to wait for the following futures []
2022-05-12 22:22:34,711 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) done waiting for dependent futures
2022-05-12 22:22:34,711 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75759616}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 75759616}
2022-05-12 22:22:34,712 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:35,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:35,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:35,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:35,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:35,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 0}
2022-05-12 22:22:35,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,064 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67371008}) to executor  for transfer request: 0.
2022-05-12 22:22:36,065 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) about to wait for the following futures []
2022-05-12 22:22:36,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) done waiting for dependent futures
2022-05-12 22:22:36,065 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67371008}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 67371008}
2022-05-12 22:22:36,066 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,270 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33554432}) to executor  for transfer request: 0.
2022-05-12 22:22:36,270 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) about to wait for the following futures []
2022-05-12 22:22:36,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) done waiting for dependent futures
2022-05-12 22:22:36,270 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33554432}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 33554432}
2022-05-12 22:22:36,271 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:36,878 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:36,878 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:36,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:36,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:36,879 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 8650752}
2022-05-12 22:22:36,879 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:38,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:38,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:38,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:38,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:38,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 16777216}
2022-05-12 22:22:38,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:38,615 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:38,615 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:38,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:38,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:38,615 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 16777216}
2022-05-12 22:22:38,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:39,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:39,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:39,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:39,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:39,569 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 0}
2022-05-12 22:22:39,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:40,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:40,275 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:40,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:40,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:40,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 262144}
2022-05-12 22:22:40,276 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:44,275 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:22:44,275 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:44,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:22:44,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:22:44,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 9437184}
2022-05-12 22:22:44,276 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:44,943 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42205184}) to executor  for transfer request: 0.
2022-05-12 22:22:44,943 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:44,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) about to wait for the following futures []
2022-05-12 22:22:44,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) done waiting for dependent futures
2022-05-12 22:22:44,944 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42205184}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 42205184}
2022-05-12 22:22:44,944 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:45,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:45,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:45,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:45,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:45,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 8912896}
2022-05-12 22:22:45,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:45,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50593792}) to executor  for transfer request: 0.
2022-05-12 22:22:45,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:45,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) about to wait for the following futures []
2022-05-12 22:22:45,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) done waiting for dependent futures
2022-05-12 22:22:45,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50593792}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 50593792}
2022-05-12 22:22:45,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:45,887 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67633152}) to executor  for transfer request: 0.
2022-05-12 22:22:45,887 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:45,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) about to wait for the following futures []
2022-05-12 22:22:45,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) done waiting for dependent futures
2022-05-12 22:22:45,888 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67633152}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 67633152}
2022-05-12 22:22:45,888 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:46,866 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:22:46,866 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:46,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:22:46,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:22:46,867 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 9699328}
2022-05-12 22:22:46,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,066 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:47,066 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:47,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:47,067 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 262144}
2022-05-12 22:22:47,067 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:48,109 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:22:48,109 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:48,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:22:48,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:22:48,110 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 9175040}
2022-05-12 22:22:48,110 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:49,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:49,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:49,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 16777216}
2022-05-12 22:22:49,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,281 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:49,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:49,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:49,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 25165824}
2022-05-12 22:22:49,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:49,565 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76021760}) to executor  for transfer request: 0.
2022-05-12 22:22:49,565 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:49,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) about to wait for the following futures []
2022-05-12 22:22:49,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) done waiting for dependent futures
2022-05-12 22:22:49,566 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76021760}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 76021760}
2022-05-12 22:22:49,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,805 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:53,805 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:53,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:53,805 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 25165824}
2022-05-12 22:22:53,806 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,872 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58982400}) to executor  for transfer request: 0.
2022-05-12 22:22:53,873 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,873 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) about to wait for the following futures []
2022-05-12 22:22:53,873 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) done waiting for dependent futures
2022-05-12 22:22:53,873 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58982400}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 58982400}
2022-05-12 22:22:53,874 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:54,146 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:54,146 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:54,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:54,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:54,147 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 524288}
2022-05-12 22:22:54,147 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:55,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:22:55,139 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:55,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:22:55,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:22:55,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 18087936}
2022-05-12 22:22:55,140 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:57,123 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:22:57,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:57,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:22:57,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:22:57,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 9961472}
2022-05-12 22:22:57,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:57,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:22:57,138 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:57,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:22:57,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:22:57,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 9175040}
2022-05-12 22:22:57,139 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:57,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33816576}) to executor  for transfer request: 0.
2022-05-12 22:22:57,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:57,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) about to wait for the following futures []
2022-05-12 22:22:57,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) done waiting for dependent futures
2022-05-12 22:22:57,325 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33816576}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 33816576}
2022-05-12 22:22:57,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:58,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50855936}) to executor  for transfer request: 0.
2022-05-12 22:22:58,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:58,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) about to wait for the following futures []
2022-05-12 22:22:58,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) done waiting for dependent futures
2022-05-12 22:22:58,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50855936}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 50855936}
2022-05-12 22:22:58,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:58,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:58,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:58,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:58,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:58,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 524288}
2022-05-12 22:22:58,983 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:59,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:59,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:59,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:59,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:59,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 17039360}
2022-05-12 22:22:59,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:59,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:59,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:59,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:59,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:59,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 17039360}
2022-05-12 22:22:59,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:59,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42467328}) to executor  for transfer request: 0.
2022-05-12 22:22:59,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:59,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) about to wait for the following futures []
2022-05-12 22:22:59,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) done waiting for dependent futures
2022-05-12 22:22:59,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42467328}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 42467328}
2022-05-12 22:22:59,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67895296}) to executor  for transfer request: 0.
2022-05-12 22:23:00,029 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) about to wait for the following futures []
2022-05-12 22:23:00,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) done waiting for dependent futures
2022-05-12 22:23:00,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67895296}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 67895296}
2022-05-12 22:23:00,030 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,664 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:23:00,664 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:23:00,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:23:00,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 25427968}
2022-05-12 22:23:00,665 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:23:00,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:23:00,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:23:00,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 262144}
2022-05-12 22:23:00,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,093 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76283904}) to executor  for transfer request: 0.
2022-05-12 22:23:05,093 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,094 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) about to wait for the following futures []
2022-05-12 22:23:05,094 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) done waiting for dependent futures
2022-05-12 22:23:05,094 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76283904}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 76283904}
2022-05-12 22:23:05,095 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,329 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:05,329 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:05,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:05,330 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 786432}
2022-05-12 22:23:05,330 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,746 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:05,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:05,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:05,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 10223616}
2022-05-12 22:23:05,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59244544}) to executor  for transfer request: 0.
2022-05-12 22:23:08,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) about to wait for the following futures []
2022-05-12 22:23:08,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) done waiting for dependent futures
2022-05-12 22:23:08,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59244544}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 59244544}
2022-05-12 22:23:08,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,493 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:08,494 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:08,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:08,494 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 18350080}
2022-05-12 22:23:08,494 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:09,940 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:09,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:09,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:09,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:09,941 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 786432}
2022-05-12 22:23:09,941 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:11,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68157440}) to executor  for transfer request: 0.
2022-05-12 22:23:11,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:11,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) about to wait for the following futures []
2022-05-12 22:23:11,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) done waiting for dependent futures
2022-05-12 22:23:11,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68157440}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 68157440}
2022-05-12 22:23:11,399 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34078720}) to executor  for transfer request: 0.
2022-05-12 22:23:12,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) about to wait for the following futures []
2022-05-12 22:23:12,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) done waiting for dependent futures
2022-05-12 22:23:12,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34078720}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 34078720}
2022-05-12 22:23:12,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,552 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:12,552 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:12,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:12,553 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 9699328}
2022-05-12 22:23:12,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:13,661 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:23:13,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:13,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:23:13,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:23:13,662 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 262144}
2022-05-12 22:23:13,663 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:13,833 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:13,833 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:13,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:13,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:13,834 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 25690112}
2022-05-12 22:23:13,834 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:13,938 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:13,938 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:13,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:13,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:13,939 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 9437184}
2022-05-12 22:23:13,939 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:14,486 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:14,486 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:14,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:14,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:14,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 17301504}
2022-05-12 22:23:14,487 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:17,225 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:17,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:17,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:17,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:17,226 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 9437184}
2022-05-12 22:23:17,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:18,356 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:18,357 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:18,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:18,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:18,357 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 17301504}
2022-05-12 22:23:18,358 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:19,535 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42729472}) to executor  for transfer request: 0.
2022-05-12 22:23:19,535 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:19,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) about to wait for the following futures []
2022-05-12 22:23:19,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) done waiting for dependent futures
2022-05-12 22:23:19,535 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42729472}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 42729472}
2022-05-12 22:23:19,536 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:19,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:23:19,643 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:19,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:23:19,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:23:19,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 25165824}
2022-05-12 22:23:19,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:20,501 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:20,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:20,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:20,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:20,502 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 1048576}
2022-05-12 22:23:20,502 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:22,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51118080}) to executor  for transfer request: 0.
2022-05-12 22:23:22,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:22,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) about to wait for the following futures []
2022-05-12 22:23:22,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) done waiting for dependent futures
2022-05-12 22:23:22,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51118080}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 51118080}
2022-05-12 22:23:22,170 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:22,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:23:22,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:22,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:23:22,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:23:22,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 10485760}
2022-05-12 22:23:22,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:26,040 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:26,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:26,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:26,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:26,041 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 1048576}
2022-05-12 22:23:26,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:26,872 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:23:26,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:26,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:23:26,873 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:23:26,873 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 17039360}
2022-05-12 22:23:26,873 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:28,500 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59506688}) to executor  for transfer request: 0.
2022-05-12 22:23:28,500 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:28,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) about to wait for the following futures []
2022-05-12 22:23:28,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) done waiting for dependent futures
2022-05-12 22:23:28,500 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59506688}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 59506688}
2022-05-12 22:23:28,500 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:28,619 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:23:28,619 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:28,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:23:28,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:23:28,620 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 18612224}
2022-05-12 22:23:28,620 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:28,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68419584}) to executor  for transfer request: 0.
2022-05-12 22:23:28,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:28,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) about to wait for the following futures []
2022-05-12 22:23:28,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) done waiting for dependent futures
2022-05-12 22:23:28,757 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68419584}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 68419584}
2022-05-12 22:23:28,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:29,047 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:23:29,047 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:29,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:23:29,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:23:29,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 10747904}
2022-05-12 22:23:29,048 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:29,539 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76546048}) to executor  for transfer request: 0.
2022-05-12 22:23:29,539 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:29,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) about to wait for the following futures []
2022-05-12 22:23:29,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) done waiting for dependent futures
2022-05-12 22:23:29,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76546048}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 76546048}
2022-05-12 22:23:29,540 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,830 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:30,830 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:30,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:30,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 1310720}
2022-05-12 22:23:30,831 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,879 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:30,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:30,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:30,880 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 25952256}
2022-05-12 22:23:30,880 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:32,503 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:23:32,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:32,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:23:32,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:23:32,503 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 524288}
2022-05-12 22:23:32,504 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:33,205 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:33,206 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:33,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:33,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:33,206 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 17563648}
2022-05-12 22:23:33,206 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:33,785 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:33,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:33,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:33,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:33,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 9699328}
2022-05-12 22:23:33,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:34,206 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:34,207 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:34,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:34,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:34,207 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 9699328}
2022-05-12 22:23:34,208 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:38,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:38,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:38,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:38,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:38,044 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 9961472}
2022-05-12 22:23:38,045 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,142 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:23:39,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:23:39,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:23:39,143 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 11010048}
2022-05-12 22:23:39,144 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,677 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:23:39,677 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:23:39,678 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:23:39,678 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 524288}
2022-05-12 22:23:39,678 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,764 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:39,764 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:39,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:39,765 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 1572864}
2022-05-12 22:23:39,765 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:40,503 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42991616}) to executor  for transfer request: 0.
2022-05-12 22:23:40,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:40,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) about to wait for the following futures []
2022-05-12 22:23:40,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) done waiting for dependent futures
2022-05-12 22:23:40,503 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42991616}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 42991616}
2022-05-12 22:23:40,504 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:40,534 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51380224}) to executor  for transfer request: 0.
2022-05-12 22:23:40,534 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:40,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) about to wait for the following futures []
2022-05-12 22:23:40,535 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) done waiting for dependent futures
2022-05-12 22:23:40,535 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51380224}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 51380224}
2022-05-12 22:23:40,535 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,065 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:23:42,066 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:23:42,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:23:42,066 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 1310720}
2022-05-12 22:23:42,067 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34340864}) to executor  for transfer request: 0.
2022-05-12 22:23:42,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) about to wait for the following futures []
2022-05-12 22:23:42,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) done waiting for dependent futures
2022-05-12 22:23:42,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34340864}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 34340864}
2022-05-12 22:23:42,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:44,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:44,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:44,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 26214400}
2022-05-12 22:23:44,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:45,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68681728}) to executor  for transfer request: 0.
2022-05-12 22:23:45,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:45,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) about to wait for the following futures []
2022-05-12 22:23:45,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) done waiting for dependent futures
2022-05-12 22:23:45,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68681728}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 68681728}
2022-05-12 22:23:45,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:45,788 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:45,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:45,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:45,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:45,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 9961472}
2022-05-12 22:23:45,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:46,669 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76808192}) to executor  for transfer request: 0.
2022-05-12 22:23:46,669 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:46,669 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) about to wait for the following futures []
2022-05-12 22:23:46,669 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) done waiting for dependent futures
2022-05-12 22:23:46,670 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76808192}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 76808192}
2022-05-12 22:23:46,670 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:48,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:23:48,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:48,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:23:48,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:23:48,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 11272192}
2022-05-12 22:23:48,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:49,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59768832}) to executor  for transfer request: 0.
2022-05-12 22:23:49,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:49,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) about to wait for the following futures []
2022-05-12 22:23:49,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) done waiting for dependent futures
2022-05-12 22:23:49,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59768832}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 59768832}
2022-05-12 22:23:49,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,244 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:23:50,244 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:23:50,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:23:50,244 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 18874368}
2022-05-12 22:23:50,245 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:50,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,393 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:50,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:50,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 26476544}
2022-05-12 22:23:50,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:51,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:51,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:51,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:51,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:51,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 17563648}
2022-05-12 22:23:51,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:52,242 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:52,242 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:52,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:52,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:52,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 1835008}
2022-05-12 22:23:52,243 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:53,371 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:53,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:53,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:53,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:53,372 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 17301504}
2022-05-12 22:23:53,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:54,361 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43253760}) to executor  for transfer request: 0.
2022-05-12 22:23:54,361 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:54,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) about to wait for the following futures []
2022-05-12 22:23:54,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) done waiting for dependent futures
2022-05-12 22:23:54,362 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43253760}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 43253760}
2022-05-12 22:23:54,362 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,584 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:55,585 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:55,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:55,585 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 786432}
2022-05-12 22:23:55,586 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:56,302 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34603008}) to executor  for transfer request: 0.
2022-05-12 22:23:56,302 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:56,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) about to wait for the following futures []
2022-05-12 22:23:56,302 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) done waiting for dependent futures
2022-05-12 22:23:56,303 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34603008}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 34603008}
2022-05-12 22:23:56,303 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:58,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:58,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:58,702 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 17825792}
2022-05-12 22:23:58,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:58,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:58,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:58,859 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 1572864}
2022-05-12 22:23:58,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:58,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:58,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:58,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 10223616}
2022-05-12 22:23:58,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:23:58,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:23:58,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:23:58,998 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 11534336}
2022-05-12 22:23:58,998 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:59,030 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:59,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:59,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:59,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:59,031 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 9961472}
2022-05-12 22:23:59,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:59,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:59,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:59,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:59,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:59,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 10223616}
2022-05-12 22:23:59,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:00,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51642368}) to executor  for transfer request: 0.
2022-05-12 22:24:00,295 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:00,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) about to wait for the following futures []
2022-05-12 22:24:00,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) done waiting for dependent futures
2022-05-12 22:24:00,295 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51642368}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 51642368}
2022-05-12 22:24:00,295 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:01,428 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60030976}) to executor  for transfer request: 0.
2022-05-12 22:24:01,429 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:01,429 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) about to wait for the following futures []
2022-05-12 22:24:01,429 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) done waiting for dependent futures
2022-05-12 22:24:01,430 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60030976}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 60030976}
2022-05-12 22:24:01,430 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:03,644 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:03,644 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:03,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:03,645 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:03,645 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 2097152}
2022-05-12 22:24:03,645 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:05,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77070336}) to executor  for transfer request: 0.
2022-05-12 22:24:05,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:05,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) about to wait for the following futures []
2022-05-12 22:24:05,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) done waiting for dependent futures
2022-05-12 22:24:05,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77070336}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 77070336}
2022-05-12 22:24:05,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68943872}) to executor  for transfer request: 0.
2022-05-12 22:24:09,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) about to wait for the following futures []
2022-05-12 22:24:09,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) done waiting for dependent futures
2022-05-12 22:24:09,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68943872}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 68943872}
2022-05-12 22:24:09,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:10,473 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43515904}) to executor  for transfer request: 0.
2022-05-12 22:24:10,473 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:10,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) about to wait for the following futures []
2022-05-12 22:24:10,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) done waiting for dependent futures
2022-05-12 22:24:10,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43515904}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 43515904}
2022-05-12 22:24:10,474 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:11,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:24:11,253 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:11,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:24:11,254 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:24:11,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 1835008}
2022-05-12 22:24:11,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:11,746 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:24:11,746 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:11,746 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:24:11,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:24:11,747 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 11796480}
2022-05-12 22:24:11,747 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:13,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:13,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:13,048 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 19136512}
2022-05-12 22:24:13,048 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,193 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:13,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:13,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:13,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 10485760}
2022-05-12 22:24:13,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,590 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:13,590 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:13,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:13,591 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 2359296}
2022-05-12 22:24:13,591 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:13,788 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:24:13,789 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:13,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:24:13,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:24:13,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 17825792}
2022-05-12 22:24:13,790 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:14,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:24:14,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:14,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:24:14,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:24:14,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 17563648}
2022-05-12 22:24:14,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:15,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:24:15,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:15,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:24:15,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:24:15,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 18087936}
2022-05-12 22:24:15,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:15,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51904512}) to executor  for transfer request: 0.
2022-05-12 22:24:15,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:15,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) about to wait for the following futures []
2022-05-12 22:24:15,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) done waiting for dependent futures
2022-05-12 22:24:15,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51904512}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 51904512}
2022-05-12 22:24:15,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:18,799 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:24:18,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:18,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:24:18,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:24:18,800 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 1048576}
2022-05-12 22:24:18,800 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:21,615 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77332480}) to executor  for transfer request: 0.
2022-05-12 22:24:21,615 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:21,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) about to wait for the following futures []
2022-05-12 22:24:21,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) done waiting for dependent futures
2022-05-12 22:24:21,616 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77332480}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 77332480}
2022-05-12 22:24:21,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:22,189 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:24:22,189 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:22,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:24:22,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:24:22,190 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 786432}
2022-05-12 22:24:22,190 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:22,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:24:22,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:22,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:24:22,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:24:22,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 25427968}
2022-05-12 22:24:22,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:22,484 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:24:22,484 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:22,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:24:22,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:24:22,485 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 10223616}
2022-05-12 22:24:22,485 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:23,473 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60293120}) to executor  for transfer request: 0.
2022-05-12 22:24:23,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:23,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) about to wait for the following futures []
2022-05-12 22:24:23,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) done waiting for dependent futures
2022-05-12 22:24:23,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60293120}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 60293120}
2022-05-12 22:24:23,474 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:23,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:23,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:23,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:23,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:23,682 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 10747904}
2022-05-12 22:24:23,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,692 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34865152}) to executor  for transfer request: 0.
2022-05-12 22:24:24,692 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) about to wait for the following futures []
2022-05-12 22:24:24,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) done waiting for dependent futures
2022-05-12 22:24:24,693 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34865152}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 34865152}
2022-05-12 22:24:24,693 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:24:26,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:24:26,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:24:26,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 12058624}
2022-05-12 22:24:26,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43778048}) to executor  for transfer request: 0.
2022-05-12 22:24:26,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) about to wait for the following futures []
2022-05-12 22:24:26,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) done waiting for dependent futures
2022-05-12 22:24:26,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43778048}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 43778048}
2022-05-12 22:24:26,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:26,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:26,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:26,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 2097152}
2022-05-12 22:24:26,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,731 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69206016}) to executor  for transfer request: 0.
2022-05-12 22:24:28,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) about to wait for the following futures []
2022-05-12 22:24:28,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) done waiting for dependent futures
2022-05-12 22:24:28,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69206016}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 69206016}
2022-05-12 22:24:28,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,996 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:24:28,996 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:24:28,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:24:28,996 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 18350080}
2022-05-12 22:24:28,996 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:30,062 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:30,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:30,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:30,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:30,063 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 2621440}
2022-05-12 22:24:30,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:31,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:31,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:31,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:31,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:31,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 10485760}
2022-05-12 22:24:31,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:31,873 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:31,873 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:31,873 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:31,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:31,874 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 11010048}
2022-05-12 22:24:31,874 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:33,058 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:24:33,058 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:33,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:24:33,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:24:33,059 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 17825792}
2022-05-12 22:24:33,059 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:33,191 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:33,191 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:33,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:33,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:33,192 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 19398656}
2022-05-12 22:24:33,192 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:34,224 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77594624}) to executor  for transfer request: 0.
2022-05-12 22:24:34,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:34,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) about to wait for the following futures []
2022-05-12 22:24:34,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) done waiting for dependent futures
2022-05-12 22:24:34,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77594624}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 77594624}
2022-05-12 22:24:34,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:34,814 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:24:34,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:34,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:24:34,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:24:34,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 12320768}
2022-05-12 22:24:34,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:35,764 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52166656}) to executor  for transfer request: 0.
2022-05-12 22:24:35,764 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:35,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) about to wait for the following futures []
2022-05-12 22:24:35,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) done waiting for dependent futures
2022-05-12 22:24:35,765 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52166656}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 52166656}
2022-05-12 22:24:35,765 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:37,890 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:24:37,890 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:37,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:24:37,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:24:37,890 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 18087936}
2022-05-12 22:24:37,891 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:38,762 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:38,762 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:38,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:38,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:38,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 2359296}
2022-05-12 22:24:38,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:38,900 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:24:38,901 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:38,901 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:24:38,901 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:24:38,901 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 2883584}
2022-05-12 22:24:38,901 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:40,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44040192}) to executor  for transfer request: 0.
2022-05-12 22:24:40,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:40,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) about to wait for the following futures []
2022-05-12 22:24:40,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) done waiting for dependent futures
2022-05-12 22:24:40,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44040192}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 44040192}
2022-05-12 22:24:40,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:40,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:24:40,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:40,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:24:40,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:24:40,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 11272192}
2022-05-12 22:24:40,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:44,963 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35127296}) to executor  for transfer request: 0.
2022-05-12 22:24:44,963 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:44,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) about to wait for the following futures []
2022-05-12 22:24:44,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) done waiting for dependent futures
2022-05-12 22:24:44,964 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35127296}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 35127296}
2022-05-12 22:24:44,964 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:47,062 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:24:47,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:47,063 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:24:47,063 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:24:47,063 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 12582912}
2022-05-12 22:24:47,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:47,416 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:24:47,416 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:47,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:24:47,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:24:47,417 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 18612224}
2022-05-12 22:24:47,417 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:48,245 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:24:48,245 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:48,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:24:48,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:24:48,246 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 1310720}
2022-05-12 22:24:48,246 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:48,433 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69468160}) to executor  for transfer request: 0.
2022-05-12 22:24:48,433 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:48,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) about to wait for the following futures []
2022-05-12 22:24:48,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) done waiting for dependent futures
2022-05-12 22:24:48,433 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69468160}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 69468160}
2022-05-12 22:24:48,434 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:48,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77856768}) to executor  for transfer request: 0.
2022-05-12 22:24:48,834 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:48,834 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) about to wait for the following futures []
2022-05-12 22:24:48,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) done waiting for dependent futures
2022-05-12 22:24:48,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77856768}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 77856768}
2022-05-12 22:24:48,835 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:49,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:24:49,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:49,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:24:49,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:24:49,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 19660800}
2022-05-12 22:24:49,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:49,754 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:24:49,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:49,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:24:49,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:24:49,755 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 3145728}
2022-05-12 22:24:49,755 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:51,756 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60555264}) to executor  for transfer request: 0.
2022-05-12 22:24:51,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:51,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) about to wait for the following futures []
2022-05-12 22:24:51,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) done waiting for dependent futures
2022-05-12 22:24:51,757 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60555264}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 60555264}
2022-05-12 22:24:51,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,409 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52428800}) to executor  for transfer request: 0.
2022-05-12 22:24:52,409 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) about to wait for the following futures []
2022-05-12 22:24:52,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) done waiting for dependent futures
2022-05-12 22:24:52,409 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52428800}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 52428800}
2022-05-12 22:24:52,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,566 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:24:52,566 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:24:52,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:24:52,567 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 2621440}
2022-05-12 22:24:52,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,896 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:24:52,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:24:52,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:24:52,897 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 11534336}
2022-05-12 22:24:52,897 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:54,511 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44302336}) to executor  for transfer request: 0.
2022-05-12 22:24:54,511 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:54,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) about to wait for the following futures []
2022-05-12 22:24:54,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) done waiting for dependent futures
2022-05-12 22:24:54,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44302336}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 44302336}
2022-05-12 22:24:54,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:54,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:54,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:54,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:54,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:54,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 10485760}
2022-05-12 22:24:54,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:55,321 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:24:55,322 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:55,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:24:55,322 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:24:55,322 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 18087936}
2022-05-12 22:24:55,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,438 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:58,438 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:58,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:58,438 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 10747904}
2022-05-12 22:24:58,439 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:58,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:24:58,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:58,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:24:58,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:24:58,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 12845056}
2022-05-12 22:24:58,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,318 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:02,318 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:02,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:02,319 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 3407872}
2022-05-12 22:25:02,319 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:25:02,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:25:02,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:25:02,650 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 18350080}
2022-05-12 22:25:02,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,959 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:25:02,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:25:02,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:25:02,960 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 25427968}
2022-05-12 22:25:02,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:03,506 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:03,506 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:03,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:03,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:03,506 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 11796480}
2022-05-12 22:25:03,507 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,904 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78118912}) to executor  for transfer request: 0.
2022-05-12 22:25:04,904 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) about to wait for the following futures []
2022-05-12 22:25:04,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) done waiting for dependent futures
2022-05-12 22:25:04,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78118912}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 78118912}
2022-05-12 22:25:04,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:05,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:25:05,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:05,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:25:05,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:25:05,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 2883584}
2022-05-12 22:25:05,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:05,511 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35389440}) to executor  for transfer request: 0.
2022-05-12 22:25:05,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:05,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) about to wait for the following futures []
2022-05-12 22:25:05,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) done waiting for dependent futures
2022-05-12 22:25:05,512 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35389440}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 35389440}
2022-05-12 22:25:05,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:05,635 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:25:05,636 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:05,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:25:05,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:25:05,636 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 18874368}
2022-05-12 22:25:05,637 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:06,047 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:25:06,047 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:06,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:25:06,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:25:06,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 1572864}
2022-05-12 22:25:06,048 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:06,579 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:25:06,580 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:06,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:25:06,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:25:06,580 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 25690112}
2022-05-12 22:25:06,581 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:07,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52690944}) to executor  for transfer request: 0.
2022-05-12 22:25:07,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:07,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) about to wait for the following futures []
2022-05-12 22:25:07,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) done waiting for dependent futures
2022-05-12 22:25:07,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52690944}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 52690944}
2022-05-12 22:25:07,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:08,120 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60817408}) to executor  for transfer request: 0.
2022-05-12 22:25:08,120 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:08,120 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) about to wait for the following futures []
2022-05-12 22:25:08,120 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) done waiting for dependent futures
2022-05-12 22:25:08,121 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60817408}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 60817408}
2022-05-12 22:25:08,121 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:08,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:25:08,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:08,164 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:25:08,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:25:08,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 13107200}
2022-05-12 22:25:08,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:25:09,105 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:25:09,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:25:09,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 25427968}
2022-05-12 22:25:09,106 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:10,286 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44564480}) to executor  for transfer request: 0.
2022-05-12 22:25:10,286 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:10,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) about to wait for the following futures []
2022-05-12 22:25:10,287 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) done waiting for dependent futures
2022-05-12 22:25:10,287 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44564480}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 44564480}
2022-05-12 22:25:10,287 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:11,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:25:11,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:11,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:25:11,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:25:11,576 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 19922944}
2022-05-12 22:25:11,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,204 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69730304}) to executor  for transfer request: 0.
2022-05-12 22:25:12,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) about to wait for the following futures []
2022-05-12 22:25:12,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) done waiting for dependent futures
2022-05-12 22:25:12,205 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69730304}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 69730304}
2022-05-12 22:25:12,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:12,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:12,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:12,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 12058624}
2022-05-12 22:25:12,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:13,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:25:13,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:13,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:25:13,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:25:13,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 3670016}
2022-05-12 22:25:13,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:15,861 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:25:15,861 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:15,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:25:15,862 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:25:15,862 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 3145728}
2022-05-12 22:25:15,863 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,424 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:25:17,424 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:25:17,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:25:17,425 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 13369344}
2022-05-12 22:25:17,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:18,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:25:18,921 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:18,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:25:18,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:25:18,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 18350080}
2022-05-12 22:25:18,922 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:20,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44826624}) to executor  for transfer request: 0.
2022-05-12 22:25:20,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:20,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) about to wait for the following futures []
2022-05-12 22:25:20,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) done waiting for dependent futures
2022-05-12 22:25:20,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44826624}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 44826624}
2022-05-12 22:25:20,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:21,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78381056}) to executor  for transfer request: 0.
2022-05-12 22:25:21,792 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:21,792 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) about to wait for the following futures []
2022-05-12 22:25:21,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) done waiting for dependent futures
2022-05-12 22:25:21,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78381056}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 78381056}
2022-05-12 22:25:21,793 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:22,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:22,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:22,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:22,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:22,005 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 12320768}
2022-05-12 22:25:22,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:22,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52953088}) to executor  for transfer request: 0.
2022-05-12 22:25:22,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:22,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) about to wait for the following futures []
2022-05-12 22:25:22,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) done waiting for dependent futures
2022-05-12 22:25:22,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52953088}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 52953088}
2022-05-12 22:25:22,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:22,508 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:25:22,508 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:22,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:25:22,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:25:22,509 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 3932160}
2022-05-12 22:25:22,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:22,811 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:25:22,811 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:22,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:25:22,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:25:22,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 18612224}
2022-05-12 22:25:22,812 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:23,632 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:25:23,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:23,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:25:23,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:25:23,633 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 19136512}
2022-05-12 22:25:23,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:25:24,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:25:24,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:25:24,476 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 3407872}
2022-05-12 22:25:24,477 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:25:24,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:25:24,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:25:24,912 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 20185088}
2022-05-12 22:25:24,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:25,531 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:25:25,531 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:25,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:25:25,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:25:25,532 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 11010048}
2022-05-12 22:25:25,532 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:27,242 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:25:27,243 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:27,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:25:27,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:25:27,244 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 13631488}
2022-05-12 22:25:27,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:27,562 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61079552}) to executor  for transfer request: 0.
2022-05-12 22:25:27,562 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:27,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) about to wait for the following futures []
2022-05-12 22:25:27,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) done waiting for dependent futures
2022-05-12 22:25:27,563 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61079552}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 61079552}
2022-05-12 22:25:27,563 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:31,234 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45088768}) to executor  for transfer request: 0.
2022-05-12 22:25:31,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:31,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) about to wait for the following futures []
2022-05-12 22:25:31,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) done waiting for dependent futures
2022-05-12 22:25:31,235 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45088768}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 45088768}
2022-05-12 22:25:31,235 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:31,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:25:31,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:31,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:25:31,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:25:31,365 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 10747904}
2022-05-12 22:25:31,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:31,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:25:31,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:31,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:25:31,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:25:31,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 4194304}
2022-05-12 22:25:31,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:35,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69992448}) to executor  for transfer request: 0.
2022-05-12 22:25:35,327 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:35,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) about to wait for the following futures []
2022-05-12 22:25:35,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) done waiting for dependent futures
2022-05-12 22:25:35,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69992448}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 69992448}
2022-05-12 22:25:35,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,246 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:25:36,246 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,246 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:25:36,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:25:36,247 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 18612224}
2022-05-12 22:25:36,247 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,385 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:25:36,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:25:36,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:25:36,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 3670016}
2022-05-12 22:25:36,387 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35651584}) to executor  for transfer request: 0.
2022-05-12 22:25:36,933 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) about to wait for the following futures []
2022-05-12 22:25:36,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) done waiting for dependent futures
2022-05-12 22:25:36,933 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35651584}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 35651584}
2022-05-12 22:25:36,934 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:39,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:39,382 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:39,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:39,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:39,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 12582912}
2022-05-12 22:25:39,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:39,759 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78643200}) to executor  for transfer request: 0.
2022-05-12 22:25:39,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:39,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) about to wait for the following futures []
2022-05-12 22:25:39,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) done waiting for dependent futures
2022-05-12 22:25:39,760 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78643200}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 78643200}
2022-05-12 22:25:39,760 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:41,416 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53215232}) to executor  for transfer request: 0.
2022-05-12 22:25:41,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:41,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) about to wait for the following futures []
2022-05-12 22:25:41,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) done waiting for dependent futures
2022-05-12 22:25:41,418 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53215232}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 53215232}
2022-05-12 22:25:41,418 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:41,567 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:41,567 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:41,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:41,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:41,568 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 20447232}
2022-05-12 22:25:41,568 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:41,766 s3transfer.download DEBUG    Retrying exception caught (Read timeout on endpoint URL: "None"), retrying request, (attempt 0 / 5)
Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 436, in _error_catcher
    yield
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 518, in read
    data = self._fp.read(amt) if not fp_closed else b""
  File "/usr/lib/python3.8/http/client.py", line 459, in read
    n = self.readinto(b)
  File "/usr/lib/python3.8/http/client.py", line 503, in readinto
    n = self.fp.readinto(b)
  File "/usr/lib/python3.8/socket.py", line 669, in readinto
    return self._sock.recv_into(b)
  File "/usr/lib/python3.8/ssl.py", line 1241, in recv_into
    return self.read(nbytes, buffer)
  File "/usr/lib/python3.8/ssl.py", line 1099, in read
    return self._sslobj.read(len, buffer)
socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 99, in read
    chunk = self._raw_stream.read(amt)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 540, in read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__
    self.gen.throw(type, value, traceback)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 441, in _error_catcher
    raise ReadTimeoutError(self._pool, None, "Read timed out.")
urllib3.exceptions.ReadTimeoutError: AWSHTTPSConnectionPool(host='plot-delineation.s3.eu-central-1.amazonaws.com', port=443): Read timed out.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 583, in _main
    for chunk in chunks:
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 728, in __next__
    chunk = self._body.read(self._chunksize)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/utils.py", line 599, in read
    value = self._stream.read(*args, **kwargs)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 102, in read
    raise ReadTimeoutError(endpoint_url=e.url, error=e)
botocore.exceptions.ReadTimeoutError: Read timeout on endpoint URL: "None"
2022-05-12 22:25:41,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:25:41,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:25:41,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:25:41,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:25:41,769 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:25:41,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:25:41,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:25:41,770 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:25:41,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:25:41,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:25:41,770 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:25:41,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:25:41,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:25:41,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:25:41,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:25:41,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:25:41,771 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:25:41,771 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:25:41,771 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/CLP.npy
2022-05-12 22:25:41,772 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:25:41,772 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222541Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:25:41,772 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222541Z
20220512/eu-central-1/s3/aws4_request
80945d980b43c17a4a31db269d4fe517cb0c0587f9db785f0add3192e699beb9
2022-05-12 22:25:41,772 botocore.auth DEBUG    Signature:
62b20f89ceb62fe7e24f8af3225da223ad2870e35989ad0e4509eb934a602c2a
2022-05-12 22:25:41,772 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:25:41,772 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:25:41,772 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:25:41,773 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:25:41,773 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:25:42,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:25:42,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:42,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:25:42,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:25:42,302 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 4456448}
2022-05-12 22:25:42,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:42,823 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:25:42,823 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2EtWJIb6dnziAazFPE4iDnJODY73yDv5bpJyDzS7kVTH3HVNRwPDP+qkl+PJQK/ZBfCFZDgo6MA=', 'x-amz-request-id': '92230D9KTR3AJ9BS', 'Date': 'Thu, 12 May 2022 22:25:43 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:09 GMT', 'ETag': '"9eb3f42b9bf1760d69e6339db6684bdc-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/26620128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:25:42,823 botocore.parsers DEBUG    Response body:

2022-05-12 22:25:42,824 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:25:42,824 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:25:42,824 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:25:44,182 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:25:44,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:25:44,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:25:44,183 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 19398656}
2022-05-12 22:25:44,183 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61341696}) to executor  for transfer request: 0.
2022-05-12 22:25:44,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) about to wait for the following futures []
2022-05-12 22:25:44,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) done waiting for dependent futures
2022-05-12 22:25:44,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61341696}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 61341696}
2022-05-12 22:25:44,378 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:25:44,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:25:44,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:25:44,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 13893632}
2022-05-12 22:25:44,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:47,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45350912}) to executor  for transfer request: 0.
2022-05-12 22:25:47,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:47,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) about to wait for the following futures []
2022-05-12 22:25:47,227 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) done waiting for dependent futures
2022-05-12 22:25:47,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45350912}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 45350912}
2022-05-12 22:25:47,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:49,581 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:25:49,581 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:49,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:25:49,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:25:49,582 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 3932160}
2022-05-12 22:25:49,583 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:49,756 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:25:49,756 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:49,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:25:49,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:25:49,757 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 18874368}
2022-05-12 22:25:49,757 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,983 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:25:50,984 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:25:50,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:25:50,984 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 20709376}
2022-05-12 22:25:50,985 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:51,017 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78905344}) to executor  for transfer request: 0.
2022-05-12 22:25:51,017 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:51,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) about to wait for the following futures []
2022-05-12 22:25:51,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) done waiting for dependent futures
2022-05-12 22:25:51,018 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78905344}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 78905344}
2022-05-12 22:25:51,018 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:53,161 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53477376}) to executor  for transfer request: 0.
2022-05-12 22:25:53,161 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:53,161 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) about to wait for the following futures []
2022-05-12 22:25:53,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) done waiting for dependent futures
2022-05-12 22:25:53,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53477376}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 53477376}
2022-05-12 22:25:53,162 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:54,244 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70254592}) to executor  for transfer request: 0.
2022-05-12 22:25:54,244 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:54,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) about to wait for the following futures []
2022-05-12 22:25:54,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) done waiting for dependent futures
2022-05-12 22:25:54,245 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70254592}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 70254592}
2022-05-12 22:25:54,245 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:56,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:25:56,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:56,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:25:56,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:25:56,069 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 12845056}
2022-05-12 22:25:56,069 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:56,122 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:25:56,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:56,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:25:56,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:25:56,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 18874368}
2022-05-12 22:25:56,124 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:57,152 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:25:57,152 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:57,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:25:57,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:25:57,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 14155776}
2022-05-12 22:25:57,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:57,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:25:57,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:57,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:25:57,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:25:57,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 0}
2022-05-12 22:25:57,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:59,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35913728}) to executor  for transfer request: 0.
2022-05-12 22:25:59,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:59,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) about to wait for the following futures []
2022-05-12 22:25:59,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) done waiting for dependent futures
2022-05-12 22:25:59,852 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35913728}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 35913728}
2022-05-12 22:25:59,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:00,580 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:26:00,581 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:00,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:26:00,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:26:00,581 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 1835008}
2022-05-12 22:26:00,582 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:01,361 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:26:01,361 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:01,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:26:01,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:26:01,362 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 19660800}
2022-05-12 22:26:01,362 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:01,448 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61603840}) to executor  for transfer request: 0.
2022-05-12 22:26:01,448 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:01,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) about to wait for the following futures []
2022-05-12 22:26:01,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) done waiting for dependent futures
2022-05-12 22:26:01,449 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61603840}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 61603840}
2022-05-12 22:26:01,449 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:01,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:01,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:01,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:01,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:01,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 4718592}
2022-05-12 22:26:01,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,097 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45613056}) to executor  for transfer request: 0.
2022-05-12 22:26:04,097 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) about to wait for the following futures []
2022-05-12 22:26:04,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) done waiting for dependent futures
2022-05-12 22:26:04,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45613056}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 45613056}
2022-05-12 22:26:04,098 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,808 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53739520}) to executor  for transfer request: 0.
2022-05-12 22:26:04,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) about to wait for the following futures []
2022-05-12 22:26:04,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) done waiting for dependent futures
2022-05-12 22:26:04,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53739520}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 53739520}
2022-05-12 22:26:04,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:05,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:26:05,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:05,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:26:05,167 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:26:05,167 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 4194304}
2022-05-12 22:26:05,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,111 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:26:08,111 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:26:08,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:26:08,112 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 14417920}
2022-05-12 22:26:08,112 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:08,704 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:26:08,704 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:08,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:26:08,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:26:08,704 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 11272192}
2022-05-12 22:26:08,705 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,028 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:26:09,029 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:26:09,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:26:09,029 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 13107200}
2022-05-12 22:26:09,030 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:26:10,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:10,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:26:10,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:26:10,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 20971520}
2022-05-12 22:26:10,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:11,095 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:26:11,096 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:11,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:26:11,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:26:11,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 262144}
2022-05-12 22:26:11,098 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:12,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:26:12,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:12,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:26:12,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:26:12,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 19136512}
2022-05-12 22:26:12,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:13,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:26:13,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:13,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:26:13,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:26:13,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 4980736}
2022-05-12 22:26:13,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:14,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:26:14,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:14,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:26:14,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:26:14,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 4456448}
2022-05-12 22:26:14,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:14,525 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:26:14,525 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:14,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:26:14,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:26:14,525 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 19136512}
2022-05-12 22:26:14,526 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:16,539 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:26:16,539 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:16,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:26:16,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:26:16,540 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 11010048}
2022-05-12 22:26:16,540 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:16,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:26:16,643 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:16,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:26:16,643 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:26:16,643 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 19922944}
2022-05-12 22:26:16,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:18,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61865984}) to executor  for transfer request: 0.
2022-05-12 22:26:18,380 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:18,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) about to wait for the following futures []
2022-05-12 22:26:18,380 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) done waiting for dependent futures
2022-05-12 22:26:18,380 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61865984}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 61865984}
2022-05-12 22:26:18,381 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:18,399 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54001664}) to executor  for transfer request: 0.
2022-05-12 22:26:18,399 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:18,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) about to wait for the following futures []
2022-05-12 22:26:18,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) done waiting for dependent futures
2022-05-12 22:26:18,400 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54001664}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 54001664}
2022-05-12 22:26:18,400 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:18,545 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79167488}) to executor  for transfer request: 0.
2022-05-12 22:26:18,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:18,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) about to wait for the following futures []
2022-05-12 22:26:18,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) done waiting for dependent futures
2022-05-12 22:26:18,546 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79167488}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 79167488}
2022-05-12 22:26:18,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,271 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70516736}) to executor  for transfer request: 0.
2022-05-12 22:26:20,271 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) about to wait for the following futures []
2022-05-12 22:26:20,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) done waiting for dependent futures
2022-05-12 22:26:20,272 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70516736}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 70516736}
2022-05-12 22:26:20,272 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:21,313 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:21,313 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:21,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:21,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:21,314 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 13369344}
2022-05-12 22:26:21,314 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:21,633 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:21,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:21,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:21,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:21,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 4718592}
2022-05-12 22:26:21,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:21,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45875200}) to executor  for transfer request: 0.
2022-05-12 22:26:21,933 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:21,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) about to wait for the following futures []
2022-05-12 22:26:21,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) done waiting for dependent futures
2022-05-12 22:26:21,934 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45875200}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 45875200}
2022-05-12 22:26:21,934 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:22,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:26:22,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:22,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:26:22,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:26:22,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 21233664}
2022-05-12 22:26:22,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:23,159 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:26:23,159 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:23,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:26:23,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:26:23,160 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 5242880}
2022-05-12 22:26:23,160 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:24,304 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:26:24,304 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:24,304 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:26:24,304 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:26:24,304 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 524288}
2022-05-12 22:26:24,305 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:24,998 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36175872}) to executor  for transfer request: 0.
2022-05-12 22:26:24,998 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:24,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) about to wait for the following futures []
2022-05-12 22:26:24,999 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) done waiting for dependent futures
2022-05-12 22:26:24,999 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36175872}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 36175872}
2022-05-12 22:26:24,999 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:29,785 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79429632}) to executor  for transfer request: 0.
2022-05-12 22:26:29,785 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:29,785 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) about to wait for the following futures []
2022-05-12 22:26:29,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) done waiting for dependent futures
2022-05-12 22:26:29,786 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79429632}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 79429632}
2022-05-12 22:26:29,786 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,511 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:26:30,511 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:26:30,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:26:30,512 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 14680064}
2022-05-12 22:26:30,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:30,894 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54263808}) to executor  for transfer request: 0.
2022-05-12 22:26:30,894 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:30,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) about to wait for the following futures []
2022-05-12 22:26:30,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) done waiting for dependent futures
2022-05-12 22:26:30,895 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54263808}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 54263808}
2022-05-12 22:26:30,895 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,810 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:26:31,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:26:31,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:26:31,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 11272192}
2022-05-12 22:26:31,811 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,047 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:26:32,047 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:26:32,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:26:32,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 20185088}
2022-05-12 22:26:32,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:34,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:26:34,126 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:34,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:26:34,126 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:26:34,126 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 19398656}
2022-05-12 22:26:34,126 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:34,633 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:26:34,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:34,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:26:34,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:26:34,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 4980736}
2022-05-12 22:26:34,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:35,245 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:35,245 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:35,246 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:35,246 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:35,246 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 13631488}
2022-05-12 22:26:35,246 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:35,667 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:26:35,668 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:35,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:26:35,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:26:35,668 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 5505024}
2022-05-12 22:26:35,669 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,618 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62128128}) to executor  for transfer request: 0.
2022-05-12 22:26:37,618 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:37,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) about to wait for the following futures []
2022-05-12 22:26:37,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) done waiting for dependent futures
2022-05-12 22:26:37,619 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62128128}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 62128128}
2022-05-12 22:26:37,619 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:37,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:26:37,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:37,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:26:37,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:26:37,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 21495808}
2022-05-12 22:26:37,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:26:39,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:26:39,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:26:39,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 786432}
2022-05-12 22:26:39,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:39,972 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:26:39,972 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:39,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:26:39,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:26:39,973 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 19398656}
2022-05-12 22:26:39,973 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,904 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46137344}) to executor  for transfer request: 0.
2022-05-12 22:26:41,904 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) about to wait for the following futures []
2022-05-12 22:26:41,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) done waiting for dependent futures
2022-05-12 22:26:41,904 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46137344}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 46137344}
2022-05-12 22:26:41,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:42,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54525952}) to executor  for transfer request: 0.
2022-05-12 22:26:42,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:42,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) about to wait for the following futures []
2022-05-12 22:26:42,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) done waiting for dependent futures
2022-05-12 22:26:42,150 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54525952}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 54525952}
2022-05-12 22:26:42,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:44,728 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79691776}) to executor  for transfer request: 0.
2022-05-12 22:26:44,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:44,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) about to wait for the following futures []
2022-05-12 22:26:44,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) done waiting for dependent futures
2022-05-12 22:26:44,730 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79691776}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 79691776}
2022-05-12 22:26:44,730 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:45,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36438016}) to executor  for transfer request: 0.
2022-05-12 22:26:45,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:45,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) about to wait for the following futures []
2022-05-12 22:26:45,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) done waiting for dependent futures
2022-05-12 22:26:45,329 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36438016}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 36438016}
2022-05-12 22:26:45,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:47,030 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:26:47,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:47,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:26:47,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:26:47,031 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 25952256}
2022-05-12 22:26:47,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:47,914 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:26:47,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:47,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:26:47,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:26:47,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 5767168}
2022-05-12 22:26:47,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:47,934 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:47,934 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:47,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:47,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:47,935 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 13893632}
2022-05-12 22:26:47,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:48,373 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:26:48,373 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:48,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:26:48,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:26:48,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 20447232}
2022-05-12 22:26:48,374 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:49,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:26:49,397 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:49,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:26:49,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:26:49,397 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 21757952}
2022-05-12 22:26:49,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:49,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:26:49,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:49,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:26:49,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:26:49,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 11534336}
2022-05-12 22:26:49,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:49,822 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70778880}) to executor  for transfer request: 0.
2022-05-12 22:26:49,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:49,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) about to wait for the following futures []
2022-05-12 22:26:49,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) done waiting for dependent futures
2022-05-12 22:26:49,823 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70778880}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 70778880}
2022-05-12 22:26:49,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:50,516 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:26:50,517 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:50,517 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:26:50,517 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:26:50,517 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 14942208}
2022-05-12 22:26:50,518 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:50,938 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:26:50,938 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:50,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:26:50,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:26:50,939 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 5242880}
2022-05-12 22:26:50,939 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:53,768 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62390272}) to executor  for transfer request: 0.
2022-05-12 22:26:53,768 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:53,768 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) about to wait for the following futures []
2022-05-12 22:26:53,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) done waiting for dependent futures
2022-05-12 22:26:53,769 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62390272}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 62390272}
2022-05-12 22:26:53,769 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:54,820 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46399488}) to executor  for transfer request: 0.
2022-05-12 22:26:54,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:54,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) about to wait for the following futures []
2022-05-12 22:26:54,820 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) done waiting for dependent futures
2022-05-12 22:26:54,820 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46399488}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 46399488}
2022-05-12 22:26:54,820 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:55,402 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:26:55,403 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:55,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:26:55,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:26:55,403 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 1048576}
2022-05-12 22:26:55,403 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:57,627 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54788096}) to executor  for transfer request: 0.
2022-05-12 22:26:57,627 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:57,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) about to wait for the following futures []
2022-05-12 22:26:57,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) done waiting for dependent futures
2022-05-12 22:26:57,628 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54788096}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 54788096}
2022-05-12 22:26:57,628 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:58,461 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79953920}) to executor  for transfer request: 0.
2022-05-12 22:26:58,461 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:58,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) about to wait for the following futures []
2022-05-12 22:26:58,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) done waiting for dependent futures
2022-05-12 22:26:58,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79953920}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 79953920}
2022-05-12 22:26:58,462 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:58,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:26:58,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:58,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:26:58,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:26:58,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 6029312}
2022-05-12 22:26:58,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,675 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:27:01,676 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,676 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:27:01,676 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:27:01,676 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 19660800}
2022-05-12 22:27:01,677 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,923 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:27:01,923 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:27:01,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:27:01,924 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 25690112}
2022-05-12 22:27:01,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,955 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:27:01,955 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:27:01,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:27:01,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 19660800}
2022-05-12 22:27:01,956 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:02,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:27:02,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:02,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:27:02,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:27:02,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 22020096}
2022-05-12 22:27:02,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:02,952 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:27:02,952 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:02,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:27:02,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:27:02,953 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 14155776}
2022-05-12 22:27:02,953 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:04,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:27:04,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:04,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:27:04,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:27:04,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 11796480}
2022-05-12 22:27:04,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:04,146 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:27:04,146 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:04,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:27:04,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:27:04,146 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 20709376}
2022-05-12 22:27:04,147 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:04,749 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:27:04,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:04,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:27:04,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:27:04,750 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 26214400}
2022-05-12 22:27:04,750 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:05,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:27:05,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:05,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:27:05,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:27:05,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 5505024}
2022-05-12 22:27:05,828 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:06,819 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71041024}) to executor  for transfer request: 0.
2022-05-12 22:27:06,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:06,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) about to wait for the following futures []
2022-05-12 22:27:06,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) done waiting for dependent futures
2022-05-12 22:27:06,819 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71041024}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 71041024}
2022-05-12 22:27:06,819 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:07,960 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36700160}) to executor  for transfer request: 0.
2022-05-12 22:27:07,960 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:07,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) about to wait for the following futures []
2022-05-12 22:27:07,961 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) done waiting for dependent futures
2022-05-12 22:27:07,961 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36700160}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 36700160}
2022-05-12 22:27:07,961 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:09,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:27:09,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:09,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:27:09,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:27:09,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 1310720}
2022-05-12 22:27:09,221 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:10,524 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:27:10,525 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:10,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:27:10,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:27:10,525 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 6291456}
2022-05-12 22:27:10,526 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:11,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62652416}) to executor  for transfer request: 0.
2022-05-12 22:27:11,792 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:11,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) about to wait for the following futures []
2022-05-12 22:27:11,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) done waiting for dependent futures
2022-05-12 22:27:11,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62652416}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 62652416}
2022-05-12 22:27:11,793 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:12,421 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55050240}) to executor  for transfer request: 0.
2022-05-12 22:27:12,421 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:12,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) about to wait for the following futures []
2022-05-12 22:27:12,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) done waiting for dependent futures
2022-05-12 22:27:12,422 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55050240}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 55050240}
2022-05-12 22:27:12,422 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:12,491 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:27:12,491 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:12,491 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:27:12,492 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:27:12,492 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 11534336}
2022-05-12 22:27:12,492 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80216064}) to executor  for transfer request: 0.
2022-05-12 22:27:13,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) about to wait for the following futures []
2022-05-12 22:27:13,102 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) done waiting for dependent futures
2022-05-12 22:27:13,102 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80216064}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 80216064}
2022-05-12 22:27:13,103 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:13,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:27:13,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:13,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:27:13,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:27:13,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 15204352}
2022-05-12 22:27:13,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,821 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:27:14,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:14,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:27:14,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:27:14,821 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 2097152}
2022-05-12 22:27:14,821 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:27:14,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:14,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:27:14,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:27:14,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 14417920}
2022-05-12 22:27:14,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:15,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46661632}) to executor  for transfer request: 0.
2022-05-12 22:27:15,297 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:15,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) about to wait for the following futures []
2022-05-12 22:27:15,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) done waiting for dependent futures
2022-05-12 22:27:15,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46661632}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 46661632}
2022-05-12 22:27:15,298 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,847 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:27:17,847 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:27:17,847 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:27:17,847 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 26476544}
2022-05-12 22:27:17,847 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:18,054 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:27:18,054 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:18,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:27:18,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:27:18,055 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 22282240}
2022-05-12 22:27:18,055 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:18,843 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:27:18,843 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:18,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:27:18,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:27:18,844 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 25952256}
2022-05-12 22:27:18,844 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:19,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:27:19,289 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:19,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:27:19,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:27:19,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 20971520}
2022-05-12 22:27:19,290 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:19,431 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:27:19,432 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:19,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:27:19,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:27:19,433 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 5767168}
2022-05-12 22:27:19,433 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:22,828 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:27:22,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:22,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:27:22,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:27:22,829 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 6553600}
2022-05-12 22:27:22,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:23,145 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:27:23,146 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:23,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:27:23,146 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:27:23,146 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 12058624}
2022-05-12 22:27:23,147 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:23,544 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:27:23,544 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:23,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:27:23,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:27:23,545 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 1572864}
2022-05-12 22:27:23,545 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:25,720 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80478208}) to executor  for transfer request: 0.
2022-05-12 22:27:25,720 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:25,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) about to wait for the following futures []
2022-05-12 22:27:25,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) done waiting for dependent futures
2022-05-12 22:27:25,721 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80478208}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 80478208}
2022-05-12 22:27:25,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:27,060 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:27:27,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:27,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:27:27,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:27:27,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 15466496}
2022-05-12 22:27:27,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:27,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:27:27,324 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:27,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:27:27,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:27:27,324 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 22544384}
2022-05-12 22:27:27,324 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:27,499 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62914560}) to executor  for transfer request: 0.
2022-05-12 22:27:27,499 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:27,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) about to wait for the following futures []
2022-05-12 22:27:27,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) done waiting for dependent futures
2022-05-12 22:27:27,500 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62914560}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 62914560}
2022-05-12 22:27:27,500 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:27,724 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:27:27,724 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:27,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:27:27,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:27:27,725 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 14680064}
2022-05-12 22:27:27,726 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,272 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36962304}) to executor  for transfer request: 0.
2022-05-12 22:27:28,272 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) about to wait for the following futures []
2022-05-12 22:27:28,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) done waiting for dependent futures
2022-05-12 22:27:28,273 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36962304}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 36962304}
2022-05-12 22:27:28,273 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:29,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:27:29,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:29,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:27:29,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:27:29,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 19922944}
2022-05-12 22:27:29,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:31,411 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:27:31,412 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:31,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:27:31,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:27:31,413 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 6029312}
2022-05-12 22:27:31,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:31,469 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55312384}) to executor  for transfer request: 0.
2022-05-12 22:27:31,469 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:31,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) about to wait for the following futures []
2022-05-12 22:27:31,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) done waiting for dependent futures
2022-05-12 22:27:31,470 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55312384}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 55312384}
2022-05-12 22:27:31,470 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:32,779 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:27:32,780 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:32,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:27:32,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:27:32,780 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 21233664}
2022-05-12 22:27:32,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:32,799 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46923776}) to executor  for transfer request: 0.
2022-05-12 22:27:32,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:32,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) about to wait for the following futures []
2022-05-12 22:27:32,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) done waiting for dependent futures
2022-05-12 22:27:32,800 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46923776}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 46923776}
2022-05-12 22:27:32,800 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:33,536 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:27:33,536 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:33,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:27:33,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:27:33,537 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 6815744}
2022-05-12 22:27:33,537 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:33,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:27:33,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:33,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:27:33,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:27:33,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 1835008}
2022-05-12 22:27:33,640 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:36,480 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:27:36,480 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:36,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:27:36,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:27:36,481 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 26214400}
2022-05-12 22:27:36,481 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:36,839 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71303168}) to executor  for transfer request: 0.
2022-05-12 22:27:36,839 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:36,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) about to wait for the following futures []
2022-05-12 22:27:36,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) done waiting for dependent futures
2022-05-12 22:27:36,839 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71303168}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 71303168}
2022-05-12 22:27:36,840 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:36,950 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:27:36,950 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:36,950 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:27:36,950 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:27:36,951 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 19922944}
2022-05-12 22:27:36,951 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:38,349 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63176704}) to executor  for transfer request: 0.
2022-05-12 22:27:38,349 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:38,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) about to wait for the following futures []
2022-05-12 22:27:38,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) done waiting for dependent futures
2022-05-12 22:27:38,350 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63176704}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 63176704}
2022-05-12 22:27:38,350 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:39,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:27:39,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:39,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:27:39,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:27:39,994 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 12320768}
2022-05-12 22:27:39,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:27:40,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:27:40,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:27:40,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 14942208}
2022-05-12 22:27:40,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80740352}) to executor  for transfer request: 0.
2022-05-12 22:27:40,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) about to wait for the following futures []
2022-05-12 22:27:40,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) done waiting for dependent futures
2022-05-12 22:27:40,424 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80740352}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 80740352}
2022-05-12 22:27:40,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,825 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:27:41,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,826 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:27:41,826 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:27:41,826 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 22806528}
2022-05-12 22:27:41,827 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,988 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:27:41,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:27:41,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:27:41,989 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 6291456}
2022-05-12 22:27:41,989 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:43,117 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:27:43,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:43,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:27:43,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:27:43,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 2097152}
2022-05-12 22:27:43,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,446 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55574528}) to executor  for transfer request: 0.
2022-05-12 22:27:45,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:45,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) about to wait for the following futures []
2022-05-12 22:27:45,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) done waiting for dependent futures
2022-05-12 22:27:45,447 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55574528}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 55574528}
2022-05-12 22:27:45,447 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:47,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:27:47,875 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:47,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:27:47,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:27:47,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 21495808}
2022-05-12 22:27:47,876 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:48,108 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:27:48,108 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:48,108 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:27:48,108 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:27:48,108 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 15728640}
2022-05-12 22:27:48,108 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:49,891 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63438848}) to executor  for transfer request: 0.
2022-05-12 22:27:49,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:49,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) about to wait for the following futures []
2022-05-12 22:27:49,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) done waiting for dependent futures
2022-05-12 22:27:49,891 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63438848}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 63438848}
2022-05-12 22:27:49,891 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:50,120 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:27:50,120 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:50,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:27:50,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:27:50,121 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 7077888}
2022-05-12 22:27:50,121 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:50,888 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47185920}) to executor  for transfer request: 0.
2022-05-12 22:27:50,889 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:50,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) about to wait for the following futures []
2022-05-12 22:27:50,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) done waiting for dependent futures
2022-05-12 22:27:50,889 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47185920}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 47185920}
2022-05-12 22:27:50,889 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:51,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81002496}) to executor  for transfer request: 0.
2022-05-12 22:27:51,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:51,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) about to wait for the following futures []
2022-05-12 22:27:51,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) done waiting for dependent futures
2022-05-12 22:27:51,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81002496}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 81002496}
2022-05-12 22:27:51,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:51,399 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:27:51,399 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:51,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:27:51,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:27:51,400 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 20185088}
2022-05-12 22:27:51,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:52,621 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:27:52,621 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:52,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:27:52,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:27:52,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 15204352}
2022-05-12 22:27:52,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:54,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37224448}) to executor  for transfer request: 0.
2022-05-12 22:27:54,466 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:54,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) about to wait for the following futures []
2022-05-12 22:27:54,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) done waiting for dependent futures
2022-05-12 22:27:54,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37224448}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 37224448}
2022-05-12 22:27:54,467 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:54,879 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:27:54,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:54,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:27:54,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:27:54,880 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 6553600}
2022-05-12 22:27:54,880 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,081 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:27:55,082 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:27:55,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:27:55,082 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 2359296}
2022-05-12 22:27:55,082 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:27:55,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,427 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:27:55,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:27:55,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 26476544}
2022-05-12 22:27:55,428 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:27:55,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:27:55,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:27:55,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 12582912}
2022-05-12 22:27:55,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:56,751 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:27:56,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:56,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:27:56,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:27:56,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 23068672}
2022-05-12 22:27:56,752 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:58,697 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:27:58,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:58,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:27:58,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:27:58,698 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 11796480}
2022-05-12 22:27:58,698 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:00,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55836672}) to executor  for transfer request: 0.
2022-05-12 22:28:00,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:00,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) about to wait for the following futures []
2022-05-12 22:28:00,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) done waiting for dependent futures
2022-05-12 22:28:00,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55836672}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 55836672}
2022-05-12 22:28:00,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:01,019 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:28:01,019 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:01,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:28:01,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:28:01,019 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 15466496}
2022-05-12 22:28:01,020 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:01,416 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71565312}) to executor  for transfer request: 0.
2022-05-12 22:28:01,416 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:01,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) about to wait for the following futures []
2022-05-12 22:28:01,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) done waiting for dependent futures
2022-05-12 22:28:01,417 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71565312}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 71565312}
2022-05-12 22:28:01,417 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:02,965 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81264640}) to executor  for transfer request: 0.
2022-05-12 22:28:02,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:02,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) about to wait for the following futures []
2022-05-12 22:28:02,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) done waiting for dependent futures
2022-05-12 22:28:02,966 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81264640}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 81264640}
2022-05-12 22:28:02,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:04,242 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63700992}) to executor  for transfer request: 0.
2022-05-12 22:28:04,242 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:04,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) about to wait for the following futures []
2022-05-12 22:28:04,242 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) done waiting for dependent futures
2022-05-12 22:28:04,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63700992}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 63700992}
2022-05-12 22:28:04,243 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:04,720 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:04,720 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:04,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:04,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:04,721 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 7340032}
2022-05-12 22:28:04,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37486592}) to executor  for transfer request: 0.
2022-05-12 22:28:05,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) about to wait for the following futures []
2022-05-12 22:28:05,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) done waiting for dependent futures
2022-05-12 22:28:05,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37486592}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 37486592}
2022-05-12 22:28:05,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,634 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:28:05,634 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,635 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:28:05,635 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:28:05,635 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 20185088}
2022-05-12 22:28:05,635 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:06,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47448064}) to executor  for transfer request: 0.
2022-05-12 22:28:06,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:06,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) about to wait for the following futures []
2022-05-12 22:28:06,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) done waiting for dependent futures
2022-05-12 22:28:06,365 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47448064}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 47448064}
2022-05-12 22:28:06,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:06,598 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:28:06,598 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:06,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:28:06,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:28:06,599 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 15990784}
2022-05-12 22:28:06,599 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:07,249 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:28:07,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:07,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:28:07,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:28:07,250 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 21757952}
2022-05-12 22:28:07,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:07,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:28:07,471 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:07,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:28:07,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:28:07,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 20447232}
2022-05-12 22:28:07,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:07,894 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:28:07,894 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:07,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:28:07,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:28:07,895 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 6815744}
2022-05-12 22:28:07,895 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,344 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:28:08,344 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:08,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:28:08,344 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:28:08,344 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 25690112}
2022-05-12 22:28:08,345 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:10,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:28:10,047 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:10,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:28:10,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:28:10,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 23330816}
2022-05-12 22:28:10,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:10,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:28:10,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:10,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:28:10,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:28:10,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 12845056}
2022-05-12 22:28:10,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:11,033 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:28:11,033 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:11,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:28:11,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:28:11,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 15728640}
2022-05-12 22:28:11,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:11,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:28:11,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:11,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:28:11,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:28:11,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 2621440}
2022-05-12 22:28:11,811 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:11,848 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:28:11,848 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:11,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:28:11,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:28:11,849 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 26738688}
2022-05-12 22:28:11,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:28:12,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:12,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:28:12,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:28:12,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 2359296}
2022-05-12 22:28:12,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:15,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56098816}) to executor  for transfer request: 0.
2022-05-12 22:28:15,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:15,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) about to wait for the following futures []
2022-05-12 22:28:15,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) done waiting for dependent futures
2022-05-12 22:28:15,371 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56098816}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 56098816}
2022-05-12 22:28:15,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,554 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81526784}) to executor  for transfer request: 0.
2022-05-12 22:28:16,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) about to wait for the following futures []
2022-05-12 22:28:16,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) done waiting for dependent futures
2022-05-12 22:28:16,554 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81526784}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 81526784}
2022-05-12 22:28:16,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:28:16,990 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:28:16,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:28:16,990 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 7077888}
2022-05-12 22:28:16,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:17,699 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:28:17,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:17,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:28:17,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:28:17,700 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 7602176}
2022-05-12 22:28:17,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,193 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63963136}) to executor  for transfer request: 0.
2022-05-12 22:28:19,193 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) about to wait for the following futures []
2022-05-12 22:28:19,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) done waiting for dependent futures
2022-05-12 22:28:19,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63963136}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 63963136}
2022-05-12 22:28:19,194 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:21,128 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:28:21,128 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:21,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:28:21,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:28:21,129 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 15990784}
2022-05-12 22:28:21,129 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:21,156 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:28:21,156 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:21,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:28:21,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:28:21,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 20709376}
2022-05-12 22:28:21,157 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:28:22,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:22,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:28:22,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:28:22,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 22020096}
2022-05-12 22:28:22,204 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:24,476 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:28:24,476 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:24,476 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:28:24,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:28:24,477 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 7864320}
2022-05-12 22:28:24,477 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:28:25,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:28:25,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:28:25,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 23592960}
2022-05-12 22:28:25,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:26,013 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:28:26,013 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:26,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:28:26,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:28:26,014 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 13107200}
2022-05-12 22:28:26,014 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:27,130 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:28:27,130 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:27,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:28:27,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:28:27,130 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 2883584}
2022-05-12 22:28:27,131 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:28,195 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:28,195 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:28,196 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:28,196 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:28,196 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 7340032}
2022-05-12 22:28:28,196 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:28,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:28:28,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:28,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:28:28,204 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:28:28,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 20971520}
2022-05-12 22:28:28,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:28,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:28:28,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:28,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:28:28,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:28:28,365 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 16252928}
2022-05-12 22:28:28,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:29,667 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56360960}) to executor  for transfer request: 0.
2022-05-12 22:28:29,668 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:29,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) about to wait for the following futures []
2022-05-12 22:28:29,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) done waiting for dependent futures
2022-05-12 22:28:29,668 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56360960}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 56360960}
2022-05-12 22:28:29,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:32,882 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64225280}) to executor  for transfer request: 0.
2022-05-12 22:28:32,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:32,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) about to wait for the following futures []
2022-05-12 22:28:32,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) done waiting for dependent futures
2022-05-12 22:28:32,883 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64225280}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 64225280}
2022-05-12 22:28:32,883 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:33,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81788928}) to executor  for transfer request: 0.
2022-05-12 22:28:33,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:33,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) about to wait for the following futures []
2022-05-12 22:28:33,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) done waiting for dependent futures
2022-05-12 22:28:33,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81788928}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 81788928}
2022-05-12 22:28:33,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:33,623 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:28:33,623 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:33,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:28:33,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:28:33,623 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 7602176}
2022-05-12 22:28:33,624 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,047 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:28:35,047 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:28:35,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:28:35,048 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 22282240}
2022-05-12 22:28:35,048 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:28:35,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:28:35,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:28:35,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 8126464}
2022-05-12 22:28:35,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,657 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:28:35,657 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:28:35,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:28:35,658 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 16252928}
2022-05-12 22:28:35,658 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,698 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:28:35,698 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:28:35,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:28:35,699 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 27000832}
2022-05-12 22:28:35,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:36,586 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:28:36,586 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:36,586 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:28:36,586 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:28:36,587 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 3145728}
2022-05-12 22:28:36,587 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:36,980 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:28:36,981 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:36,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:28:36,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:28:36,981 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 23855104}
2022-05-12 22:28:36,981 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:28:40,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:28:40,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:28:40,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 12058624}
2022-05-12 22:28:40,051 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:28:40,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:28:40,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:28:40,740 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 13369344}
2022-05-12 22:28:40,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:40,874 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56623104}) to executor  for transfer request: 0.
2022-05-12 22:28:40,874 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:40,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) about to wait for the following futures []
2022-05-12 22:28:40,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) done waiting for dependent futures
2022-05-12 22:28:40,875 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56623104}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 56623104}
2022-05-12 22:28:40,875 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:42,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:28:42,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:42,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:28:42,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:28:42,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 7864320}
2022-05-12 22:28:42,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:42,719 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:28:42,719 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:42,719 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:28:42,719 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:28:42,720 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 21233664}
2022-05-12 22:28:42,720 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:43,573 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64487424}) to executor  for transfer request: 0.
2022-05-12 22:28:43,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:43,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) about to wait for the following futures []
2022-05-12 22:28:43,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) done waiting for dependent futures
2022-05-12 22:28:43,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64487424}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 64487424}
2022-05-12 22:28:43,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:43,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71827456}) to executor  for transfer request: 0.
2022-05-12 22:28:43,643 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:43,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) about to wait for the following futures []
2022-05-12 22:28:43,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) done waiting for dependent futures
2022-05-12 22:28:43,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71827456}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 71827456}
2022-05-12 22:28:43,644 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,813 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:28:44,813 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:28:44,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:28:44,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 20447232}
2022-05-12 22:28:44,814 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:47,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:28:47,564 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:47,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:28:47,564 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:28:47,564 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 22544384}
2022-05-12 22:28:47,565 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:47,744 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:28:47,744 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:47,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:28:47,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:28:47,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 24117248}
2022-05-12 22:28:47,745 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:47,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37748736}) to executor  for transfer request: 0.
2022-05-12 22:28:47,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:47,939 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) about to wait for the following futures []
2022-05-12 22:28:47,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) done waiting for dependent futures
2022-05-12 22:28:47,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37748736}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 37748736}
2022-05-12 22:28:47,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,391 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82051072}) to executor  for transfer request: 0.
2022-05-12 22:28:48,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:48,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) about to wait for the following futures []
2022-05-12 22:28:48,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) done waiting for dependent futures
2022-05-12 22:28:48,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82051072}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 82051072}
2022-05-12 22:28:48,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,577 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:28:50,578 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:50,578 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:28:50,578 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:28:50,578 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 27262976}
2022-05-12 22:28:50,579 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,703 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:28:50,703 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:50,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:28:50,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:28:50,703 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 21495808}
2022-05-12 22:28:50,704 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:50,859 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:28:50,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:50,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:28:50,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:28:50,860 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 3407872}
2022-05-12 22:28:50,860 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:51,240 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:28:51,240 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:51,241 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:51,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:28:51,241 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) about to wait for the following futures []
2022-05-12 22:28:51,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:28:51,241 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) done waiting for dependent futures
2022-05-12 22:28:51,241 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 8126464}
2022-05-12 22:28:51,242 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=83886080-92274687'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 83886080, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:28:51,242 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:51,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:51,242 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:28:51,243 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:28:51,243 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=83886080-92274687', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:28:51,243 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:28:51,244 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:28:51,244 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:28:51,244 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:28:51,244 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:28:51,244 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=83886080-92274687
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222851Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:28:51,244 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222851Z
20220512/eu-central-1/s3/aws4_request
b807986e232628be5720df049aef7c180dd4fc5f2ac454137162cc4e1b9c4343
2022-05-12 22:28:51,244 botocore.auth DEBUG    Signature:
90d80e07c74abade094f6b9c00d890b5328d756ad958411856ca854588912c9d
2022-05-12 22:28:51,244 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:51,244 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:28:51,244 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:28:51,244 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:28:51,457 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:28:51,457 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '69e6xltYc/AsKDxA5fd5IDUoKNtH6XJPX+HaD5Zp3cT8A4IshjyuIgmh+iqSTgoavbwcMhqbNA8=', 'x-amz-request-id': '0403HCP0NR6RMNRY', 'Date': 'Thu, 12 May 2022 22:28:52 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 83886080-92274687/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:28:51,457 botocore.parsers DEBUG    Response body:

2022-05-12 22:28:51,458 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:28:51,459 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:28:51,459 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:28:51,502 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47710208}) to executor  for transfer request: 0.
2022-05-12 22:28:51,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:51,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) about to wait for the following futures []
2022-05-12 22:28:51,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) done waiting for dependent futures
2022-05-12 22:28:51,503 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47710208}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 47710208}
2022-05-12 22:28:51,503 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:52,161 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56885248}) to executor  for transfer request: 0.
2022-05-12 22:28:52,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:52,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) about to wait for the following futures []
2022-05-12 22:28:52,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) done waiting for dependent futures
2022-05-12 22:28:52,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56885248}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 56885248}
2022-05-12 22:28:52,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:54,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:28:54,527 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:54,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:54,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:28:54,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:28:54,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 16515072}
2022-05-12 22:28:54,528 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,492 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38010880}) to executor  for transfer request: 0.
2022-05-12 22:28:56,493 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) about to wait for the following futures []
2022-05-12 22:28:56,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) done waiting for dependent futures
2022-05-12 22:28:56,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38010880}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 38010880}
2022-05-12 22:28:56,494 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,824 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:28:56,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,824 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:28:56,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:28:56,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 16515072}
2022-05-12 22:28:56,826 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:56,952 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:28:56,952 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:56,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:28:56,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:28:56,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 13631488}
2022-05-12 22:28:56,953 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:28:57,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:28:57,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:28:57,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 21757952}
2022-05-12 22:28:57,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,123 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:28:57,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:28:57,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:28:57,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 2621440}
2022-05-12 22:28:57,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82313216}) to executor  for transfer request: 0.
2022-05-12 22:28:57,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) about to wait for the following futures []
2022-05-12 22:28:57,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) done waiting for dependent futures
2022-05-12 22:28:57,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82313216}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 82313216}
2022-05-12 22:28:57,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:58,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:28:58,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:58,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:28:58,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:28:58,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 24379392}
2022-05-12 22:28:58,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:00,348 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:29:00,348 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:00,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:29:00,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:29:00,348 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 22806528}
2022-05-12 22:29:00,349 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:01,437 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:29:01,438 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:01,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:29:01,438 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:29:01,438 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 25952256}
2022-05-12 22:29:01,439 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:01,900 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57147392}) to executor  for transfer request: 0.
2022-05-12 22:29:01,901 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:01,901 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) about to wait for the following futures []
2022-05-12 22:29:01,901 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) done waiting for dependent futures
2022-05-12 22:29:01,902 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57147392}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 57147392}
2022-05-12 22:29:01,902 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,151 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:29:02,151 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:02,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:29:02,152 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:29:02,152 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 3670016}
2022-05-12 22:29:02,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83886080}) to executor  for transfer request: 0.
2022-05-12 22:29:02,685 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:02,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) about to wait for the following futures []
2022-05-12 22:29:02,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) done waiting for dependent futures
2022-05-12 22:29:02,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83886080}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 83886080}
2022-05-12 22:29:02,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:04,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:29:04,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:04,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:29:04,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:29:04,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 22020096}
2022-05-12 22:29:04,202 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:05,262 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64749568}) to executor  for transfer request: 0.
2022-05-12 22:29:05,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:05,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) about to wait for the following futures []
2022-05-12 22:29:05,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) done waiting for dependent futures
2022-05-12 22:29:05,263 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64749568}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 64749568}
2022-05-12 22:29:05,263 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,451 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:29:07,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:29:07,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:29:07,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 27525120}
2022-05-12 22:29:07,452 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,799 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38273024}) to executor  for transfer request: 0.
2022-05-12 22:29:07,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) about to wait for the following futures []
2022-05-12 22:29:07,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) done waiting for dependent futures
2022-05-12 22:29:07,800 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38273024}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 38273024}
2022-05-12 22:29:07,801 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:08,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82575360}) to executor  for transfer request: 0.
2022-05-12 22:29:08,042 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:08,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) about to wait for the following futures []
2022-05-12 22:29:08,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) done waiting for dependent futures
2022-05-12 22:29:08,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82575360}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 82575360}
2022-05-12 22:29:08,043 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57409536}) to executor  for transfer request: 0.
2022-05-12 22:29:09,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) about to wait for the following futures []
2022-05-12 22:29:09,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) done waiting for dependent futures
2022-05-12 22:29:09,569 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57409536}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 57409536}
2022-05-12 22:29:09,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:11,378 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:29:11,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:11,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:29:11,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:29:11,379 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 24641536}
2022-05-12 22:29:11,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:11,822 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:29:11,822 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:11,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:29:11,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:29:11,823 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 13893632}
2022-05-12 22:29:11,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:12,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:29:12,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:12,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:29:12,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:29:12,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 22282240}
2022-05-12 22:29:12,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:12,818 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84148224}) to executor  for transfer request: 0.
2022-05-12 22:29:12,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:12,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) about to wait for the following futures []
2022-05-12 22:29:12,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) done waiting for dependent futures
2022-05-12 22:29:12,818 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84148224}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 84148224}
2022-05-12 22:29:12,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38535168}) to executor  for transfer request: 0.
2022-05-12 22:29:14,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) about to wait for the following futures []
2022-05-12 22:29:14,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) done waiting for dependent futures
2022-05-12 22:29:14,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38535168}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 38535168}
2022-05-12 22:29:14,296 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:15,451 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:29:15,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:15,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:29:15,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:29:15,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 23068672}
2022-05-12 22:29:15,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:16,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72089600}) to executor  for transfer request: 0.
2022-05-12 22:29:16,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:16,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) about to wait for the following futures []
2022-05-12 22:29:16,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) done waiting for dependent futures
2022-05-12 22:29:16,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72089600}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 72089600}
2022-05-12 22:29:16,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:16,581 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65011712}) to executor  for transfer request: 0.
2022-05-12 22:29:16,581 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:16,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) about to wait for the following futures []
2022-05-12 22:29:16,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) done waiting for dependent futures
2022-05-12 22:29:16,581 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65011712}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 65011712}
2022-05-12 22:29:16,582 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:17,517 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82837504}) to executor  for transfer request: 0.
2022-05-12 22:29:17,517 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:17,518 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) about to wait for the following futures []
2022-05-12 22:29:17,518 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) done waiting for dependent futures
2022-05-12 22:29:17,518 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82837504}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 82837504}
2022-05-12 22:29:17,518 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:18,033 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:29:18,033 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:18,033 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:29:18,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:29:18,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 3932160}
2022-05-12 22:29:18,034 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:18,523 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:29:18,524 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:18,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:29:18,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:29:18,524 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 22544384}
2022-05-12 22:29:18,524 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:19,285 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57671680}) to executor  for transfer request: 0.
2022-05-12 22:29:19,285 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:19,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) about to wait for the following futures []
2022-05-12 22:29:19,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) done waiting for dependent futures
2022-05-12 22:29:19,286 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57671680}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 57671680}
2022-05-12 22:29:19,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:19,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:29:19,618 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:19,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:29:19,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:29:19,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 20709376}
2022-05-12 22:29:19,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:20,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84410368}) to executor  for transfer request: 0.
2022-05-12 22:29:20,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:20,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) about to wait for the following futures []
2022-05-12 22:29:20,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) done waiting for dependent futures
2022-05-12 22:29:20,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84410368}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 84410368}
2022-05-12 22:29:20,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:20,102 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38797312}) to executor  for transfer request: 0.
2022-05-12 22:29:20,102 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:20,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) about to wait for the following futures []
2022-05-12 22:29:20,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) done waiting for dependent futures
2022-05-12 22:29:20,103 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38797312}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 38797312}
2022-05-12 22:29:20,103 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,065 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:29:21,065 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:21,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:29:21,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:29:21,066 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 14155776}
2022-05-12 22:29:21,066 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:23,494 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:29:23,494 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:23,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:29:23,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:29:23,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 27787264}
2022-05-12 22:29:23,495 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:24,421 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:29:24,421 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:24,422 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:24,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:29:24,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:29:24,422 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 24903680}
2022-05-12 22:29:24,422 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:26,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:29:26,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:26,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:29:26,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:29:26,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 22806528}
2022-05-12 22:29:26,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:26,933 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:29:26,933 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:26,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:29:26,933 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:29:26,933 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 23330816}
2022-05-12 22:29:26,933 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,224 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39059456}) to executor  for transfer request: 0.
2022-05-12 22:29:27,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:27,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) about to wait for the following futures []
2022-05-12 22:29:27,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) done waiting for dependent futures
2022-05-12 22:29:27,224 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39059456}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 39059456}
2022-05-12 22:29:27,224 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:28,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83099648}) to executor  for transfer request: 0.
2022-05-12 22:29:28,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:28,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) about to wait for the following futures []
2022-05-12 22:29:28,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) done waiting for dependent futures
2022-05-12 22:29:28,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83099648}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 83099648}
2022-05-12 22:29:28,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:28,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:29:28,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:28,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:29:28,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:29:28,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 12320768}
2022-05-12 22:29:28,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:30,884 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:29:30,884 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:30,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:29:30,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:29:30,885 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 4194304}
2022-05-12 22:29:30,885 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:32,670 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:29:32,670 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:32,670 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:29:32,671 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:29:32,671 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 14417920}
2022-05-12 22:29:32,671 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:32,688 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57933824}) to executor  for transfer request: 0.
2022-05-12 22:29:32,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:32,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) about to wait for the following futures []
2022-05-12 22:29:32,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) done waiting for dependent futures
2022-05-12 22:29:32,689 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57933824}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 57933824}
2022-05-12 22:29:32,689 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:33,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84672512}) to executor  for transfer request: 0.
2022-05-12 22:29:33,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:33,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) about to wait for the following futures []
2022-05-12 22:29:33,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) done waiting for dependent futures
2022-05-12 22:29:33,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84672512}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 84672512}
2022-05-12 22:29:33,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:33,478 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65273856}) to executor  for transfer request: 0.
2022-05-12 22:29:33,478 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:33,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) about to wait for the following futures []
2022-05-12 22:29:33,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) done waiting for dependent futures
2022-05-12 22:29:33,479 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65273856}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 65273856}
2022-05-12 22:29:33,479 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:35,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47972352}) to executor  for transfer request: 0.
2022-05-12 22:29:35,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:35,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) about to wait for the following futures []
2022-05-12 22:29:35,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) done waiting for dependent futures
2022-05-12 22:29:35,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47972352}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 47972352}
2022-05-12 22:29:35,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,821 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:29:37,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:29:37,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:29:37,823 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 26214400}
2022-05-12 22:29:37,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:38,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83361792}) to executor  for transfer request: 0.
2022-05-12 22:29:38,875 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:38,875 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) about to wait for the following futures []
2022-05-12 22:29:38,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) done waiting for dependent futures
2022-05-12 22:29:38,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83361792}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 83361792}
2022-05-12 22:29:38,876 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:38,951 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:29:38,951 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:38,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:29:38,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:29:38,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 28049408}
2022-05-12 22:29:38,952 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:39,006 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39321600}) to executor  for transfer request: 0.
2022-05-12 22:29:39,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:39,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) about to wait for the following futures []
2022-05-12 22:29:39,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) done waiting for dependent futures
2022-05-12 22:29:39,007 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39321600}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 39321600}
2022-05-12 22:29:39,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:39,588 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:29:39,588 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:39,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:29:39,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:29:39,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 23068672}
2022-05-12 22:29:39,589 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:40,369 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:29:40,369 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:40,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:29:40,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:29:40,370 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 4456448}
2022-05-12 22:29:40,370 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:40,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:29:40,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:40,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:29:40,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:29:40,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 23592960}
2022-05-12 22:29:40,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84934656}) to executor  for transfer request: 0.
2022-05-12 22:29:41,758 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) about to wait for the following futures []
2022-05-12 22:29:41,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) done waiting for dependent futures
2022-05-12 22:29:41,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84934656}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 84934656}
2022-05-12 22:29:41,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:42,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58195968}) to executor  for transfer request: 0.
2022-05-12 22:29:42,289 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:42,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) about to wait for the following futures []
2022-05-12 22:29:42,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) done waiting for dependent futures
2022-05-12 22:29:42,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58195968}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 58195968}
2022-05-12 22:29:42,290 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:44,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:29:44,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:44,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:29:44,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:29:44,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 2883584}
2022-05-12 22:29:44,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:45,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65536000}) to executor  for transfer request: 0.
2022-05-12 22:29:45,986 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:45,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) about to wait for the following futures []
2022-05-12 22:29:45,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) done waiting for dependent futures
2022-05-12 22:29:45,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65536000}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 65536000}
2022-05-12 22:29:45,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:46,713 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39583744}) to executor  for transfer request: 0.
2022-05-12 22:29:46,713 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:46,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) about to wait for the following futures []
2022-05-12 22:29:46,714 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) done waiting for dependent futures
2022-05-12 22:29:46,714 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39583744}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 39583744}
2022-05-12 22:29:46,714 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:47,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:29:47,405 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:47,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:29:47,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:29:47,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 4718592}
2022-05-12 22:29:47,406 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:48,091 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:29:48,092 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:48,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:29:48,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:29:48,092 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 14680064}
2022-05-12 22:29:48,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:48,559 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72351744}) to executor  for transfer request: 0.
2022-05-12 22:29:48,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:48,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) about to wait for the following futures []
2022-05-12 22:29:48,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) done waiting for dependent futures
2022-05-12 22:29:48,560 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72351744}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 72351744}
2022-05-12 22:29:48,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:49,511 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:29:49,511 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:49,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:49,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:29:49,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:29:49,512 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 26476544}
2022-05-12 22:29:49,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:50,864 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:29:50,864 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:50,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:29:50,865 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:29:50,865 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 28311552}
2022-05-12 22:29:50,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,006 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:29:51,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:29:51,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:29:51,007 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 23330816}
2022-05-12 22:29:51,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,054 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83623936}) to executor  for transfer request: 0.
2022-05-12 22:29:51,054 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,054 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,054 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) about to wait for the following futures []
2022-05-12 22:29:51,054 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) done waiting for dependent futures
2022-05-12 22:29:51,055 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=92274688-100663295'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 92274688, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:51,055 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:51,055 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:51,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) about to wait for the following futures []
2022-05-12 22:29:51,055 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:51,055 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) done waiting for dependent futures
2022-05-12 22:29:51,055 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:51,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83623936}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 83623936}
2022-05-12 22:29:51,056 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:51,056 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:51,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,056 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:51,057 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:29:51,057 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:51,057 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:51,057 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=92274688-100663295', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:51,057 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:51,057 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:51,057 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:51,057 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:51,057 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:51,057 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:51,058 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:29:51,058 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:29:51,058 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:51,058 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=92274688-100663295
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222951Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:51,058 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222951Z
20220512/eu-central-1/s3/aws4_request
e0db30b270fdc3158cd6ee00ababb54b6ca994dfae48fd1589e1d64156c452b4
2022-05-12 22:29:51,058 botocore.auth DEBUG    Signature:
6226ec93151e784d4434879bd93e0b63291995379e1ad27d5de310537f381d51
2022-05-12 22:29:51,058 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:51,059 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:51,059 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:51,059 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:51,229 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:51,230 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'tO6ySRYvEEmb6oHsDqJ/QShj1/4v9dPZjiZBKMUsjbMssW6BOVJG+SGMivc6Y6Xfo+rZ0QQe/ig=', 'x-amz-request-id': 'QB80WZK6ACKJY472', 'Date': 'Thu, 12 May 2022 22:29:52 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 92274688-100663295/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:51,230 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:51,231 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:51,231 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:51,231 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:51,628 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85196800}) to executor  for transfer request: 0.
2022-05-12 22:29:51,628 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) about to wait for the following futures []
2022-05-12 22:29:51,628 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) done waiting for dependent futures
2022-05-12 22:29:51,628 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85196800}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 85196800}
2022-05-12 22:29:51,629 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:53,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39845888}) to executor  for transfer request: 0.
2022-05-12 22:29:53,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:53,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) about to wait for the following futures []
2022-05-12 22:29:53,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) done waiting for dependent futures
2022-05-12 22:29:53,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39845888}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 39845888}
2022-05-12 22:29:53,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:53,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:29:53,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:53,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:29:53,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:29:53,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 23855104}
2022-05-12 22:29:53,793 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:29:55,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:55,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:29:55,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:29:55,068 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 20971520}
2022-05-12 22:29:55,069 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,551 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58458112}) to executor  for transfer request: 0.
2022-05-12 22:29:55,551 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:55,551 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) about to wait for the following futures []
2022-05-12 22:29:55,551 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) about to wait for the following futures []
2022-05-12 22:29:55,552 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) done waiting for dependent futures
2022-05-12 22:29:55,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) done waiting for dependent futures
2022-05-12 22:29:55,552 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=100663296-109051903'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 100663296, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:55,552 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58458112}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 58458112}
2022-05-12 22:29:55,552 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:55,553 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:55,553 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:55,553 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:55,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,553 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:55,553 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:55,554 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:55,554 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:29:55,554 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:55,554 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:55,554 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=100663296-109051903', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:55,554 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:55,554 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:55,554 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:55,554 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:55,554 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:55,555 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:55,555 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:29:55,555 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:29:55,555 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:55,555 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=100663296-109051903
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222955Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:55,555 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222955Z
20220512/eu-central-1/s3/aws4_request
af8eeade59a1a60c814e4aa35de66c4d088806439ec5e1954e3e99591cec48ed
2022-05-12 22:29:55,555 botocore.auth DEBUG    Signature:
d68c7294698822a2ed383c54a0204de56d403ea399d2b4d5b9158cd934c2fd90
2022-05-12 22:29:55,555 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:55,555 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:55,555 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:55,556 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:55,787 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:55,788 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Ur8qw7HcfFiCIpgCmX6z7O5eBluoQ28ohWVe2BNi4Bi4iQqMssCuv9Q3Re6XaIJ9HeNTSwXl5Xs=', 'x-amz-request-id': 'VTZ69VPHMWG19N61', 'Date': 'Thu, 12 May 2022 22:29:56 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 100663296-109051903/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:55,788 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:55,789 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:55,789 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:55,789 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:57,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85458944}) to executor  for transfer request: 0.
2022-05-12 22:29:57,637 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:57,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) about to wait for the following futures []
2022-05-12 22:29:57,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) done waiting for dependent futures
2022-05-12 22:29:57,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85458944}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 85458944}
2022-05-12 22:29:57,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:58,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:29:58,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:58,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:29:58,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:29:58,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 23592960}
2022-05-12 22:29:58,835 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:30:00,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:30:00,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:30:00,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 4980736}
2022-05-12 22:30:00,045 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,017 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:30:02,017 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:30:02,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:30:02,018 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 14942208}
2022-05-12 22:30:02,018 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:03,556 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:30:03,556 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:03,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:30:03,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:30:03,557 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 28573696}
2022-05-12 22:30:03,557 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:04,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65798144}) to executor  for transfer request: 0.
2022-05-12 22:30:04,454 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:04,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) about to wait for the following futures []
2022-05-12 22:30:04,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) done waiting for dependent futures
2022-05-12 22:30:04,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65798144}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 65798144}
2022-05-12 22:30:04,455 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:05,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40108032}) to executor  for transfer request: 0.
2022-05-12 22:30:05,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:05,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) about to wait for the following futures []
2022-05-12 22:30:05,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) done waiting for dependent futures
2022-05-12 22:30:05,242 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40108032}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 40108032}
2022-05-12 22:30:05,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:05,434 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48234496}) to executor  for transfer request: 0.
2022-05-12 22:30:05,434 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:05,435 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) about to wait for the following futures []
2022-05-12 22:30:05,435 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) done waiting for dependent futures
2022-05-12 22:30:05,435 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48234496}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 48234496}
2022-05-12 22:30:05,435 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:05,806 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92274688}) to executor  for transfer request: 0.
2022-05-12 22:30:05,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:05,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) about to wait for the following futures []
2022-05-12 22:30:05,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) done waiting for dependent futures
2022-05-12 22:30:05,806 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92274688}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 92274688}
2022-05-12 22:30:05,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:08,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:30:08,203 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:08,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:30:08,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:30:08,204 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 5242880}
2022-05-12 22:30:08,204 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:09,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:30:09,138 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:09,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:30:09,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:30:09,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 23855104}
2022-05-12 22:30:09,139 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:09,192 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:30:09,192 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:09,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:30:09,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:30:09,193 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 15204352}
2022-05-12 22:30:09,193 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:09,299 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:30:09,299 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:09,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:30:09,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:30:09,300 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 24117248}
2022-05-12 22:30:09,300 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:10,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85721088}) to executor  for transfer request: 0.
2022-05-12 22:30:10,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:10,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) about to wait for the following futures []
2022-05-12 22:30:10,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) done waiting for dependent futures
2022-05-12 22:30:10,036 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85721088}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 85721088}
2022-05-12 22:30:10,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:11,597 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100663296}) to executor  for transfer request: 0.
2022-05-12 22:30:11,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:11,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) about to wait for the following futures []
2022-05-12 22:30:11,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) done waiting for dependent futures
2022-05-12 22:30:11,598 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100663296}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 100663296}
2022-05-12 22:30:11,599 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:11,679 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:30:11,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:11,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:30:11,680 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:30:11,680 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 21233664}
2022-05-12 22:30:11,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,070 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:30:13,070 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:30:13,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:30:13,071 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 12582912}
2022-05-12 22:30:13,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,663 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40370176}) to executor  for transfer request: 0.
2022-05-12 22:30:13,663 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:13,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) about to wait for the following futures []
2022-05-12 22:30:13,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) done waiting for dependent futures
2022-05-12 22:30:13,664 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40370176}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 40370176}
2022-05-12 22:30:13,664 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:16,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:30:16,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:16,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:30:16,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:30:16,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 24117248}
2022-05-12 22:30:16,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:17,958 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92536832}) to executor  for transfer request: 0.
2022-05-12 22:30:17,958 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:17,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) about to wait for the following futures []
2022-05-12 22:30:17,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) done waiting for dependent futures
2022-05-12 22:30:17,959 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92536832}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 92536832}
2022-05-12 22:30:17,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:18,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:30:18,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:18,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:30:18,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:30:18,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 15466496}
2022-05-12 22:30:18,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:18,711 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85983232}) to executor  for transfer request: 0.
2022-05-12 22:30:18,711 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:18,711 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) about to wait for the following futures []
2022-05-12 22:30:18,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) done waiting for dependent futures
2022-05-12 22:30:18,712 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85983232}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 85983232}
2022-05-12 22:30:18,712 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:19,748 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:30:19,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:19,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:30:19,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:30:19,749 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 5505024}
2022-05-12 22:30:19,750 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,884 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:30:20,884 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:30:20,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:30:20,884 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 28835840}
2022-05-12 22:30:20,884 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:21,975 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40632320}) to executor  for transfer request: 0.
2022-05-12 22:30:21,975 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:21,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) about to wait for the following futures []
2022-05-12 22:30:21,976 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) done waiting for dependent futures
2022-05-12 22:30:21,976 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40632320}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 40632320}
2022-05-12 22:30:21,976 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:22,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:30:22,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:22,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:30:22,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:30:22,569 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 24379392}
2022-05-12 22:30:22,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,040 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:30:24,040 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:30:24,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:30:24,041 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 24379392}
2022-05-12 22:30:24,041 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72613888}) to executor  for transfer request: 0.
2022-05-12 22:30:24,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) about to wait for the following futures []
2022-05-12 22:30:24,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) done waiting for dependent futures
2022-05-12 22:30:24,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72613888}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 72613888}
2022-05-12 22:30:24,117 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:30:24,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:30:24,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:30:24,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 15728640}
2022-05-12 22:30:24,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:25,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86245376}) to executor  for transfer request: 0.
2022-05-12 22:30:25,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:25,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) about to wait for the following futures []
2022-05-12 22:30:25,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) done waiting for dependent futures
2022-05-12 22:30:25,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86245376}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 86245376}
2022-05-12 22:30:25,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:26,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:30:26,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:26,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:30:26,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:30:26,252 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 21495808}
2022-05-12 22:30:26,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:27,017 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40894464}) to executor  for transfer request: 0.
2022-05-12 22:30:27,017 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:27,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) about to wait for the following futures []
2022-05-12 22:30:27,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) done waiting for dependent futures
2022-05-12 22:30:27,017 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40894464}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 40894464}
2022-05-12 22:30:27,017 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:28,439 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100925440}) to executor  for transfer request: 0.
2022-05-12 22:30:28,439 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:28,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) about to wait for the following futures []
2022-05-12 22:30:28,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) done waiting for dependent futures
2022-05-12 22:30:28,440 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100925440}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 100925440}
2022-05-12 22:30:28,440 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:29,006 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41156608}) to executor  for transfer request: 0.
2022-05-12 22:30:29,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:29,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) about to wait for the following futures []
2022-05-12 22:30:29,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) done waiting for dependent futures
2022-05-12 22:30:29,007 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41156608}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 41156608}
2022-05-12 22:30:29,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:29,676 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:30:29,677 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:29,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:30:29,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:30:29,677 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 5767168}
2022-05-12 22:30:29,677 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:31,141 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92798976}) to executor  for transfer request: 0.
2022-05-12 22:30:31,141 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:31,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) about to wait for the following futures []
2022-05-12 22:30:31,142 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) done waiting for dependent futures
2022-05-12 22:30:31,142 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92798976}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 92798976}
2022-05-12 22:30:31,142 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:35,240 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:30:35,240 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:35,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:30:35,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:30:35,240 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 24641536}
2022-05-12 22:30:35,241 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86507520}) to executor  for transfer request: 0.
2022-05-12 22:30:36,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) about to wait for the following futures []
2022-05-12 22:30:36,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) done waiting for dependent futures
2022-05-12 22:30:36,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86507520}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 86507520}
2022-05-12 22:30:36,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,762 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:30:36,762 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:30:36,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:30:36,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 29097984}
2022-05-12 22:30:36,763 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,062 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:30:39,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,063 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:30:39,063 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:30:39,063 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 21757952}
2022-05-12 22:30:39,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,193 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:30:39,193 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:30:39,193 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:30:39,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 15990784}
2022-05-12 22:30:39,194 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:41,812 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41418752}) to executor  for transfer request: 0.
2022-05-12 22:30:41,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:41,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) about to wait for the following futures []
2022-05-12 22:30:41,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) done waiting for dependent futures
2022-05-12 22:30:41,813 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41418752}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 41418752}
2022-05-12 22:30:41,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:30:43,059 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:30:43,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:30:43,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 29360128}
2022-05-12 22:30:43,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,244 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:30:43,244 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:30:43,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:30:43,245 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 3145728}
2022-05-12 22:30:43,245 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,667 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:30:43,668 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,668 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:30:43,668 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:30:43,669 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:30:43,669 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 24903680}
2022-05-12 22:30:43,669 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,669 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:30:43,670 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:30:43,670 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:30:43,670 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66060288}) to executor  for transfer request: 0.
2022-05-12 22:30:43,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) about to wait for the following futures []
2022-05-12 22:30:43,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) done waiting for dependent futures
2022-05-12 22:30:43,994 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66060288}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 66060288}
2022-05-12 22:30:43,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:44,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:30:44,195 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:30:44,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:30:44,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 6029312}
2022-05-12 22:30:44,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:45,624 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86769664}) to executor  for transfer request: 0.
2022-05-12 22:30:45,624 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:45,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) about to wait for the following futures []
2022-05-12 22:30:45,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) done waiting for dependent futures
2022-05-12 22:30:45,625 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86769664}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 86769664}
2022-05-12 22:30:45,625 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:45,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:30:45,809 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:45,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:30:45,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:30:45,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 12845056}
2022-05-12 22:30:45,810 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:46,434 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:30:46,435 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:46,435 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:30:46,435 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:30:46,435 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 16252928}
2022-05-12 22:30:46,436 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:47,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:30:47,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:47,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:30:47,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:30:47,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 22020096}
2022-05-12 22:30:47,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,361 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48496640}) to executor  for transfer request: 0.
2022-05-12 22:30:49,362 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) about to wait for the following futures []
2022-05-12 22:30:49,362 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) done waiting for dependent futures
2022-05-12 22:30:49,362 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48496640}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 48496640}
2022-05-12 22:30:49,363 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,571 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93061120}) to executor  for transfer request: 0.
2022-05-12 22:30:49,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) about to wait for the following futures []
2022-05-12 22:30:49,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) done waiting for dependent futures
2022-05-12 22:30:49,572 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93061120}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 93061120}
2022-05-12 22:30:49,573 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,595 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:30:49,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:30:49,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:30:49,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 24641536}
2022-05-12 22:30:49,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:51,979 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:30:51,979 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:51,980 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:30:51,980 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:30:51,980 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 6291456}
2022-05-12 22:30:51,980 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:53,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87031808}) to executor  for transfer request: 0.
2022-05-12 22:30:53,514 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:53,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) about to wait for the following futures []
2022-05-12 22:30:53,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) done waiting for dependent futures
2022-05-12 22:30:53,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87031808}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 87031808}
2022-05-12 22:30:53,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:53,683 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:30:53,683 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:53,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:30:53,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:30:53,684 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 22282240}
2022-05-12 22:30:53,684 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:54,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41680896}) to executor  for transfer request: 0.
2022-05-12 22:30:54,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:54,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:54,904 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) about to wait for the following futures []
2022-05-12 22:30:54,904 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) done waiting for dependent futures
2022-05-12 22:30:54,904 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=109051904-117440511'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 109051904, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:30:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:54,904 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:54,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) about to wait for the following futures []
2022-05-12 22:30:54,905 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:54,905 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) done waiting for dependent futures
2022-05-12 22:30:54,905 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:54,905 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41680896}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 41680896}
2022-05-12 22:30:54,905 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:54,906 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:30:54,906 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:54,906 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:30:54,906 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:54,906 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:54,906 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=109051904-117440511', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:30:54,907 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:54,907 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:30:54,907 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:54,907 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:54,907 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:30:54,907 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:30:54,907 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:30:54,907 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:30:54,907 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:30:54,907 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=109051904-117440511
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223054Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:30:54,907 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223054Z
20220512/eu-central-1/s3/aws4_request
8665e7ec70495d01967a3e8e4b90216c118abbefc97fe5a376550769e9417176
2022-05-12 22:30:54,907 botocore.auth DEBUG    Signature:
dd1d1a1e56538ec261c95bc43baf309473831e066897855507e90608eb1db28d
2022-05-12 22:30:54,907 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:54,907 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:54,907 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:30:54,908 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:30:55,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:30:55,024 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:30:55,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:30:55,025 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 29622272}
2022-05-12 22:30:55,025 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,149 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72876032}) to executor  for transfer request: 0.
2022-05-12 22:30:55,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:55,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) about to wait for the following futures []
2022-05-12 22:30:55,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) done waiting for dependent futures
2022-05-12 22:30:55,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72876032}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 72876032}
2022-05-12 22:30:55,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:55,840 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:30:55,840 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'EBK0I+c7gUPd5njJu5T8AolRa/WKV6y9DFMd3pa8sWl1elUaG0Eln3I3P4cg4iTNNWWNTQdoT/0=', 'x-amz-request-id': 'XSWXGGQ4JFY4RDF4', 'Date': 'Thu, 12 May 2022 22:30:55 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 109051904-117440511/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:30:55,840 botocore.parsers DEBUG    Response body:

2022-05-12 22:30:55,841 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:30:55,841 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:30:55,841 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:30:56,408 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:30:56,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:30:56,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:30:56,409 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 13107200}
2022-05-12 22:30:56,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,595 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:30:56,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:30:56,596 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) about to wait for the following futures []
2022-05-12 22:30:56,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:30:56,597 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) done waiting for dependent futures
2022-05-12 22:30:56,597 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 16515072}
2022-05-12 22:30:56,597 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=117440512-125829119'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 117440512, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:30:56,597 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:56,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,598 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:56,598 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:56,598 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:56,598 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:56,598 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:56,598 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:30:56,598 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:30:56,599 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:56,599 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:56,599 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=117440512-125829119', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:30:56,599 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:56,599 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:30:56,599 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:56,599 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:56,599 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:30:56,599 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:30:56,599 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:30:56,600 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:30:56,600 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:30:56,600 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=117440512-125829119
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223056Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:30:56,600 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223056Z
20220512/eu-central-1/s3/aws4_request
b7bc8afc1e6505a6b3eff0708fefcde6f424a77a0e59b96da5e3cb50b77d1058
2022-05-12 22:30:56,600 botocore.auth DEBUG    Signature:
f175ca97d7972854630a88c2413203bc1dd64b3ca04ee7a6f01f5527beed98f0
2022-05-12 22:30:56,600 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:56,600 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:56,601 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:30:56,601 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:30:56,601 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:30:57,421 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66322432}) to executor  for transfer request: 0.
2022-05-12 22:30:57,421 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:57,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) about to wait for the following futures []
2022-05-12 22:30:57,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) done waiting for dependent futures
2022-05-12 22:30:57,422 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66322432}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 66322432}
2022-05-12 22:30:57,422 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:57,694 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:30:57,695 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Er4JIFKsqtLDKbV1ncUlQXfJwB7VjT2voD2GXUpYxddV1C9NTz6pVEg+ILy/l9PwzDHdweN+vBg=', 'x-amz-request-id': 'NKGXQT0JPZXXSQQE', 'Date': 'Thu, 12 May 2022 22:30:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 117440512-125829119/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:30:57,695 botocore.parsers DEBUG    Response body:

2022-05-12 22:30:57,696 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:30:57,696 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:30:57,696 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:00,666 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109051904}) to executor  for transfer request: 0.
2022-05-12 22:31:00,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:00,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) about to wait for the following futures []
2022-05-12 22:31:00,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) done waiting for dependent futures
2022-05-12 22:31:00,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109051904}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 109051904}
2022-05-12 22:31:00,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:01,266 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:31:01,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:01,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:31:01,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:31:01,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 22544384}
2022-05-12 22:31:01,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:01,392 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87293952}) to executor  for transfer request: 0.
2022-05-12 22:31:01,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:01,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) about to wait for the following futures []
2022-05-12 22:31:01,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) done waiting for dependent futures
2022-05-12 22:31:01,393 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87293952}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 87293952}
2022-05-12 22:31:01,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:01,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:31:01,920 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:01,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:31:01,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:31:01,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 3407872}
2022-05-12 22:31:01,921 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:05,096 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:31:05,096 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:05,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:31:05,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:31:05,096 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 29884416}
2022-05-12 22:31:05,097 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:05,513 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117440512}) to executor  for transfer request: 0.
2022-05-12 22:31:05,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:05,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) about to wait for the following futures []
2022-05-12 22:31:05,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) done waiting for dependent futures
2022-05-12 22:31:05,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117440512}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 117440512}
2022-05-12 22:31:05,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:06,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109314048}) to executor  for transfer request: 0.
2022-05-12 22:31:06,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:06,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) about to wait for the following futures []
2022-05-12 22:31:06,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) done waiting for dependent futures
2022-05-12 22:31:06,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109314048}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 109314048}
2022-05-12 22:31:06,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:08,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87556096}) to executor  for transfer request: 0.
2022-05-12 22:31:08,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:08,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) about to wait for the following futures []
2022-05-12 22:31:08,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) done waiting for dependent futures
2022-05-12 22:31:08,045 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87556096}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 87556096}
2022-05-12 22:31:08,045 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:08,052 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:31:08,053 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:08,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:31:08,053 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:31:08,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 6553600}
2022-05-12 22:31:08,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:08,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:31:08,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:08,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:31:08,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:31:08,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 22806528}
2022-05-12 22:31:08,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:08,385 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93323264}) to executor  for transfer request: 0.
2022-05-12 22:31:08,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:08,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) about to wait for the following futures []
2022-05-12 22:31:08,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) done waiting for dependent futures
2022-05-12 22:31:08,386 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93323264}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 93323264}
2022-05-12 22:31:08,386 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,435 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:31:09,435 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:31:09,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:31:09,436 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 13369344}
2022-05-12 22:31:09,436 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:12,651 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87818240}) to executor  for transfer request: 0.
2022-05-12 22:31:12,651 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:12,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) about to wait for the following futures []
2022-05-12 22:31:12,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) done waiting for dependent futures
2022-05-12 22:31:12,652 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87818240}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 87818240}
2022-05-12 22:31:12,652 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:14,402 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66584576}) to executor  for transfer request: 0.
2022-05-12 22:31:14,402 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:14,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) about to wait for the following futures []
2022-05-12 22:31:14,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) done waiting for dependent futures
2022-05-12 22:31:14,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66584576}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 66584576}
2022-05-12 22:31:14,403 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,108 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109576192}) to executor  for transfer request: 0.
2022-05-12 22:31:16,108 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) about to wait for the following futures []
2022-05-12 22:31:16,109 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) done waiting for dependent futures
2022-05-12 22:31:16,109 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109576192}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 109576192}
2022-05-12 22:31:16,109 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:31:16,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:31:16,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:31:16,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 30146560}
2022-05-12 22:31:16,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,363 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117702656}) to executor  for transfer request: 0.
2022-05-12 22:31:17,364 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) about to wait for the following futures []
2022-05-12 22:31:17,364 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) done waiting for dependent futures
2022-05-12 22:31:17,364 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117702656}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 117702656}
2022-05-12 22:31:17,365 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:18,664 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:31:18,664 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:18,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:31:18,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:31:18,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 23068672}
2022-05-12 22:31:18,665 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,652 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:31:19,653 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:31:19,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:31:19,653 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 6815744}
2022-05-12 22:31:19,654 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73138176}) to executor  for transfer request: 0.
2022-05-12 22:31:19,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) about to wait for the following futures []
2022-05-12 22:31:19,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) done waiting for dependent futures
2022-05-12 22:31:19,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73138176}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 73138176}
2022-05-12 22:31:19,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:20,565 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:31:20,565 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:20,566 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:20,566 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) about to wait for the following futures []
2022-05-12 22:31:20,566 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) done waiting for dependent futures
2022-05-12 22:31:20,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:31:20,566 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=125829120-134217727'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 125829120, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:20,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:31:20,567 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:20,567 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 24903680}
2022-05-12 22:31:20,567 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:20,567 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:20,567 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:20,567 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:20,567 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:20,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:20,567 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:20,567 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:31:20,567 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:20,567 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:20,567 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=125829120-134217727', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:20,567 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:20,568 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:20,568 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:20,568 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:20,568 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:20,568 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:20,568 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:31:20,568 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:31:20,568 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:20,568 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=125829120-134217727
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223120Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:20,568 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223120Z
20220512/eu-central-1/s3/aws4_request
7376e926a9ee811588b3870c48f083c9d686a39778325a553f402d7151995643
2022-05-12 22:31:20,568 botocore.auth DEBUG    Signature:
730140236a9c1bbc63aa3a3a6f1e9c7ec43cf79874ec0f944a1e90b52b7d29c6
2022-05-12 22:31:20,568 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:20,568 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:20,568 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:20,568 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:20,569 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:31:21,603 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:31:21,603 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:21,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:31:21,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:31:21,603 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 13631488}
2022-05-12 22:31:21,604 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:22,716 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:31:22,716 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:22,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:31:22,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:31:22,717 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 3670016}
2022-05-12 22:31:22,717 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:22,813 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88080384}) to executor  for transfer request: 0.
2022-05-12 22:31:22,813 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:22,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) about to wait for the following futures []
2022-05-12 22:31:22,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) done waiting for dependent futures
2022-05-12 22:31:22,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88080384}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 88080384}
2022-05-12 22:31:22,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:24,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48758784}) to executor  for transfer request: 0.
2022-05-12 22:31:24,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:24,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) about to wait for the following futures []
2022-05-12 22:31:24,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) done waiting for dependent futures
2022-05-12 22:31:24,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48758784}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 48758784}
2022-05-12 22:31:24,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:25,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93585408}) to executor  for transfer request: 0.
2022-05-12 22:31:25,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:25,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) about to wait for the following futures []
2022-05-12 22:31:25,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) done waiting for dependent futures
2022-05-12 22:31:25,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93585408}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 93585408}
2022-05-12 22:31:25,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:26,189 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109838336}) to executor  for transfer request: 0.
2022-05-12 22:31:26,189 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:26,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) about to wait for the following futures []
2022-05-12 22:31:26,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) done waiting for dependent futures
2022-05-12 22:31:26,189 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109838336}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 109838336}
2022-05-12 22:31:26,190 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:26,449 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:26,450 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'fO57bZ9n6Uh/OdGkcbQ2JWrn3rsFake4OGV6YQFSkxRleZ1aQYdgLRsFYDEM49RqqYkRFE6HDQY=', 'x-amz-request-id': '132R4XPDG3GT3T2K', 'Date': 'Thu, 12 May 2022 22:31:27 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 125829120-134217727/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:31:26,450 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:26,451 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:26,451 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:26,451 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:27,031 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:31:27,031 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:27,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:31:27,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:31:27,032 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 23330816}
2022-05-12 22:31:27,032 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:28,205 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30408704}) to executor  for transfer request: 0.
2022-05-12 22:31:28,206 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:28,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) about to wait for the following futures []
2022-05-12 22:31:28,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) done waiting for dependent futures
2022-05-12 22:31:28,206 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30408704}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 30408704}
2022-05-12 22:31:28,207 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:31:28,207 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:28,207 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:28,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:31:28,207 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:31:28,207 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 7077888}
2022-05-12 22:31:28,207 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:31,911 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:31:31,911 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:31,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:31:31,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:31:31,911 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 13893632}
2022-05-12 22:31:31,912 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:32,582 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117964800}) to executor  for transfer request: 0.
2022-05-12 22:31:32,582 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:32,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) about to wait for the following futures []
2022-05-12 22:31:32,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) done waiting for dependent futures
2022-05-12 22:31:32,582 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117964800}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 117964800}
2022-05-12 22:31:32,583 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:32,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88342528}) to executor  for transfer request: 0.
2022-05-12 22:31:32,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:32,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) about to wait for the following futures []
2022-05-12 22:31:32,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) done waiting for dependent futures
2022-05-12 22:31:32,913 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88342528}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 88342528}
2022-05-12 22:31:32,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:33,780 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110100480}) to executor  for transfer request: 0.
2022-05-12 22:31:33,780 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:33,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) about to wait for the following futures []
2022-05-12 22:31:33,781 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) done waiting for dependent futures
2022-05-12 22:31:33,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110100480}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 110100480}
2022-05-12 22:31:33,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:36,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30670848}) to executor  for transfer request: 0.
2022-05-12 22:31:36,876 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:36,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) about to wait for the following futures []
2022-05-12 22:31:36,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) done waiting for dependent futures
2022-05-12 22:31:36,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30670848}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 30670848}
2022-05-12 22:31:36,877 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:38,378 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:31:38,379 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:38,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:31:38,379 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:31:38,379 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 23592960}
2022-05-12 22:31:38,380 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:38,931 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66846720}) to executor  for transfer request: 0.
2022-05-12 22:31:38,931 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:38,931 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:38,931 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) about to wait for the following futures []
2022-05-12 22:31:38,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) about to wait for the following futures []
2022-05-12 22:31:38,932 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) done waiting for dependent futures
2022-05-12 22:31:38,932 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) done waiting for dependent futures
2022-05-12 22:31:38,932 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=134217728-142606335'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 134217728, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:38,932 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66846720}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 66846720}
2022-05-12 22:31:38,933 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:38,933 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:38,933 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:38,933 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:38,933 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:38,934 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:38,934 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:38,934 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:38,934 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:31:38,934 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:38,934 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:38,934 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=134217728-142606335', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:38,935 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:38,935 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:38,935 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:38,935 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:38,935 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:38,935 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:38,935 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:31:38,935 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:31:38,935 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:38,936 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=134217728-142606335
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223138Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:38,936 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223138Z
20220512/eu-central-1/s3/aws4_request
c499680064776fc00493ad0e485aa72c9f8920cb28064aa8bdcaff53280b81a8
2022-05-12 22:31:38,936 botocore.auth DEBUG    Signature:
9c0ffdbfd1bda2633e4694a7fa5c5a578b8bb7c5a38e461b7e9621f00d094444
2022-05-12 22:31:38,936 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:38,936 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:38,936 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:38,937 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:38,937 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:31:39,368 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:31:39,368 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:39,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:31:39,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:31:39,369 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 3932160}
2022-05-12 22:31:39,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,225 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88604672}) to executor  for transfer request: 0.
2022-05-12 22:31:41,225 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) about to wait for the following futures []
2022-05-12 22:31:41,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) done waiting for dependent futures
2022-05-12 22:31:41,226 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88604672}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 88604672}
2022-05-12 22:31:41,226 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,554 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118226944}) to executor  for transfer request: 0.
2022-05-12 22:31:41,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) about to wait for the following futures []
2022-05-12 22:31:41,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) done waiting for dependent futures
2022-05-12 22:31:41,555 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118226944}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 118226944}
2022-05-12 22:31:41,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,772 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110362624}) to executor  for transfer request: 0.
2022-05-12 22:31:41,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) about to wait for the following futures []
2022-05-12 22:31:41,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) done waiting for dependent futures
2022-05-12 22:31:41,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110362624}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 110362624}
2022-05-12 22:31:41,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30932992}) to executor  for transfer request: 0.
2022-05-12 22:31:42,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) about to wait for the following futures []
2022-05-12 22:31:42,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) done waiting for dependent futures
2022-05-12 22:31:42,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30932992}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 30932992}
2022-05-12 22:31:42,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,837 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:42,837 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ewHCJpK7mf5s6WD3I9WfwjgrthTACpJRtoiURmY0/wEVcKwa4wSjRitJSo7PO9KGVIpU8r8+tbQ=', 'x-amz-request-id': '8H45F6G7G5TPSZCG', 'Date': 'Thu, 12 May 2022 22:31:43 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 134217728-142606335/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:31:42,837 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:42,838 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:42,838 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:42,838 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:43,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:31:43,797 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:43,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:31:43,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:31:43,797 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 23855104}
2022-05-12 22:31:43,798 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:44,183 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:31:44,183 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:44,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:31:44,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:31:44,184 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 14155776}
2022-05-12 22:31:44,184 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:47,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88866816}) to executor  for transfer request: 0.
2022-05-12 22:31:47,796 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:47,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) about to wait for the following futures []
2022-05-12 22:31:47,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) done waiting for dependent futures
2022-05-12 22:31:47,797 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88866816}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 88866816}
2022-05-12 22:31:47,797 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:48,518 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110624768}) to executor  for transfer request: 0.
2022-05-12 22:31:48,518 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:48,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) about to wait for the following futures []
2022-05-12 22:31:48,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) done waiting for dependent futures
2022-05-12 22:31:48,519 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110624768}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 110624768}
2022-05-12 22:31:48,519 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93847552}) to executor  for transfer request: 0.
2022-05-12 22:31:49,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) about to wait for the following futures []
2022-05-12 22:31:49,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) done waiting for dependent futures
2022-05-12 22:31:49,163 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93847552}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 93847552}
2022-05-12 22:31:49,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,307 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134217728}) to executor  for transfer request: 0.
2022-05-12 22:31:49,307 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) about to wait for the following futures []
2022-05-12 22:31:49,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) done waiting for dependent futures
2022-05-12 22:31:49,308 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134217728}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 134217728}
2022-05-12 22:31:49,308 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:50,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73400320}) to executor  for transfer request: 0.
2022-05-12 22:31:50,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:50,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) about to wait for the following futures []
2022-05-12 22:31:50,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) done waiting for dependent futures
2022-05-12 22:31:50,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73400320}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 73400320}
2022-05-12 22:31:50,463 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:50,697 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125829120}) to executor  for transfer request: 0.
2022-05-12 22:31:50,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:50,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) about to wait for the following futures []
2022-05-12 22:31:50,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) done waiting for dependent futures
2022-05-12 22:31:50,698 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125829120}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 125829120}
2022-05-12 22:31:50,698 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,793 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31195136}) to executor  for transfer request: 0.
2022-05-12 22:31:51,794 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) about to wait for the following futures []
2022-05-12 22:31:51,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) done waiting for dependent futures
2022-05-12 22:31:51,794 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31195136}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 31195136}
2022-05-12 22:31:51,795 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:52,158 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:31:52,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:52,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:31:52,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:31:52,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 4194304}
2022-05-12 22:31:52,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:52,308 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49020928}) to executor  for transfer request: 0.
2022-05-12 22:31:52,308 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:52,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) about to wait for the following futures []
2022-05-12 22:31:52,308 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) done waiting for dependent futures
2022-05-12 22:31:52,308 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49020928}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 49020928}
2022-05-12 22:31:52,309 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:52,562 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:31:52,562 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:52,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:31:52,562 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:31:52,563 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 24117248}
2022-05-12 22:31:52,563 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:55,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:31:55,165 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:55,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:31:55,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:31:55,165 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 14417920}
2022-05-12 22:31:55,165 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:55,540 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118489088}) to executor  for transfer request: 0.
2022-05-12 22:31:55,540 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:55,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) about to wait for the following futures []
2022-05-12 22:31:55,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) done waiting for dependent futures
2022-05-12 22:31:55,541 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118489088}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 118489088}
2022-05-12 22:31:55,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:55,608 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89128960}) to executor  for transfer request: 0.
2022-05-12 22:31:55,608 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:55,608 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) about to wait for the following futures []
2022-05-12 22:31:55,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) done waiting for dependent futures
2022-05-12 22:31:55,609 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89128960}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 89128960}
2022-05-12 22:31:55,609 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:56,314 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134479872}) to executor  for transfer request: 0.
2022-05-12 22:31:56,314 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:56,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) about to wait for the following futures []
2022-05-12 22:31:56,315 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) done waiting for dependent futures
2022-05-12 22:31:56,315 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134479872}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 134479872}
2022-05-12 22:31:56,315 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:57,825 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110886912}) to executor  for transfer request: 0.
2022-05-12 22:31:57,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:57,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) about to wait for the following futures []
2022-05-12 22:31:57,826 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) done waiting for dependent futures
2022-05-12 22:31:57,826 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110886912}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 110886912}
2022-05-12 22:31:57,826 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:58,178 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73662464}) to executor  for transfer request: 0.
2022-05-12 22:31:58,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:58,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) about to wait for the following futures []
2022-05-12 22:31:58,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) done waiting for dependent futures
2022-05-12 22:31:58,178 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73662464}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 73662464}
2022-05-12 22:31:58,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:58,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:31:58,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:58,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:31:58,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:31:58,569 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 7340032}
2022-05-12 22:31:58,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:59,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126091264}) to executor  for transfer request: 0.
2022-05-12 22:31:59,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:59,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) about to wait for the following futures []
2022-05-12 22:31:59,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) done waiting for dependent futures
2022-05-12 22:31:59,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126091264}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 126091264}
2022-05-12 22:31:59,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:59,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:31:59,929 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:59,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:31:59,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:31:59,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 24379392}
2022-05-12 22:31:59,929 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:00,203 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31457280}) to executor  for transfer request: 0.
2022-05-12 22:32:00,203 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:00,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) about to wait for the following futures []
2022-05-12 22:32:00,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) done waiting for dependent futures
2022-05-12 22:32:00,203 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31457280}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 31457280}
2022-05-12 22:32:00,204 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:01,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101187584}) to executor  for transfer request: 0.
2022-05-12 22:32:01,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:01,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) about to wait for the following futures []
2022-05-12 22:32:01,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) done waiting for dependent futures
2022-05-12 22:32:01,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101187584}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 101187584}
2022-05-12 22:32:01,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:02,973 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89391104}) to executor  for transfer request: 0.
2022-05-12 22:32:02,973 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:02,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) about to wait for the following futures []
2022-05-12 22:32:02,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) done waiting for dependent futures
2022-05-12 22:32:02,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89391104}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 89391104}
2022-05-12 22:32:02,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:03,513 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134742016}) to executor  for transfer request: 0.
2022-05-12 22:32:03,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:03,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) about to wait for the following futures []
2022-05-12 22:32:03,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) done waiting for dependent futures
2022-05-12 22:32:03,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134742016}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 134742016}
2022-05-12 22:32:03,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94109696}) to executor  for transfer request: 0.
2022-05-12 22:32:04,148 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) about to wait for the following futures []
2022-05-12 22:32:04,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) done waiting for dependent futures
2022-05-12 22:32:04,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94109696}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 94109696}
2022-05-12 22:32:04,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,737 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:32:04,737 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:32:04,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:32:04,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 14680064}
2022-05-12 22:32:04,738 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:06,031 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111149056}) to executor  for transfer request: 0.
2022-05-12 22:32:06,031 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:06,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) about to wait for the following futures []
2022-05-12 22:32:06,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) done waiting for dependent futures
2022-05-12 22:32:06,031 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111149056}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 111149056}
2022-05-12 22:32:06,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:06,421 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73924608}) to executor  for transfer request: 0.
2022-05-12 22:32:06,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:06,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) about to wait for the following futures []
2022-05-12 22:32:06,422 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) done waiting for dependent futures
2022-05-12 22:32:06,422 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73924608}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 73924608}
2022-05-12 22:32:06,422 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:06,671 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:32:06,671 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:06,672 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:32:06,672 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:32:06,672 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 4456448}
2022-05-12 22:32:06,672 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:07,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118751232}) to executor  for transfer request: 0.
2022-05-12 22:32:07,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:07,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) about to wait for the following futures []
2022-05-12 22:32:07,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) done waiting for dependent futures
2022-05-12 22:32:07,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118751232}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 118751232}
2022-05-12 22:32:07,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:07,804 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126353408}) to executor  for transfer request: 0.
2022-05-12 22:32:07,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:07,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) about to wait for the following futures []
2022-05-12 22:32:07,805 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) done waiting for dependent futures
2022-05-12 22:32:07,805 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126353408}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 126353408}
2022-05-12 22:32:07,805 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:08,754 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:32:08,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:08,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:32:08,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:32:08,755 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 24641536}
2022-05-12 22:32:08,755 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:09,799 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89653248}) to executor  for transfer request: 0.
2022-05-12 22:32:09,799 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:09,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) about to wait for the following futures []
2022-05-12 22:32:09,800 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) done waiting for dependent futures
2022-05-12 22:32:09,800 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89653248}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 89653248}
2022-05-12 22:32:09,800 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:10,610 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135004160}) to executor  for transfer request: 0.
2022-05-12 22:32:10,610 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:10,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) about to wait for the following futures []
2022-05-12 22:32:10,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) done waiting for dependent futures
2022-05-12 22:32:10,610 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135004160}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 135004160}
2022-05-12 22:32:10,611 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,253 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31719424}) to executor  for transfer request: 0.
2022-05-12 22:32:11,253 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) about to wait for the following futures []
2022-05-12 22:32:11,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) done waiting for dependent futures
2022-05-12 22:32:11,254 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31719424}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 31719424}
2022-05-12 22:32:11,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:12,438 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111411200}) to executor  for transfer request: 0.
2022-05-12 22:32:12,438 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:12,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) about to wait for the following futures []
2022-05-12 22:32:12,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) done waiting for dependent futures
2022-05-12 22:32:12,439 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111411200}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 111411200}
2022-05-12 22:32:12,439 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:14,729 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74186752}) to executor  for transfer request: 0.
2022-05-12 22:32:14,730 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:14,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) about to wait for the following futures []
2022-05-12 22:32:14,730 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) done waiting for dependent futures
2022-05-12 22:32:14,730 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74186752}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 74186752}
2022-05-12 22:32:14,731 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119013376}) to executor  for transfer request: 0.
2022-05-12 22:32:15,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:15,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) about to wait for the following futures []
2022-05-12 22:32:15,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) done waiting for dependent futures
2022-05-12 22:32:15,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119013376}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 119013376}
2022-05-12 22:32:15,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,609 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:32:15,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:15,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:32:15,610 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:32:15,610 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 14942208}
2022-05-12 22:32:15,610 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,672 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111673344}) to executor  for transfer request: 0.
2022-05-12 22:32:15,672 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:15,672 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) about to wait for the following futures []
2022-05-12 22:32:15,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) done waiting for dependent futures
2022-05-12 22:32:15,673 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111673344}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 111673344}
2022-05-12 22:32:15,673 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:16,399 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89915392}) to executor  for transfer request: 0.
2022-05-12 22:32:16,399 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:16,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) about to wait for the following futures []
2022-05-12 22:32:16,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) done waiting for dependent futures
2022-05-12 22:32:16,400 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89915392}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 89915392}
2022-05-12 22:32:16,400 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:17,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:32:17,527 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:17,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:17,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:32:17,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:32:17,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 24903680}
2022-05-12 22:32:17,528 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:17,794 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126615552}) to executor  for transfer request: 0.
2022-05-12 22:32:17,794 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:17,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) about to wait for the following futures []
2022-05-12 22:32:17,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) done waiting for dependent futures
2022-05-12 22:32:17,795 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126615552}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 126615552}
2022-05-12 22:32:17,795 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94371840}) to executor  for transfer request: 0.
2022-05-12 22:32:18,315 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) about to wait for the following futures []
2022-05-12 22:32:18,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) done waiting for dependent futures
2022-05-12 22:32:18,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94371840}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 94371840}
2022-05-12 22:32:18,316 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:18,472 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135266304}) to executor  for transfer request: 0.
2022-05-12 22:32:18,472 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:18,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) about to wait for the following futures []
2022-05-12 22:32:18,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) done waiting for dependent futures
2022-05-12 22:32:18,473 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135266304}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 135266304}
2022-05-12 22:32:18,474 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,847 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:32:20,848 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:20,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:32:20,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:32:20,848 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 4718592}
2022-05-12 22:32:20,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:21,057 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31981568}) to executor  for transfer request: 0.
2022-05-12 22:32:21,057 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:21,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) about to wait for the following futures []
2022-05-12 22:32:21,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) done waiting for dependent futures
2022-05-12 22:32:21,058 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31981568}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 31981568}
2022-05-12 22:32:21,058 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:21,852 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90177536}) to executor  for transfer request: 0.
2022-05-12 22:32:21,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:21,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) about to wait for the following futures []
2022-05-12 22:32:21,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) done waiting for dependent futures
2022-05-12 22:32:21,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90177536}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 90177536}
2022-05-12 22:32:21,854 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:22,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49283072}) to executor  for transfer request: 0.
2022-05-12 22:32:22,355 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:22,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) about to wait for the following futures []
2022-05-12 22:32:22,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) done waiting for dependent futures
2022-05-12 22:32:22,356 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49283072}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 49283072}
2022-05-12 22:32:22,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,439 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74448896}) to executor  for transfer request: 0.
2022-05-12 22:32:23,439 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) about to wait for the following futures []
2022-05-12 22:32:23,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) done waiting for dependent futures
2022-05-12 22:32:23,440 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74448896}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 74448896}
2022-05-12 22:32:23,441 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111935488}) to executor  for transfer request: 0.
2022-05-12 22:32:23,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) about to wait for the following futures []
2022-05-12 22:32:23,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) done waiting for dependent futures
2022-05-12 22:32:23,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111935488}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 111935488}
2022-05-12 22:32:23,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,918 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:32:23,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:32:23,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:32:23,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 15204352}
2022-05-12 22:32:23,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:24,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90439680}) to executor  for transfer request: 0.
2022-05-12 22:32:24,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:24,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) about to wait for the following futures []
2022-05-12 22:32:24,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) done waiting for dependent futures
2022-05-12 22:32:24,927 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90439680}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 90439680}
2022-05-12 22:32:24,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:25,270 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119275520}) to executor  for transfer request: 0.
2022-05-12 22:32:25,271 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:25,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) about to wait for the following futures []
2022-05-12 22:32:25,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) done waiting for dependent futures
2022-05-12 22:32:25,271 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119275520}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 119275520}
2022-05-12 22:32:25,272 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:26,602 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112197632}) to executor  for transfer request: 0.
2022-05-12 22:32:26,602 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:26,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) about to wait for the following futures []
2022-05-12 22:32:26,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) done waiting for dependent futures
2022-05-12 22:32:26,603 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112197632}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 112197632}
2022-05-12 22:32:26,603 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:27,342 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135528448}) to executor  for transfer request: 0.
2022-05-12 22:32:27,342 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:27,342 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) about to wait for the following futures []
2022-05-12 22:32:27,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) done waiting for dependent futures
2022-05-12 22:32:27,343 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135528448}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 135528448}
2022-05-12 22:32:27,343 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:28,776 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:32:28,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:28,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:32:28,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:32:28,776 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 7602176}
2022-05-12 22:32:28,777 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,224 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74711040}) to executor  for transfer request: 0.
2022-05-12 22:32:29,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,224 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) about to wait for the following futures []
2022-05-12 22:32:29,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) done waiting for dependent futures
2022-05-12 22:32:29,225 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74711040}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 74711040}
2022-05-12 22:32:29,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:30,017 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126877696}) to executor  for transfer request: 0.
2022-05-12 22:32:30,017 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:30,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) about to wait for the following futures []
2022-05-12 22:32:30,017 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) done waiting for dependent futures
2022-05-12 22:32:30,017 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126877696}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 126877696}
2022-05-12 22:32:30,018 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,368 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90701824}) to executor  for transfer request: 0.
2022-05-12 22:32:31,368 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:31,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) about to wait for the following futures []
2022-05-12 22:32:31,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) done waiting for dependent futures
2022-05-12 22:32:31,368 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90701824}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 90701824}
2022-05-12 22:32:31,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,543 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32243712}) to executor  for transfer request: 0.
2022-05-12 22:32:31,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:31,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) about to wait for the following futures []
2022-05-12 22:32:31,544 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) done waiting for dependent futures
2022-05-12 22:32:31,544 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32243712}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 32243712}
2022-05-12 22:32:31,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:31,880 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:32:31,880 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:31,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:32:31,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:32:31,881 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 4980736}
2022-05-12 22:32:31,881 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:32,988 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135790592}) to executor  for transfer request: 0.
2022-05-12 22:32:32,989 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:32,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) about to wait for the following futures []
2022-05-12 22:32:32,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) done waiting for dependent futures
2022-05-12 22:32:32,989 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135790592}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 135790592}
2022-05-12 22:32:32,990 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:33,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112459776}) to executor  for transfer request: 0.
2022-05-12 22:32:33,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:33,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) about to wait for the following futures []
2022-05-12 22:32:33,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) done waiting for dependent futures
2022-05-12 22:32:33,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112459776}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 112459776}
2022-05-12 22:32:33,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:34,007 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:32:34,007 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:34,008 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:32:34,008 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:32:34,008 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 15466496}
2022-05-12 22:32:34,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:36,788 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119537664}) to executor  for transfer request: 0.
2022-05-12 22:32:36,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:36,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) about to wait for the following futures []
2022-05-12 22:32:36,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) done waiting for dependent futures
2022-05-12 22:32:36,788 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119537664}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 119537664}
2022-05-12 22:32:36,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:37,451 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74973184}) to executor  for transfer request: 0.
2022-05-12 22:32:37,451 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:37,451 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) about to wait for the following futures []
2022-05-12 22:32:37,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) done waiting for dependent futures
2022-05-12 22:32:37,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74973184}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 74973184}
2022-05-12 22:32:37,452 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136052736}) to executor  for transfer request: 0.
2022-05-12 22:32:38,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) about to wait for the following futures []
2022-05-12 22:32:38,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) done waiting for dependent futures
2022-05-12 22:32:38,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136052736}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 136052736}
2022-05-12 22:32:38,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90963968}) to executor  for transfer request: 0.
2022-05-12 22:32:38,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) about to wait for the following futures []
2022-05-12 22:32:38,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) done waiting for dependent futures
2022-05-12 22:32:38,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90963968}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 90963968}
2022-05-12 22:32:38,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:39,432 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49545216}) to executor  for transfer request: 0.
2022-05-12 22:32:39,432 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:39,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) about to wait for the following futures []
2022-05-12 22:32:39,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) done waiting for dependent futures
2022-05-12 22:32:39,433 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49545216}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 49545216}
2022-05-12 22:32:39,434 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:40,269 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94633984}) to executor  for transfer request: 0.
2022-05-12 22:32:40,269 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:40,269 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) about to wait for the following futures []
2022-05-12 22:32:40,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) done waiting for dependent futures
2022-05-12 22:32:40,270 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94633984}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 94633984}
2022-05-12 22:32:40,270 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:40,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32505856}) to executor  for transfer request: 0.
2022-05-12 22:32:40,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:40,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) about to wait for the following futures []
2022-05-12 22:32:40,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) done waiting for dependent futures
2022-05-12 22:32:40,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32505856}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 32505856}
2022-05-12 22:32:40,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:41,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127139840}) to executor  for transfer request: 0.
2022-05-12 22:32:41,885 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:41,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) about to wait for the following futures []
2022-05-12 22:32:41,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) done waiting for dependent futures
2022-05-12 22:32:41,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127139840}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 127139840}
2022-05-12 22:32:41,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:42,448 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:32:42,449 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:42,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:32:42,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:32:42,449 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 15728640}
2022-05-12 22:32:42,449 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:43,342 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75235328}) to executor  for transfer request: 0.
2022-05-12 22:32:43,342 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:43,342 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:43,342 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) about to wait for the following futures []
2022-05-12 22:32:43,342 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) about to wait for the following futures []
2022-05-12 22:32:43,343 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) done waiting for dependent futures
2022-05-12 22:32:43,343 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) done waiting for dependent futures
2022-05-12 22:32:43,343 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75235328}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 75235328}
2022-05-12 22:32:43,343 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=142606336-150994943'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 142606336, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:43,343 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:43,343 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:43,344 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:43,344 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:43,344 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:43,344 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:43,344 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:43,344 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:43,344 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:32:43,344 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:43,345 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:43,345 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=142606336-150994943', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:43,345 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:43,345 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:43,345 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:43,345 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:43,345 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:43,345 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:43,345 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:32:43,345 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:32:43,346 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:43,346 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=142606336-150994943
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223243Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:43,346 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223243Z
20220512/eu-central-1/s3/aws4_request
d9575564c4b4fd6e219f1ca71b297207831c86a7cf672e75be9bef480947dc4b
2022-05-12 22:32:43,346 botocore.auth DEBUG    Signature:
305b41fe292b0e9fd0adc08d2540660da56adbc389933f68f0024b66d9dcdf68
2022-05-12 22:32:43,346 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:43,346 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:43,346 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:43,347 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:43,524 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:43,524 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'CGkVdt2AigEx06zY8SuZigGFLytxwkYnB0Mx+OxJ2URpF0+tcEw8Xwx4K8EV0SMmrr71r3BErqU=', 'x-amz-request-id': '6X20N87JSK7A5H84', 'Date': 'Thu, 12 May 2022 22:32:44 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 142606336-150994943/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:43,524 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:43,525 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:43,525 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:43,525 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:45,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119799808}) to executor  for transfer request: 0.
2022-05-12 22:32:45,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:45,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) about to wait for the following futures []
2022-05-12 22:32:45,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) done waiting for dependent futures
2022-05-12 22:32:45,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119799808}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 119799808}
2022-05-12 22:32:45,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:47,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49807360}) to executor  for transfer request: 0.
2022-05-12 22:32:47,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:47,939 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) about to wait for the following futures []
2022-05-12 22:32:47,939 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) done waiting for dependent futures
2022-05-12 22:32:47,939 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49807360}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 49807360}
2022-05-12 22:32:47,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:47,988 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32768000}) to executor  for transfer request: 0.
2022-05-12 22:32:47,989 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:47,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) about to wait for the following futures []
2022-05-12 22:32:47,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) done waiting for dependent futures
2022-05-12 22:32:47,989 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32768000}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 32768000}
2022-05-12 22:32:47,990 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136314880}) to executor  for transfer request: 0.
2022-05-12 22:32:48,289 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) about to wait for the following futures []
2022-05-12 22:32:48,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) done waiting for dependent futures
2022-05-12 22:32:48,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136314880}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 136314880}
2022-05-12 22:32:48,290 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:49,222 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:32:49,222 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:49,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:32:49,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:32:49,222 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 7864320}
2022-05-12 22:32:49,223 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:49,382 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101449728}) to executor  for transfer request: 0.
2022-05-12 22:32:49,382 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:49,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) about to wait for the following futures []
2022-05-12 22:32:49,383 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) done waiting for dependent futures
2022-05-12 22:32:49,383 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101449728}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 101449728}
2022-05-12 22:32:49,383 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:50,779 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142606336}) to executor  for transfer request: 0.
2022-05-12 22:32:50,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:50,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) about to wait for the following futures []
2022-05-12 22:32:50,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) done waiting for dependent futures
2022-05-12 22:32:50,780 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142606336}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 142606336}
2022-05-12 22:32:50,780 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:51,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:32:51,138 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:51,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:32:51,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:32:51,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 15990784}
2022-05-12 22:32:51,139 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:51,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127401984}) to executor  for transfer request: 0.
2022-05-12 22:32:51,470 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:51,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) about to wait for the following futures []
2022-05-12 22:32:51,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) done waiting for dependent futures
2022-05-12 22:32:51,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127401984}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 127401984}
2022-05-12 22:32:51,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:51,945 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120061952}) to executor  for transfer request: 0.
2022-05-12 22:32:51,945 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:51,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) about to wait for the following futures []
2022-05-12 22:32:51,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) done waiting for dependent futures
2022-05-12 22:32:51,946 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120061952}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 120061952}
2022-05-12 22:32:51,946 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:53,571 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112721920}) to executor  for transfer request: 0.
2022-05-12 22:32:53,571 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:53,571 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) about to wait for the following futures []
2022-05-12 22:32:53,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) done waiting for dependent futures
2022-05-12 22:32:53,572 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112721920}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 112721920}
2022-05-12 22:32:53,572 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:55,006 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91226112}) to executor  for transfer request: 0.
2022-05-12 22:32:55,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:55,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) about to wait for the following futures []
2022-05-12 22:32:55,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) done waiting for dependent futures
2022-05-12 22:32:55,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91226112}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 91226112}
2022-05-12 22:32:55,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:55,198 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50069504}) to executor  for transfer request: 0.
2022-05-12 22:32:55,198 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:55,198 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:55,198 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) about to wait for the following futures []
2022-05-12 22:32:55,199 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) done waiting for dependent futures
2022-05-12 22:32:55,199 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=150994944-159383551'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 150994944, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:55,199 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:55,199 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) about to wait for the following futures []
2022-05-12 22:32:55,199 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:55,199 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) done waiting for dependent futures
2022-05-12 22:32:55,199 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:55,200 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50069504}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 50069504}
2022-05-12 22:32:55,200 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:55,200 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:55,200 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:55,201 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:55,201 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:32:55,201 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:55,201 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:55,201 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:55,201 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=150994944-159383551', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:55,201 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:55,201 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:55,202 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:55,202 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:55,202 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:55,202 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:55,202 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:32:55,202 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:32:55,202 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:55,202 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=150994944-159383551
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223255Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:55,202 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223255Z
20220512/eu-central-1/s3/aws4_request
ef5d6ba18017ead838947a8d01b53698e52725ccf6991755372bf34331eadf23
2022-05-12 22:32:55,202 botocore.auth DEBUG    Signature:
08d4a10c51d559a44d4f17a495c5f7e850b09cea92053f3a52e66ee87c863100
2022-05-12 22:32:55,202 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:55,202 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:55,202 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:55,202 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:55,408 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:55,408 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'oEEK1xjaeoZRZliJ8FVvCDdc46uVL5uJJ3zNjtnHeT04q486Pd6EYK6mRK+xlX9sbpALgvbkAMM=', 'x-amz-request-id': 'JEAXZMFTF5XJV9YR', 'Date': 'Thu, 12 May 2022 22:32:56 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 150994944-159383551/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:55,408 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:55,409 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:55,409 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:55,409 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:55,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33030144}) to executor  for transfer request: 0.
2022-05-12 22:32:55,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:55,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) about to wait for the following futures []
2022-05-12 22:32:55,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) done waiting for dependent futures
2022-05-12 22:32:55,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33030144}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 33030144}
2022-05-12 22:32:55,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,070 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136577024}) to executor  for transfer request: 0.
2022-05-12 22:32:57,070 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) about to wait for the following futures []
2022-05-12 22:32:57,071 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) done waiting for dependent futures
2022-05-12 22:32:57,071 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136577024}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 136577024}
2022-05-12 22:32:57,071 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,566 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94896128}) to executor  for transfer request: 0.
2022-05-12 22:32:57,566 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) about to wait for the following futures []
2022-05-12 22:32:57,566 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) done waiting for dependent futures
2022-05-12 22:32:57,566 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94896128}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 94896128}
2022-05-12 22:32:57,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:57,573 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142868480}) to executor  for transfer request: 0.
2022-05-12 22:32:57,573 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:57,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) about to wait for the following futures []
2022-05-12 22:32:57,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) done waiting for dependent futures
2022-05-12 22:32:57,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142868480}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 142868480}
2022-05-12 22:32:57,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:58,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112984064}) to executor  for transfer request: 0.
2022-05-12 22:32:58,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:58,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) about to wait for the following futures []
2022-05-12 22:32:58,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) done waiting for dependent futures
2022-05-12 22:32:58,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112984064}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 112984064}
2022-05-12 22:32:58,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:00,578 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120324096}) to executor  for transfer request: 0.
2022-05-12 22:33:00,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:00,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) about to wait for the following futures []
2022-05-12 22:33:00,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) done waiting for dependent futures
2022-05-12 22:33:00,579 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120324096}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 120324096}
2022-05-12 22:33:00,580 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:00,813 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113246208}) to executor  for transfer request: 0.
2022-05-12 22:33:00,814 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:00,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) about to wait for the following futures []
2022-05-12 22:33:00,814 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) done waiting for dependent futures
2022-05-12 22:33:00,814 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113246208}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 113246208}
2022-05-12 22:33:00,815 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,039 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:33:01,040 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:33:01,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:33:01,040 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 16252928}
2022-05-12 22:33:01,041 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:01,224 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127664128}) to executor  for transfer request: 0.
2022-05-12 22:33:01,224 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:01,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) about to wait for the following futures []
2022-05-12 22:33:01,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) done waiting for dependent futures
2022-05-12 22:33:01,225 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127664128}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 127664128}
2022-05-12 22:33:01,225 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:03,656 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136839168}) to executor  for transfer request: 0.
2022-05-12 22:33:03,656 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:03,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) about to wait for the following futures []
2022-05-12 22:33:03,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) done waiting for dependent futures
2022-05-12 22:33:03,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136839168}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 136839168}
2022-05-12 22:33:03,657 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:03,862 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33292288}) to executor  for transfer request: 0.
2022-05-12 22:33:03,862 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:03,863 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:03,863 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) about to wait for the following futures []
2022-05-12 22:33:03,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) about to wait for the following futures []
2022-05-12 22:33:03,863 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) done waiting for dependent futures
2022-05-12 22:33:03,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) done waiting for dependent futures
2022-05-12 22:33:03,864 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=159383552-167772159'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 159383552, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:03,864 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33292288}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 33292288}
2022-05-12 22:33:03,864 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:03,865 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:03,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:03,865 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:03,865 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:03,865 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:03,865 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:03,866 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:03,866 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:33:03,866 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:03,866 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:03,866 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=159383552-167772159', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:03,866 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:03,866 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:03,866 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:03,866 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:03,867 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:03,867 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:03,867 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:33:03,867 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:33:03,867 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:03,867 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=159383552-167772159
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223303Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:03,867 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223303Z
20220512/eu-central-1/s3/aws4_request
aad93b74f9027f251c37e5da900160c69c2a0af446de00c888fdd69ed8f8008c
2022-05-12 22:33:03,868 botocore.auth DEBUG    Signature:
931a251aeeb81103a52b2d985527acd5662e30b260d92239194e12147d8f4ddd
2022-05-12 22:33:03,868 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:03,868 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:03,868 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:03,868 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:04,080 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:04,080 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qov/bL7cCZoVooTdSjaKX/NAy3qOmWLwiUHA8AsGjWm24/1IIiXzn/WgEUjX4bskdadOilONsV4=', 'x-amz-request-id': 'BAC2JYGWV1TXQW40', 'Date': 'Thu, 12 May 2022 22:33:04 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 159383552-167772159/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:33:04,080 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:04,081 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:04,081 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:04,081 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:04,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113508352}) to executor  for transfer request: 0.
2022-05-12 22:33:04,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:04,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) about to wait for the following futures []
2022-05-12 22:33:04,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) done waiting for dependent futures
2022-05-12 22:33:04,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113508352}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 113508352}
2022-05-12 22:33:04,268 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143130624}) to executor  for transfer request: 0.
2022-05-12 22:33:05,594 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:05,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) about to wait for the following futures []
2022-05-12 22:33:05,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) done waiting for dependent futures
2022-05-12 22:33:05,594 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143130624}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 143130624}
2022-05-12 22:33:05,595 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:05,979 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150994944}) to executor  for transfer request: 0.
2022-05-12 22:33:05,980 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:05,980 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) about to wait for the following futures []
2022-05-12 22:33:05,980 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) done waiting for dependent futures
2022-05-12 22:33:05,980 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150994944}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 150994944}
2022-05-12 22:33:05,981 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:07,584 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113770496}) to executor  for transfer request: 0.
2022-05-12 22:33:07,584 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:07,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) about to wait for the following futures []
2022-05-12 22:33:07,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) done waiting for dependent futures
2022-05-12 22:33:07,585 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113770496}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 113770496}
2022-05-12 22:33:07,585 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:08,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120586240}) to executor  for transfer request: 0.
2022-05-12 22:33:08,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:08,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) about to wait for the following futures []
2022-05-12 22:33:08,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) done waiting for dependent futures
2022-05-12 22:33:08,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120586240}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 120586240}
2022-05-12 22:33:08,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:08,456 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127926272}) to executor  for transfer request: 0.
2022-05-12 22:33:08,456 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:08,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) about to wait for the following futures []
2022-05-12 22:33:08,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) done waiting for dependent futures
2022-05-12 22:33:08,457 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127926272}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 127926272}
2022-05-12 22:33:08,457 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,722 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114032640}) to executor  for transfer request: 0.
2022-05-12 22:33:10,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) about to wait for the following futures []
2022-05-12 22:33:10,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) done waiting for dependent futures
2022-05-12 22:33:10,723 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114032640}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 114032640}
2022-05-12 22:33:10,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:10,741 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137101312}) to executor  for transfer request: 0.
2022-05-12 22:33:10,741 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:10,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) about to wait for the following futures []
2022-05-12 22:33:10,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) done waiting for dependent futures
2022-05-12 22:33:10,742 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137101312}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 137101312}
2022-05-12 22:33:10,742 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:11,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:33:11,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:11,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:11,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:33:11,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:33:11,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 16515072}
2022-05-12 22:33:11,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:11,480 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95158272}) to executor  for transfer request: 0.
2022-05-12 22:33:11,480 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:11,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) about to wait for the following futures []
2022-05-12 22:33:11,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) done waiting for dependent futures
2022-05-12 22:33:11,481 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95158272}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 95158272}
2022-05-12 22:33:11,482 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:12,699 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91488256}) to executor  for transfer request: 0.
2022-05-12 22:33:12,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:12,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) about to wait for the following futures []
2022-05-12 22:33:12,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) done waiting for dependent futures
2022-05-12 22:33:12,700 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91488256}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 91488256}
2022-05-12 22:33:12,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,121 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159383552}) to executor  for transfer request: 0.
2022-05-12 22:33:13,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) about to wait for the following futures []
2022-05-12 22:33:13,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) done waiting for dependent futures
2022-05-12 22:33:13,122 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159383552}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 159383552}
2022-05-12 22:33:13,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:13,595 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151257088}) to executor  for transfer request: 0.
2022-05-12 22:33:13,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:13,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) about to wait for the following futures []
2022-05-12 22:33:13,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) done waiting for dependent futures
2022-05-12 22:33:13,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151257088}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 151257088}
2022-05-12 22:33:13,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114294784}) to executor  for transfer request: 0.
2022-05-12 22:33:14,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:14,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) about to wait for the following futures []
2022-05-12 22:33:14,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) done waiting for dependent futures
2022-05-12 22:33:14,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114294784}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 114294784}
2022-05-12 22:33:14,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:33:14,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:14,251 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:33:14,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:14,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:33:14,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:33:14,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=35>, 'offset': 8126464}
2022-05-12 22:33:14,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,252 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:33:14,252 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:33:14,252 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:33:14,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:15,898 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137363456}) to executor  for transfer request: 0.
2022-05-12 22:33:15,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:15,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) about to wait for the following futures []
2022-05-12 22:33:15,898 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) done waiting for dependent futures
2022-05-12 22:33:15,898 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137363456}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 137363456}
2022-05-12 22:33:15,899 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:16,013 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128188416}) to executor  for transfer request: 0.
2022-05-12 22:33:16,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:16,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) about to wait for the following futures []
2022-05-12 22:33:16,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) done waiting for dependent futures
2022-05-12 22:33:16,014 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128188416}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 128188416}
2022-05-12 22:33:16,014 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:16,182 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143392768}) to executor  for transfer request: 0.
2022-05-12 22:33:16,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:16,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) about to wait for the following futures []
2022-05-12 22:33:16,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) done waiting for dependent futures
2022-05-12 22:33:16,182 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143392768}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 143392768}
2022-05-12 22:33:16,183 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:17,591 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120848384}) to executor  for transfer request: 0.
2022-05-12 22:33:17,591 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:17,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) about to wait for the following futures []
2022-05-12 22:33:17,591 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) done waiting for dependent futures
2022-05-12 22:33:17,591 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120848384}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 120848384}
2022-05-12 22:33:17,592 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:17,725 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114556928}) to executor  for transfer request: 0.
2022-05-12 22:33:17,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:17,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) about to wait for the following futures []
2022-05-12 22:33:17,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) done waiting for dependent futures
2022-05-12 22:33:17,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114556928}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 114556928}
2022-05-12 22:33:17,726 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:20,896 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:33:20,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:20,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:33:20,896 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:33:20,897 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 5242880}
2022-05-12 22:33:20,897 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:21,448 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159645696}) to executor  for transfer request: 0.
2022-05-12 22:33:21,448 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:21,448 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) about to wait for the following futures []
2022-05-12 22:33:21,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) done waiting for dependent futures
2022-05-12 22:33:21,449 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159645696}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 159645696}
2022-05-12 22:33:21,449 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:21,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143654912}) to executor  for transfer request: 0.
2022-05-12 22:33:21,685 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:21,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) about to wait for the following futures []
2022-05-12 22:33:21,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) done waiting for dependent futures
2022-05-12 22:33:21,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143654912}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 143654912}
2022-05-12 22:33:21,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:22,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114819072}) to executor  for transfer request: 0.
2022-05-12 22:33:22,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:22,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) about to wait for the following futures []
2022-05-12 22:33:22,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) done waiting for dependent futures
2022-05-12 22:33:22,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114819072}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 114819072}
2022-05-12 22:33:22,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,245 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91750400}) to executor  for transfer request: 0.
2022-05-12 22:33:23,245 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) about to wait for the following futures []
2022-05-12 22:33:23,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) done waiting for dependent futures
2022-05-12 22:33:23,246 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91750400}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 91750400}
2022-05-12 22:33:23,246 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:23,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137625600}) to executor  for transfer request: 0.
2022-05-12 22:33:23,333 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:23,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) about to wait for the following futures []
2022-05-12 22:33:23,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) done waiting for dependent futures
2022-05-12 22:33:23,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137625600}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 137625600}
2022-05-12 22:33:23,334 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:24,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143917056}) to executor  for transfer request: 0.
2022-05-12 22:33:24,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:24,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) about to wait for the following futures []
2022-05-12 22:33:24,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) done waiting for dependent futures
2022-05-12 22:33:24,483 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143917056}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 143917056}
2022-05-12 22:33:24,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,001 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128450560}) to executor  for transfer request: 0.
2022-05-12 22:33:25,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) about to wait for the following futures []
2022-05-12 22:33:25,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) done waiting for dependent futures
2022-05-12 22:33:25,002 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128450560}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 128450560}
2022-05-12 22:33:25,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115081216}) to executor  for transfer request: 0.
2022-05-12 22:33:25,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) about to wait for the following futures []
2022-05-12 22:33:25,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) done waiting for dependent futures
2022-05-12 22:33:25,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115081216}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 115081216}
2022-05-12 22:33:25,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:25,428 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95420416}) to executor  for transfer request: 0.
2022-05-12 22:33:25,428 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:25,429 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) about to wait for the following futures []
2022-05-12 22:33:25,429 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) done waiting for dependent futures
2022-05-12 22:33:25,429 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95420416}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 95420416}
2022-05-12 22:33:25,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:26,337 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121110528}) to executor  for transfer request: 0.
2022-05-12 22:33:26,337 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:26,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) about to wait for the following futures []
2022-05-12 22:33:26,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) done waiting for dependent futures
2022-05-12 22:33:26,338 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121110528}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 121110528}
2022-05-12 22:33:26,338 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:28,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:33:28,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:28,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:33:28,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:33:28,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 5505024}
2022-05-12 22:33:28,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:29,166 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144179200}) to executor  for transfer request: 0.
2022-05-12 22:33:29,166 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:29,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) about to wait for the following futures []
2022-05-12 22:33:29,166 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) done waiting for dependent futures
2022-05-12 22:33:29,166 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144179200}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 144179200}
2022-05-12 22:33:29,167 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92012544}) to executor  for transfer request: 0.
2022-05-12 22:33:30,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) about to wait for the following futures []
2022-05-12 22:33:30,038 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) about to wait for the following futures []
2022-05-12 22:33:30,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) done waiting for dependent futures
2022-05-12 22:33:30,038 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) done waiting for dependent futures
2022-05-12 22:33:30,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92012544}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 92012544}
2022-05-12 22:33:30,038 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=167772160-176160767'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 167772160, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:30,039 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:30,039 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:30,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,039 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:30,039 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:30,039 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:30,040 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:30,040 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:30,040 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:33:30,040 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:30,040 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:30,040 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=167772160-176160767', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:30,040 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:30,040 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:30,040 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:30,040 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:30,040 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:30,040 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:30,041 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:33:30,041 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:33:30,041 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:30,041 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=167772160-176160767
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223330Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:30,041 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223330Z
20220512/eu-central-1/s3/aws4_request
0a592e5ebac1b9ffca0c096945b251c3c2ce6d898df890c058f663ccb8ebed8f
2022-05-12 22:33:30,041 botocore.auth DEBUG    Signature:
4aff905456643a229d2ab962381bd7c21117e0dfc00b6211f3679cb6dbd9a23b
2022-05-12 22:33:30,041 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:30,041 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:30,042 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:30,042 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:30,042 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:30,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115343360}) to executor  for transfer request: 0.
2022-05-12 22:33:30,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) about to wait for the following futures []
2022-05-12 22:33:30,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) done waiting for dependent futures
2022-05-12 22:33:30,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115343360}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 115343360}
2022-05-12 22:33:30,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,407 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137887744}) to executor  for transfer request: 0.
2022-05-12 22:33:30,407 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) about to wait for the following futures []
2022-05-12 22:33:30,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) done waiting for dependent futures
2022-05-12 22:33:30,407 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137887744}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 137887744}
2022-05-12 22:33:30,408 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,585 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151519232}) to executor  for transfer request: 0.
2022-05-12 22:33:30,585 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) about to wait for the following futures []
2022-05-12 22:33:30,585 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) done waiting for dependent futures
2022-05-12 22:33:30,586 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151519232}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 151519232}
2022-05-12 22:33:30,586 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:31,260 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:31,261 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2WoKvJjlMTxiPArkljRhR19xjkN0O5WR7AVzMzgZvUuf7Dh8+xPlGXFA+J1PwO8QkO1P+7hXHFI=', 'x-amz-request-id': '0TCS69A4AD90W4T4', 'Date': 'Thu, 12 May 2022 22:33:32 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 167772160-176160767/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:31,261 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:31,262 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:31,262 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:31,262 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:32,124 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121372672}) to executor  for transfer request: 0.
2022-05-12 22:33:32,124 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:32,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) about to wait for the following futures []
2022-05-12 22:33:32,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) done waiting for dependent futures
2022-05-12 22:33:32,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121372672}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 121372672}
2022-05-12 22:33:32,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:33,321 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159907840}) to executor  for transfer request: 0.
2022-05-12 22:33:33,321 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:33,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) about to wait for the following futures []
2022-05-12 22:33:33,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) done waiting for dependent futures
2022-05-12 22:33:33,321 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159907840}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 159907840}
2022-05-12 22:33:33,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:33,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144441344}) to executor  for transfer request: 0.
2022-05-12 22:33:33,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:33,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) about to wait for the following futures []
2022-05-12 22:33:33,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) done waiting for dependent futures
2022-05-12 22:33:33,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144441344}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 144441344}
2022-05-12 22:33:33,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:34,711 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101711872}) to executor  for transfer request: 0.
2022-05-12 22:33:34,711 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:34,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) about to wait for the following futures []
2022-05-12 22:33:34,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) done waiting for dependent futures
2022-05-12 22:33:34,712 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101711872}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 101711872}
2022-05-12 22:33:34,712 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:35,425 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128712704}) to executor  for transfer request: 0.
2022-05-12 22:33:35,425 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:35,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) about to wait for the following futures []
2022-05-12 22:33:35,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) done waiting for dependent futures
2022-05-12 22:33:35,426 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128712704}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 128712704}
2022-05-12 22:33:35,426 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138149888}) to executor  for transfer request: 0.
2022-05-12 22:33:36,238 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) about to wait for the following futures []
2022-05-12 22:33:36,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) done waiting for dependent futures
2022-05-12 22:33:36,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138149888}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 138149888}
2022-05-12 22:33:36,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,459 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167772160}) to executor  for transfer request: 0.
2022-05-12 22:33:36,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) about to wait for the following futures []
2022-05-12 22:33:36,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) done waiting for dependent futures
2022-05-12 22:33:36,460 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167772160}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 167772160}
2022-05-12 22:33:36,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,716 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115605504}) to executor  for transfer request: 0.
2022-05-12 22:33:36,716 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) about to wait for the following futures []
2022-05-12 22:33:36,717 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) done waiting for dependent futures
2022-05-12 22:33:36,717 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115605504}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 115605504}
2022-05-12 22:33:36,717 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:36,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95682560}) to executor  for transfer request: 0.
2022-05-12 22:33:36,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:36,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) about to wait for the following futures []
2022-05-12 22:33:36,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) done waiting for dependent futures
2022-05-12 22:33:36,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95682560}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 95682560}
2022-05-12 22:33:36,794 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144703488}) to executor  for transfer request: 0.
2022-05-12 22:33:37,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:37,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) about to wait for the following futures []
2022-05-12 22:33:37,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) done waiting for dependent futures
2022-05-12 22:33:37,927 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144703488}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 144703488}
2022-05-12 22:33:37,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:40,263 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:33:40,264 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:40,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:33:40,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:33:40,264 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 5767168}
2022-05-12 22:33:40,265 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:40,892 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168034304}) to executor  for transfer request: 0.
2022-05-12 22:33:40,892 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:40,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) about to wait for the following futures []
2022-05-12 22:33:40,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) done waiting for dependent futures
2022-05-12 22:33:40,893 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168034304}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 168034304}
2022-05-12 22:33:40,893 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:41,365 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115867648}) to executor  for transfer request: 0.
2022-05-12 22:33:41,365 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:41,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) about to wait for the following futures []
2022-05-12 22:33:41,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) done waiting for dependent futures
2022-05-12 22:33:41,365 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115867648}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 115867648}
2022-05-12 22:33:41,366 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:42,199 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160169984}) to executor  for transfer request: 0.
2022-05-12 22:33:42,199 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:42,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) about to wait for the following futures []
2022-05-12 22:33:42,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) done waiting for dependent futures
2022-05-12 22:33:42,200 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160169984}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 160169984}
2022-05-12 22:33:42,200 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:43,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121634816}) to executor  for transfer request: 0.
2022-05-12 22:33:43,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:43,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) about to wait for the following futures []
2022-05-12 22:33:43,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) done waiting for dependent futures
2022-05-12 22:33:43,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121634816}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 121634816}
2022-05-12 22:33:43,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:43,415 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151781376}) to executor  for transfer request: 0.
2022-05-12 22:33:43,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:43,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) about to wait for the following futures []
2022-05-12 22:33:43,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) done waiting for dependent futures
2022-05-12 22:33:43,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151781376}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 151781376}
2022-05-12 22:33:43,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:43,720 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144965632}) to executor  for transfer request: 0.
2022-05-12 22:33:43,720 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:43,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) about to wait for the following futures []
2022-05-12 22:33:43,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) done waiting for dependent futures
2022-05-12 22:33:43,721 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144965632}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 144965632}
2022-05-12 22:33:43,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:44,516 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138412032}) to executor  for transfer request: 0.
2022-05-12 22:33:44,516 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:44,517 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) about to wait for the following futures []
2022-05-12 22:33:44,517 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) done waiting for dependent futures
2022-05-12 22:33:44,517 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138412032}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 138412032}
2022-05-12 22:33:44,517 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:46,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128974848}) to executor  for transfer request: 0.
2022-05-12 22:33:46,273 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:46,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) about to wait for the following futures []
2022-05-12 22:33:46,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) done waiting for dependent futures
2022-05-12 22:33:46,274 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128974848}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 128974848}
2022-05-12 22:33:46,274 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:47,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168296448}) to executor  for transfer request: 0.
2022-05-12 22:33:47,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:47,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) about to wait for the following futures []
2022-05-12 22:33:47,957 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) done waiting for dependent futures
2022-05-12 22:33:47,957 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168296448}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 168296448}
2022-05-12 22:33:47,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:48,529 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145227776}) to executor  for transfer request: 0.
2022-05-12 22:33:48,530 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:48,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) about to wait for the following futures []
2022-05-12 22:33:48,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) done waiting for dependent futures
2022-05-12 22:33:48,530 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145227776}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 145227776}
2022-05-12 22:33:48,530 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:48,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116129792}) to executor  for transfer request: 0.
2022-05-12 22:33:48,594 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:48,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) about to wait for the following futures []
2022-05-12 22:33:48,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) done waiting for dependent futures
2022-05-12 22:33:48,594 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116129792}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 116129792}
2022-05-12 22:33:48,595 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:49,783 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160432128}) to executor  for transfer request: 0.
2022-05-12 22:33:49,783 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) about to wait for the following futures []
2022-05-12 22:33:49,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) done waiting for dependent futures
2022-05-12 22:33:49,784 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160432128}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 160432128}
2022-05-12 22:33:49,784 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:50,661 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:33:50,661 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:50,661 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:33:50,661 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:33:50,662 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 6029312}
2022-05-12 22:33:50,662 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,054 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168558592}) to executor  for transfer request: 0.
2022-05-12 22:33:51,054 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,054 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) about to wait for the following futures []
2022-05-12 22:33:51,054 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) done waiting for dependent futures
2022-05-12 22:33:51,054 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168558592}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 168558592}
2022-05-12 22:33:51,055 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,118 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121896960}) to executor  for transfer request: 0.
2022-05-12 22:33:52,118 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) about to wait for the following futures []
2022-05-12 22:33:52,119 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) done waiting for dependent futures
2022-05-12 22:33:52,119 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121896960}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 121896960}
2022-05-12 22:33:52,119 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95944704}) to executor  for transfer request: 0.
2022-05-12 22:33:52,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) about to wait for the following futures []
2022-05-12 22:33:52,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) done waiting for dependent futures
2022-05-12 22:33:52,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95944704}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 95944704}
2022-05-12 22:33:52,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:53,901 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145489920}) to executor  for transfer request: 0.
2022-05-12 22:33:53,901 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:53,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) about to wait for the following futures []
2022-05-12 22:33:53,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) done waiting for dependent futures
2022-05-12 22:33:53,902 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145489920}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 145489920}
2022-05-12 22:33:53,902 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:54,893 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116391936}) to executor  for transfer request: 0.
2022-05-12 22:33:54,893 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:54,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) about to wait for the following futures []
2022-05-12 22:33:54,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) done waiting for dependent futures
2022-05-12 22:33:54,894 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116391936}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 116391936}
2022-05-12 22:33:54,894 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:55,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138674176}) to executor  for transfer request: 0.
2022-05-12 22:33:55,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:55,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) about to wait for the following futures []
2022-05-12 22:33:55,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) done waiting for dependent futures
2022-05-12 22:33:55,600 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138674176}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 138674176}
2022-05-12 22:33:55,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:56,498 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129236992}) to executor  for transfer request: 0.
2022-05-12 22:33:56,498 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:56,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) about to wait for the following futures []
2022-05-12 22:33:56,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) done waiting for dependent futures
2022-05-12 22:33:56,498 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129236992}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 129236992}
2022-05-12 22:33:56,499 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:57,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152043520}) to executor  for transfer request: 0.
2022-05-12 22:33:57,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:57,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) about to wait for the following futures []
2022-05-12 22:33:57,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) done waiting for dependent futures
2022-05-12 22:33:57,443 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152043520}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 152043520}
2022-05-12 22:33:57,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:57,748 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160694272}) to executor  for transfer request: 0.
2022-05-12 22:33:57,748 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:57,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) about to wait for the following futures []
2022-05-12 22:33:57,749 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) done waiting for dependent futures
2022-05-12 22:33:57,749 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160694272}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 160694272}
2022-05-12 22:33:57,749 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:59,555 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168820736}) to executor  for transfer request: 0.
2022-05-12 22:33:59,555 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:59,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) about to wait for the following futures []
2022-05-12 22:33:59,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) done waiting for dependent futures
2022-05-12 22:33:59,556 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168820736}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 168820736}
2022-05-12 22:33:59,556 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:02,720 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122159104}) to executor  for transfer request: 0.
2022-05-12 22:34:02,720 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:02,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) about to wait for the following futures []
2022-05-12 22:34:02,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) done waiting for dependent futures
2022-05-12 22:34:02,721 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122159104}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 122159104}
2022-05-12 22:34:02,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:02,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:34:02,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:02,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:34:02,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:34:02,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 6291456}
2022-05-12 22:34:02,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:02,854 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145752064}) to executor  for transfer request: 0.
2022-05-12 22:34:02,854 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:02,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) about to wait for the following futures []
2022-05-12 22:34:02,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) done waiting for dependent futures
2022-05-12 22:34:02,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145752064}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 145752064}
2022-05-12 22:34:02,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:03,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116654080}) to executor  for transfer request: 0.
2022-05-12 22:34:03,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:03,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) about to wait for the following futures []
2022-05-12 22:34:03,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) done waiting for dependent futures
2022-05-12 22:34:03,171 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116654080}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 116654080}
2022-05-12 22:34:03,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:04,804 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138936320}) to executor  for transfer request: 0.
2022-05-12 22:34:04,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:04,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) about to wait for the following futures []
2022-05-12 22:34:04,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) done waiting for dependent futures
2022-05-12 22:34:04,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138936320}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 138936320}
2022-05-12 22:34:04,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:05,403 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129499136}) to executor  for transfer request: 0.
2022-05-12 22:34:05,403 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:05,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) about to wait for the following futures []
2022-05-12 22:34:05,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) done waiting for dependent futures
2022-05-12 22:34:05,403 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129499136}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 129499136}
2022-05-12 22:34:05,403 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169082880}) to executor  for transfer request: 0.
2022-05-12 22:34:06,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) about to wait for the following futures []
2022-05-12 22:34:06,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) done waiting for dependent futures
2022-05-12 22:34:06,002 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169082880}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 169082880}
2022-05-12 22:34:06,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:07,022 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160956416}) to executor  for transfer request: 0.
2022-05-12 22:34:07,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:07,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) about to wait for the following futures []
2022-05-12 22:34:07,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) done waiting for dependent futures
2022-05-12 22:34:07,023 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160956416}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 160956416}
2022-05-12 22:34:07,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:09,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96206848}) to executor  for transfer request: 0.
2022-05-12 22:34:09,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:09,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) about to wait for the following futures []
2022-05-12 22:34:09,526 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) done waiting for dependent futures
2022-05-12 22:34:09,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96206848}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 96206848}
2022-05-12 22:34:09,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,089 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116916224}) to executor  for transfer request: 0.
2022-05-12 22:34:10,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) about to wait for the following futures []
2022-05-12 22:34:10,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) done waiting for dependent futures
2022-05-12 22:34:10,090 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116916224}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 116916224}
2022-05-12 22:34:10,091 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,741 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139198464}) to executor  for transfer request: 0.
2022-05-12 22:34:10,741 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) about to wait for the following futures []
2022-05-12 22:34:10,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) done waiting for dependent futures
2022-05-12 22:34:10,741 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139198464}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 139198464}
2022-05-12 22:34:10,742 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:10,941 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146014208}) to executor  for transfer request: 0.
2022-05-12 22:34:10,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:10,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) about to wait for the following futures []
2022-05-12 22:34:10,942 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) done waiting for dependent futures
2022-05-12 22:34:10,942 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146014208}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 146014208}
2022-05-12 22:34:10,942 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:11,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122421248}) to executor  for transfer request: 0.
2022-05-12 22:34:11,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:11,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) about to wait for the following futures []
2022-05-12 22:34:11,402 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) done waiting for dependent futures
2022-05-12 22:34:11,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122421248}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 122421248}
2022-05-12 22:34:11,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:12,890 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169345024}) to executor  for transfer request: 0.
2022-05-12 22:34:12,890 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:12,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) about to wait for the following futures []
2022-05-12 22:34:12,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) done waiting for dependent futures
2022-05-12 22:34:12,891 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169345024}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 169345024}
2022-05-12 22:34:12,891 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,865 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117178368}) to executor  for transfer request: 0.
2022-05-12 22:34:13,865 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) about to wait for the following futures []
2022-05-12 22:34:13,866 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) about to wait for the following futures []
2022-05-12 22:34:13,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) done waiting for dependent futures
2022-05-12 22:34:13,866 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) done waiting for dependent futures
2022-05-12 22:34:13,866 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117178368}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 117178368}
2022-05-12 22:34:13,866 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=176160768-184549375'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 176160768, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:34:13,866 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:13,867 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:13,867 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,867 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:13,867 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:34:13,867 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:34:13,867 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:13,867 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:34:13,867 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:34:13,868 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:13,868 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:34:13,868 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=176160768-184549375', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:34:13,868 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:13,868 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:34:13,868 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:13,868 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:34:13,868 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:34:13,868 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:34:13,868 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:34:13,868 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:34:13,869 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:34:13,869 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=176160768-184549375
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223413Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:34:13,869 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223413Z
20220512/eu-central-1/s3/aws4_request
285b82c6866abe08a7175768bebcc731b56a83882bdd4de0b47d410224e024a5
2022-05-12 22:34:13,869 botocore.auth DEBUG    Signature:
047dcd0adfcb49b3c178e7f4ca686cbdfa5d52dc9b85ac3d0a9003c5e93d902b
2022-05-12 22:34:13,869 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:13,869 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:34:13,869 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:34:13,870 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:34:13,870 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:34:14,689 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129761280}) to executor  for transfer request: 0.
2022-05-12 22:34:14,689 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:14,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) about to wait for the following futures []
2022-05-12 22:34:14,690 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) done waiting for dependent futures
2022-05-12 22:34:14,690 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129761280}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 129761280}
2022-05-12 22:34:14,690 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:14,772 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146276352}) to executor  for transfer request: 0.
2022-05-12 22:34:14,772 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:14,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) about to wait for the following futures []
2022-05-12 22:34:14,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) done waiting for dependent futures
2022-05-12 22:34:14,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146276352}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 146276352}
2022-05-12 22:34:14,773 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:14,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:34:14,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:14,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:34:14,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:34:14,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 6553600}
2022-05-12 22:34:14,854 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:15,229 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152305664}) to executor  for transfer request: 0.
2022-05-12 22:34:15,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:15,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) about to wait for the following futures []
2022-05-12 22:34:15,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) done waiting for dependent futures
2022-05-12 22:34:15,230 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152305664}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 152305664}
2022-05-12 22:34:15,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:15,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161218560}) to executor  for transfer request: 0.
2022-05-12 22:34:15,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:15,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) about to wait for the following futures []
2022-05-12 22:34:15,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) done waiting for dependent futures
2022-05-12 22:34:15,927 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161218560}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 161218560}
2022-05-12 22:34:15,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:16,700 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139460608}) to executor  for transfer request: 0.
2022-05-12 22:34:16,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:16,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) about to wait for the following futures []
2022-05-12 22:34:16,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) done waiting for dependent futures
2022-05-12 22:34:16,701 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139460608}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 139460608}
2022-05-12 22:34:16,701 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:17,238 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146538496}) to executor  for transfer request: 0.
2022-05-12 22:34:17,239 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:17,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) about to wait for the following futures []
2022-05-12 22:34:17,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) done waiting for dependent futures
2022-05-12 22:34:17,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146538496}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 146538496}
2022-05-12 22:34:17,240 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169607168}) to executor  for transfer request: 0.
2022-05-12 22:34:19,399 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) about to wait for the following futures []
2022-05-12 22:34:19,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) done waiting for dependent futures
2022-05-12 22:34:19,399 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169607168}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 169607168}
2022-05-12 22:34:19,400 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,479 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:34:19,480 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Dq0E9AkbX57BkC81vAUjMjDHRTPcCAfyNKL7Mwl00ciYBlT/LmFn/ka9s2gFYdLwGwSZkhl2Ecw=', 'x-amz-request-id': 'VPDZMYXY8R2J57DT', 'Date': 'Thu, 12 May 2022 22:34:20 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 176160768-184549375/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:34:19,480 botocore.parsers DEBUG    Response body:

2022-05-12 22:34:19,481 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:34:19,481 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:34:19,481 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:34:21,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146800640}) to executor  for transfer request: 0.
2022-05-12 22:34:21,273 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:21,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) about to wait for the following futures []
2022-05-12 22:34:21,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) done waiting for dependent futures
2022-05-12 22:34:21,274 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146800640}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 146800640}
2022-05-12 22:34:21,274 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:22,307 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139722752}) to executor  for transfer request: 0.
2022-05-12 22:34:22,307 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:22,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) about to wait for the following futures []
2022-05-12 22:34:22,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) done waiting for dependent futures
2022-05-12 22:34:22,308 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139722752}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 139722752}
2022-05-12 22:34:22,308 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:22,880 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122683392}) to executor  for transfer request: 0.
2022-05-12 22:34:22,880 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:22,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) about to wait for the following futures []
2022-05-12 22:34:22,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) done waiting for dependent futures
2022-05-12 22:34:22,881 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122683392}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 122683392}
2022-05-12 22:34:22,881 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:26,276 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176160768}) to executor  for transfer request: 0.
2022-05-12 22:34:26,276 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:26,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) about to wait for the following futures []
2022-05-12 22:34:26,276 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) done waiting for dependent futures
2022-05-12 22:34:26,276 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176160768}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 176160768}
2022-05-12 22:34:26,276 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:26,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152567808}) to executor  for transfer request: 0.
2022-05-12 22:34:26,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:26,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) about to wait for the following futures []
2022-05-12 22:34:26,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) done waiting for dependent futures
2022-05-12 22:34:26,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152567808}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 152567808}
2022-05-12 22:34:26,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:26,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161480704}) to executor  for transfer request: 0.
2022-05-12 22:34:26,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:26,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) about to wait for the following futures []
2022-05-12 22:34:26,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) done waiting for dependent futures
2022-05-12 22:34:26,463 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161480704}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 161480704}
2022-05-12 22:34:26,463 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:26,873 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130023424}) to executor  for transfer request: 0.
2022-05-12 22:34:26,873 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:26,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) about to wait for the following futures []
2022-05-12 22:34:26,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) done waiting for dependent futures
2022-05-12 22:34:26,874 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130023424}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 130023424}
2022-05-12 22:34:26,874 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:27,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147062784}) to executor  for transfer request: 0.
2022-05-12 22:34:27,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:27,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) about to wait for the following futures []
2022-05-12 22:34:27,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) done waiting for dependent futures
2022-05-12 22:34:27,329 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147062784}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 147062784}
2022-05-12 22:34:27,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:28,613 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139984896}) to executor  for transfer request: 0.
2022-05-12 22:34:28,613 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:28,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) about to wait for the following futures []
2022-05-12 22:34:28,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) done waiting for dependent futures
2022-05-12 22:34:28,614 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139984896}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 139984896}
2022-05-12 22:34:28,614 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:28,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169869312}) to executor  for transfer request: 0.
2022-05-12 22:34:28,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:28,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) about to wait for the following futures []
2022-05-12 22:34:28,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) done waiting for dependent futures
2022-05-12 22:34:28,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169869312}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 169869312}
2022-05-12 22:34:28,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:29,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122945536}) to executor  for transfer request: 0.
2022-05-12 22:34:29,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:29,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) about to wait for the following futures []
2022-05-12 22:34:29,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) done waiting for dependent futures
2022-05-12 22:34:29,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122945536}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 122945536}
2022-05-12 22:34:29,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96468992}) to executor  for transfer request: 0.
2022-05-12 22:34:31,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) about to wait for the following futures []
2022-05-12 22:34:31,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) done waiting for dependent futures
2022-05-12 22:34:31,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96468992}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 96468992}
2022-05-12 22:34:31,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:33,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:34:33,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:33,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:34:33,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:34:33,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 6815744}
2022-05-12 22:34:33,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:33,534 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176422912}) to executor  for transfer request: 0.
2022-05-12 22:34:33,534 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:33,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) about to wait for the following futures []
2022-05-12 22:34:33,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) done waiting for dependent futures
2022-05-12 22:34:33,534 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176422912}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 176422912}
2022-05-12 22:34:33,534 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:35,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161742848}) to executor  for transfer request: 0.
2022-05-12 22:34:35,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:35,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) about to wait for the following futures []
2022-05-12 22:34:35,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) done waiting for dependent futures
2022-05-12 22:34:35,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161742848}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 161742848}
2022-05-12 22:34:35,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:35,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147324928}) to executor  for transfer request: 0.
2022-05-12 22:34:35,428 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:35,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) about to wait for the following futures []
2022-05-12 22:34:35,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) done waiting for dependent futures
2022-05-12 22:34:35,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147324928}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 147324928}
2022-05-12 22:34:35,428 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:35,430 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130285568}) to executor  for transfer request: 0.
2022-05-12 22:34:35,430 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:35,431 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) about to wait for the following futures []
2022-05-12 22:34:35,431 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) done waiting for dependent futures
2022-05-12 22:34:35,431 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130285568}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 130285568}
2022-05-12 22:34:35,431 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:36,124 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170131456}) to executor  for transfer request: 0.
2022-05-12 22:34:36,124 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:36,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) about to wait for the following futures []
2022-05-12 22:34:36,125 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) done waiting for dependent futures
2022-05-12 22:34:36,125 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170131456}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 170131456}
2022-05-12 22:34:36,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:36,377 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140247040}) to executor  for transfer request: 0.
2022-05-12 22:34:36,377 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:36,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) about to wait for the following futures []
2022-05-12 22:34:36,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) done waiting for dependent futures
2022-05-12 22:34:36,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140247040}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 140247040}
2022-05-12 22:34:36,378 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,772 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123207680}) to executor  for transfer request: 0.
2022-05-12 22:34:37,772 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) about to wait for the following futures []
2022-05-12 22:34:37,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) done waiting for dependent futures
2022-05-12 22:34:37,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123207680}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 123207680}
2022-05-12 22:34:37,773 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152829952}) to executor  for transfer request: 0.
2022-05-12 22:34:37,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) about to wait for the following futures []
2022-05-12 22:34:37,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) done waiting for dependent futures
2022-05-12 22:34:37,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152829952}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 152829952}
2022-05-12 22:34:37,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:40,556 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170393600}) to executor  for transfer request: 0.
2022-05-12 22:34:40,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:40,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) about to wait for the following futures []
2022-05-12 22:34:40,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) done waiting for dependent futures
2022-05-12 22:34:40,557 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170393600}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 170393600}
2022-05-12 22:34:40,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:41,218 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140509184}) to executor  for transfer request: 0.
2022-05-12 22:34:41,218 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) about to wait for the following futures []
2022-05-12 22:34:41,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) done waiting for dependent futures
2022-05-12 22:34:41,219 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140509184}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 140509184}
2022-05-12 22:34:41,219 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:41,501 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176685056}) to executor  for transfer request: 0.
2022-05-12 22:34:41,501 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) about to wait for the following futures []
2022-05-12 22:34:41,501 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) done waiting for dependent futures
2022-05-12 22:34:41,502 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176685056}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 176685056}
2022-05-12 22:34:41,502 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:43,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147587072}) to executor  for transfer request: 0.
2022-05-12 22:34:43,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:43,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) about to wait for the following futures []
2022-05-12 22:34:43,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) done waiting for dependent futures
2022-05-12 22:34:43,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147587072}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 147587072}
2022-05-12 22:34:43,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:43,817 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:34:43,817 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:43,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:34:43,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:34:43,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 7077888}
2022-05-12 22:34:43,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:44,123 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162004992}) to executor  for transfer request: 0.
2022-05-12 22:34:44,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:44,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) about to wait for the following futures []
2022-05-12 22:34:44,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) done waiting for dependent futures
2022-05-12 22:34:44,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162004992}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 162004992}
2022-05-12 22:34:44,124 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:45,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101974016}) to executor  for transfer request: 0.
2022-05-12 22:34:45,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:45,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) about to wait for the following futures []
2022-05-12 22:34:45,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) done waiting for dependent futures
2022-05-12 22:34:45,419 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101974016}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 101974016}
2022-05-12 22:34:45,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:46,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130547712}) to executor  for transfer request: 0.
2022-05-12 22:34:46,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:46,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) about to wait for the following futures []
2022-05-12 22:34:46,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) done waiting for dependent futures
2022-05-12 22:34:46,484 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130547712}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 130547712}
2022-05-12 22:34:46,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:46,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96731136}) to executor  for transfer request: 0.
2022-05-12 22:34:46,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:46,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) about to wait for the following futures []
2022-05-12 22:34:46,722 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) done waiting for dependent futures
2022-05-12 22:34:46,722 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96731136}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 96731136}
2022-05-12 22:34:46,722 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140771328}) to executor  for transfer request: 0.
2022-05-12 22:34:48,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) about to wait for the following futures []
2022-05-12 22:34:48,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) done waiting for dependent futures
2022-05-12 22:34:48,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140771328}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 140771328}
2022-05-12 22:34:48,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:48,870 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176947200}) to executor  for transfer request: 0.
2022-05-12 22:34:48,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:48,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) about to wait for the following futures []
2022-05-12 22:34:48,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) done waiting for dependent futures
2022-05-12 22:34:48,871 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176947200}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 176947200}
2022-05-12 22:34:48,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:49,384 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170655744}) to executor  for transfer request: 0.
2022-05-12 22:34:49,384 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:49,384 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) about to wait for the following futures []
2022-05-12 22:34:49,385 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) done waiting for dependent futures
2022-05-12 22:34:49,385 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170655744}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 170655744}
2022-05-12 22:34:49,385 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:50,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123469824}) to executor  for transfer request: 0.
2022-05-12 22:34:50,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:50,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) about to wait for the following futures []
2022-05-12 22:34:50,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) done waiting for dependent futures
2022-05-12 22:34:50,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123469824}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 123469824}
2022-05-12 22:34:50,543 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:50,791 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147849216}) to executor  for transfer request: 0.
2022-05-12 22:34:50,791 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:50,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) about to wait for the following futures []
2022-05-12 22:34:50,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) done waiting for dependent futures
2022-05-12 22:34:50,792 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147849216}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 147849216}
2022-05-12 22:34:50,792 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:51,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153092096}) to executor  for transfer request: 0.
2022-05-12 22:34:51,317 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:51,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) about to wait for the following futures []
2022-05-12 22:34:51,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) done waiting for dependent futures
2022-05-12 22:34:51,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153092096}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 153092096}
2022-05-12 22:34:51,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:53,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141033472}) to executor  for transfer request: 0.
2022-05-12 22:34:53,315 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:53,315 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) about to wait for the following futures []
2022-05-12 22:34:53,315 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) done waiting for dependent futures
2022-05-12 22:34:53,315 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141033472}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 141033472}
2022-05-12 22:34:53,316 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,811 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162267136}) to executor  for transfer request: 0.
2022-05-12 22:34:54,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) about to wait for the following futures []
2022-05-12 22:34:54,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) done waiting for dependent futures
2022-05-12 22:34:54,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162267136}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 162267136}
2022-05-12 22:34:54,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:55,756 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148111360}) to executor  for transfer request: 0.
2022-05-12 22:34:55,756 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:55,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) about to wait for the following futures []
2022-05-12 22:34:55,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) done waiting for dependent futures
2022-05-12 22:34:55,757 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148111360}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 148111360}
2022-05-12 22:34:55,757 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:55,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177209344}) to executor  for transfer request: 0.
2022-05-12 22:34:55,990 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:55,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) about to wait for the following futures []
2022-05-12 22:34:55,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) done waiting for dependent futures
2022-05-12 22:34:55,990 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177209344}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 177209344}
2022-05-12 22:34:55,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:56,040 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:34:56,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:56,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:34:56,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:34:56,041 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 7340032}
2022-05-12 22:34:56,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,913 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96993280}) to executor  for transfer request: 0.
2022-05-12 22:34:57,913 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:57,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) about to wait for the following futures []
2022-05-12 22:34:57,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) done waiting for dependent futures
2022-05-12 22:34:57,914 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96993280}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 96993280}
2022-05-12 22:34:57,914 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:57,919 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170917888}) to executor  for transfer request: 0.
2022-05-12 22:34:57,919 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:57,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) about to wait for the following futures []
2022-05-12 22:34:57,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) done waiting for dependent futures
2022-05-12 22:34:57,920 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170917888}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 170917888}
2022-05-12 22:34:57,920 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:59,284 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130809856}) to executor  for transfer request: 0.
2022-05-12 22:34:59,284 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:59,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) about to wait for the following futures []
2022-05-12 22:34:59,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) done waiting for dependent futures
2022-05-12 22:34:59,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130809856}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 130809856}
2022-05-12 22:34:59,285 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:59,570 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141295616}) to executor  for transfer request: 0.
2022-05-12 22:34:59,570 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:59,571 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) about to wait for the following futures []
2022-05-12 22:34:59,571 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) done waiting for dependent futures
2022-05-12 22:34:59,571 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141295616}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 141295616}
2022-05-12 22:34:59,571 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:59,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123731968}) to executor  for transfer request: 0.
2022-05-12 22:34:59,921 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:59,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) about to wait for the following futures []
2022-05-12 22:34:59,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) done waiting for dependent futures
2022-05-12 22:34:59,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123731968}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 123731968}
2022-05-12 22:34:59,922 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:01,711 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:35:01,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:01,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:35:01,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:35:01,712 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 7602176}
2022-05-12 22:35:01,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148373504}) to executor  for transfer request: 0.
2022-05-12 22:35:02,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) about to wait for the following futures []
2022-05-12 22:35:02,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) done waiting for dependent futures
2022-05-12 22:35:02,389 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148373504}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 148373504}
2022-05-12 22:35:02,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,592 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177471488}) to executor  for transfer request: 0.
2022-05-12 22:35:02,593 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) about to wait for the following futures []
2022-05-12 22:35:02,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) done waiting for dependent futures
2022-05-12 22:35:02,593 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177471488}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 177471488}
2022-05-12 22:35:02,594 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171180032}) to executor  for transfer request: 0.
2022-05-12 22:35:02,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) about to wait for the following futures []
2022-05-12 22:35:02,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) done waiting for dependent futures
2022-05-12 22:35:02,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171180032}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 171180032}
2022-05-12 22:35:02,856 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:03,270 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153354240}) to executor  for transfer request: 0.
2022-05-12 22:35:03,270 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:03,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) about to wait for the following futures []
2022-05-12 22:35:03,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) done waiting for dependent futures
2022-05-12 22:35:03,271 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153354240}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 153354240}
2022-05-12 22:35:03,271 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,473 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97255424}) to executor  for transfer request: 0.
2022-05-12 22:35:06,473 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) about to wait for the following futures []
2022-05-12 22:35:06,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) done waiting for dependent futures
2022-05-12 22:35:06,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97255424}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 97255424}
2022-05-12 22:35:06,474 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:06,622 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162529280}) to executor  for transfer request: 0.
2022-05-12 22:35:06,622 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:06,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) about to wait for the following futures []
2022-05-12 22:35:06,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) done waiting for dependent futures
2022-05-12 22:35:06,623 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162529280}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 162529280}
2022-05-12 22:35:06,623 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:07,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141557760}) to executor  for transfer request: 0.
2022-05-12 22:35:07,290 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:07,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) about to wait for the following futures []
2022-05-12 22:35:07,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) done waiting for dependent futures
2022-05-12 22:35:07,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141557760}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 141557760}
2022-05-12 22:35:07,291 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,044 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171442176}) to executor  for transfer request: 0.
2022-05-12 22:35:09,044 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) about to wait for the following futures []
2022-05-12 22:35:09,044 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) done waiting for dependent futures
2022-05-12 22:35:09,044 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171442176}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 171442176}
2022-05-12 22:35:09,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,078 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123994112}) to executor  for transfer request: 0.
2022-05-12 22:35:09,079 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) about to wait for the following futures []
2022-05-12 22:35:09,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) done waiting for dependent futures
2022-05-12 22:35:09,079 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123994112}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 123994112}
2022-05-12 22:35:09,080 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,801 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177733632}) to executor  for transfer request: 0.
2022-05-12 22:35:09,801 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) about to wait for the following futures []
2022-05-12 22:35:09,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) done waiting for dependent futures
2022-05-12 22:35:09,802 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177733632}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 177733632}
2022-05-12 22:35:09,802 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148635648}) to executor  for transfer request: 0.
2022-05-12 22:35:10,055 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) about to wait for the following futures []
2022-05-12 22:35:10,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) done waiting for dependent futures
2022-05-12 22:35:10,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148635648}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 148635648}
2022-05-12 22:35:10,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,879 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:35:10,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:35:10,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:35:10,880 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 7864320}
2022-05-12 22:35:10,880 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:12,561 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131072000}) to executor  for transfer request: 0.
2022-05-12 22:35:12,561 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:12,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) about to wait for the following futures []
2022-05-12 22:35:12,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) done waiting for dependent futures
2022-05-12 22:35:12,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131072000}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 131072000}
2022-05-12 22:35:12,562 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:14,712 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141819904}) to executor  for transfer request: 0.
2022-05-12 22:35:14,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:14,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) about to wait for the following futures []
2022-05-12 22:35:14,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) done waiting for dependent futures
2022-05-12 22:35:14,713 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141819904}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 141819904}
2022-05-12 22:35:14,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162791424}) to executor  for transfer request: 0.
2022-05-12 22:35:15,195 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) about to wait for the following futures []
2022-05-12 22:35:15,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) done waiting for dependent futures
2022-05-12 22:35:15,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162791424}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 162791424}
2022-05-12 22:35:15,196 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97517568}) to executor  for transfer request: 0.
2022-05-12 22:35:15,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) about to wait for the following futures []
2022-05-12 22:35:15,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) done waiting for dependent futures
2022-05-12 22:35:15,329 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97517568}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 97517568}
2022-05-12 22:35:15,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,934 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177995776}) to executor  for transfer request: 0.
2022-05-12 22:35:15,934 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) about to wait for the following futures []
2022-05-12 22:35:15,934 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) done waiting for dependent futures
2022-05-12 22:35:15,934 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177995776}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 177995776}
2022-05-12 22:35:15,935 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171704320}) to executor  for transfer request: 0.
2022-05-12 22:35:15,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) about to wait for the following futures []
2022-05-12 22:35:15,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) done waiting for dependent futures
2022-05-12 22:35:15,997 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171704320}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 171704320}
2022-05-12 22:35:15,998 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,039 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148897792}) to executor  for transfer request: 0.
2022-05-12 22:35:17,039 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:17,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) about to wait for the following futures []
2022-05-12 22:35:17,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) done waiting for dependent futures
2022-05-12 22:35:17,040 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148897792}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 148897792}
2022-05-12 22:35:17,040 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124256256}) to executor  for transfer request: 0.
2022-05-12 22:35:17,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:17,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) about to wait for the following futures []
2022-05-12 22:35:17,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) done waiting for dependent futures
2022-05-12 22:35:17,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124256256}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 124256256}
2022-05-12 22:35:17,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:35:20,105 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,105 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:35:20,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:35:20,105 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:35:20,106 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 8126464}
2022-05-12 22:35:20,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,107 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:35:20,107 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:35:20,107 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:35:20,108 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,161 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153616384}) to executor  for transfer request: 0.
2022-05-12 22:35:20,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) about to wait for the following futures []
2022-05-12 22:35:20,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) done waiting for dependent futures
2022-05-12 22:35:20,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153616384}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 153616384}
2022-05-12 22:35:20,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,879 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149159936}) to executor  for transfer request: 0.
2022-05-12 22:35:20,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) about to wait for the following futures []
2022-05-12 22:35:20,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) done waiting for dependent futures
2022-05-12 22:35:20,880 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149159936}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 149159936}
2022-05-12 22:35:20,880 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142082048}) to executor  for transfer request: 0.
2022-05-12 22:35:21,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) about to wait for the following futures []
2022-05-12 22:35:21,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) done waiting for dependent futures
2022-05-12 22:35:21,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142082048}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 142082048}
2022-05-12 22:35:21,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:22,946 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171966464}) to executor  for transfer request: 0.
2022-05-12 22:35:22,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:22,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) about to wait for the following futures []
2022-05-12 22:35:22,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) done waiting for dependent futures
2022-05-12 22:35:22,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171966464}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 171966464}
2022-05-12 22:35:22,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:23,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149422080}) to executor  for transfer request: 0.
2022-05-12 22:35:23,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:23,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) about to wait for the following futures []
2022-05-12 22:35:23,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) done waiting for dependent futures
2022-05-12 22:35:23,828 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149422080}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 149422080}
2022-05-12 22:35:23,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:24,107 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178257920}) to executor  for transfer request: 0.
2022-05-12 22:35:24,107 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:24,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) about to wait for the following futures []
2022-05-12 22:35:24,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) done waiting for dependent futures
2022-05-12 22:35:24,107 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178257920}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 178257920}
2022-05-12 22:35:24,108 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:24,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124518400}) to executor  for transfer request: 0.
2022-05-12 22:35:24,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:24,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) about to wait for the following futures []
2022-05-12 22:35:24,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) done waiting for dependent futures
2022-05-12 22:35:24,397 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124518400}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 124518400}
2022-05-12 22:35:24,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,424 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97779712}) to executor  for transfer request: 0.
2022-05-12 22:35:25,424 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) about to wait for the following futures []
2022-05-12 22:35:25,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) done waiting for dependent futures
2022-05-12 22:35:25,425 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97779712}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 97779712}
2022-05-12 22:35:25,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163053568}) to executor  for transfer request: 0.
2022-05-12 22:35:25,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) about to wait for the following futures []
2022-05-12 22:35:25,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) done waiting for dependent futures
2022-05-12 22:35:25,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163053568}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 163053568}
2022-05-12 22:35:25,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,873 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131334144}) to executor  for transfer request: 0.
2022-05-12 22:35:25,874 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) about to wait for the following futures []
2022-05-12 22:35:25,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) done waiting for dependent futures
2022-05-12 22:35:25,874 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131334144}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 131334144}
2022-05-12 22:35:25,875 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:26,171 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142344192}) to executor  for transfer request: 0.
2022-05-12 22:35:26,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:26,171 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:26,172 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) about to wait for the following futures []
2022-05-12 22:35:26,172 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) done waiting for dependent futures
2022-05-12 22:35:26,172 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=184549376-192937983'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 184549376, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:26,172 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:26,172 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:26,172 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:26,172 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:26,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) about to wait for the following futures []
2022-05-12 22:35:26,173 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:26,173 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) done waiting for dependent futures
2022-05-12 22:35:26,173 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:26,173 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142344192}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 142344192}
2022-05-12 22:35:26,174 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:26,174 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:35:26,174 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:26,174 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:26,175 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:26,175 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=184549376-192937983', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:26,175 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:26,175 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:26,175 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:26,175 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:26,175 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:26,175 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:26,176 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:35:26,176 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:35:26,176 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:26,176 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=184549376-192937983
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223526Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:26,176 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223526Z
20220512/eu-central-1/s3/aws4_request
97a0c73411ced0cc58b4069219e221a31cc36208064249466284624181330f68
2022-05-12 22:35:26,176 botocore.auth DEBUG    Signature:
c07f3d86e309173b10075feae542454a347fd9cff7b1e5c2654712ed7a7e820b
2022-05-12 22:35:26,176 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:26,177 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:26,177 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:26,177 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:26,396 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:26,397 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'OZr5hpYXRCrx1tu1RWWIbdfLX8CixSWjFOpV6aSoUQwfFngmG0P2r1i4W3c9H8ELbdywAwvtw/M=', 'x-amz-request-id': 'C8PSYE10TBW8KX3K', 'Date': 'Thu, 12 May 2022 22:35:27 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 184549376-192937983/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:26,397 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:26,398 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:26,398 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:26,398 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:28,648 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172228608}) to executor  for transfer request: 0.
2022-05-12 22:35:28,648 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:28,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) about to wait for the following futures []
2022-05-12 22:35:28,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) done waiting for dependent futures
2022-05-12 22:35:28,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172228608}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 172228608}
2022-05-12 22:35:28,649 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:28,951 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149684224}) to executor  for transfer request: 0.
2022-05-12 22:35:28,951 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:28,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) about to wait for the following futures []
2022-05-12 22:35:28,952 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) done waiting for dependent futures
2022-05-12 22:35:28,952 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149684224}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 149684224}
2022-05-12 22:35:28,953 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:30,970 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124780544}) to executor  for transfer request: 0.
2022-05-12 22:35:30,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:30,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) about to wait for the following futures []
2022-05-12 22:35:30,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) done waiting for dependent futures
2022-05-12 22:35:30,971 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124780544}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 124780544}
2022-05-12 22:35:30,971 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,092 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178520064}) to executor  for transfer request: 0.
2022-05-12 22:35:31,092 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) about to wait for the following futures []
2022-05-12 22:35:31,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) done waiting for dependent futures
2022-05-12 22:35:31,093 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178520064}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 178520064}
2022-05-12 22:35:31,094 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:32,525 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153878528}) to executor  for transfer request: 0.
2022-05-12 22:35:32,525 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:32,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) about to wait for the following futures []
2022-05-12 22:35:32,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) done waiting for dependent futures
2022-05-12 22:35:32,525 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153878528}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 153878528}
2022-05-12 22:35:32,526 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:33,011 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184549376}) to executor  for transfer request: 0.
2022-05-12 22:35:33,011 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:33,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) about to wait for the following futures []
2022-05-12 22:35:33,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) done waiting for dependent futures
2022-05-12 22:35:33,012 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184549376}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 184549376}
2022-05-12 22:35:33,013 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:33,369 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149946368}) to executor  for transfer request: 0.
2022-05-12 22:35:33,369 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:33,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) about to wait for the following futures []
2022-05-12 22:35:33,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) done waiting for dependent futures
2022-05-12 22:35:33,369 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149946368}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 149946368}
2022-05-12 22:35:33,370 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:34,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98041856}) to executor  for transfer request: 0.
2022-05-12 22:35:34,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) about to wait for the following futures []
2022-05-12 22:35:34,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) done waiting for dependent futures
2022-05-12 22:35:34,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98041856}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 98041856}
2022-05-12 22:35:34,266 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:34,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163315712}) to executor  for transfer request: 0.
2022-05-12 22:35:34,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,939 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) about to wait for the following futures []
2022-05-12 22:35:34,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) done waiting for dependent futures
2022-05-12 22:35:34,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163315712}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 163315712}
2022-05-12 22:35:34,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,919 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172490752}) to executor  for transfer request: 0.
2022-05-12 22:35:35,919 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) about to wait for the following futures []
2022-05-12 22:35:35,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) done waiting for dependent futures
2022-05-12 22:35:35,920 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172490752}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 172490752}
2022-05-12 22:35:35,920 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:36,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178782208}) to executor  for transfer request: 0.
2022-05-12 22:35:36,990 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:36,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) about to wait for the following futures []
2022-05-12 22:35:36,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) done waiting for dependent futures
2022-05-12 22:35:36,990 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178782208}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 178782208}
2022-05-12 22:35:36,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:38,232 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131596288}) to executor  for transfer request: 0.
2022-05-12 22:35:38,232 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:38,232 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) about to wait for the following futures []
2022-05-12 22:35:38,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) done waiting for dependent futures
2022-05-12 22:35:38,233 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131596288}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 131596288}
2022-05-12 22:35:38,233 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:39,727 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125042688}) to executor  for transfer request: 0.
2022-05-12 22:35:39,727 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:39,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) about to wait for the following futures []
2022-05-12 22:35:39,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) done waiting for dependent futures
2022-05-12 22:35:39,728 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125042688}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 125042688}
2022-05-12 22:35:39,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:40,754 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172752896}) to executor  for transfer request: 0.
2022-05-12 22:35:40,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:40,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) about to wait for the following futures []
2022-05-12 22:35:40,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) done waiting for dependent futures
2022-05-12 22:35:40,755 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172752896}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 172752896}
2022-05-12 22:35:40,755 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:42,061 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150208512}) to executor  for transfer request: 0.
2022-05-12 22:35:42,061 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:42,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) about to wait for the following futures []
2022-05-12 22:35:42,062 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) done waiting for dependent futures
2022-05-12 22:35:42,062 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150208512}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 150208512}
2022-05-12 22:35:42,062 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:42,385 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163577856}) to executor  for transfer request: 0.
2022-05-12 22:35:42,385 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:42,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) about to wait for the following futures []
2022-05-12 22:35:42,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) done waiting for dependent futures
2022-05-12 22:35:42,386 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163577856}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 163577856}
2022-05-12 22:35:42,386 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:42,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98304000}) to executor  for transfer request: 0.
2022-05-12 22:35:42,391 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:42,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) about to wait for the following futures []
2022-05-12 22:35:42,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) done waiting for dependent futures
2022-05-12 22:35:42,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98304000}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 98304000}
2022-05-12 22:35:42,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179044352}) to executor  for transfer request: 0.
2022-05-12 22:35:43,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) about to wait for the following futures []
2022-05-12 22:35:43,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) done waiting for dependent futures
2022-05-12 22:35:43,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179044352}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 179044352}
2022-05-12 22:35:43,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:45,824 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154140672}) to executor  for transfer request: 0.
2022-05-12 22:35:45,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:45,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) about to wait for the following futures []
2022-05-12 22:35:45,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) done waiting for dependent futures
2022-05-12 22:35:45,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154140672}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 154140672}
2022-05-12 22:35:45,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:47,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173015040}) to executor  for transfer request: 0.
2022-05-12 22:35:47,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:47,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) about to wait for the following futures []
2022-05-12 22:35:47,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) done waiting for dependent futures
2022-05-12 22:35:47,887 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173015040}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 173015040}
2022-05-12 22:35:47,887 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,499 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98566144}) to executor  for transfer request: 0.
2022-05-12 22:35:49,499 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) about to wait for the following futures []
2022-05-12 22:35:49,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) done waiting for dependent futures
2022-05-12 22:35:49,500 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98566144}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 98566144}
2022-05-12 22:35:49,500 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,707 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184811520}) to executor  for transfer request: 0.
2022-05-12 22:35:49,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) about to wait for the following futures []
2022-05-12 22:35:49,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) done waiting for dependent futures
2022-05-12 22:35:49,707 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184811520}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 184811520}
2022-05-12 22:35:49,707 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,906 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131858432}) to executor  for transfer request: 0.
2022-05-12 22:35:49,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) about to wait for the following futures []
2022-05-12 22:35:49,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) done waiting for dependent futures
2022-05-12 22:35:49,908 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131858432}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 131858432}
2022-05-12 22:35:49,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,995 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150470656}) to executor  for transfer request: 0.
2022-05-12 22:35:49,995 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) about to wait for the following futures []
2022-05-12 22:35:49,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) done waiting for dependent futures
2022-05-12 22:35:49,996 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150470656}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 150470656}
2022-05-12 22:35:49,996 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:50,351 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179306496}) to executor  for transfer request: 0.
2022-05-12 22:35:50,351 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:50,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) about to wait for the following futures []
2022-05-12 22:35:50,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) done waiting for dependent futures
2022-05-12 22:35:50,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179306496}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 179306496}
2022-05-12 22:35:50,352 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:50,451 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125304832}) to executor  for transfer request: 0.
2022-05-12 22:35:50,451 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:50,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) about to wait for the following futures []
2022-05-12 22:35:50,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) done waiting for dependent futures
2022-05-12 22:35:50,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125304832}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 125304832}
2022-05-12 22:35:50,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163840000}) to executor  for transfer request: 0.
2022-05-12 22:35:51,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) about to wait for the following futures []
2022-05-12 22:35:51,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) done waiting for dependent futures
2022-05-12 22:35:51,414 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163840000}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 163840000}
2022-05-12 22:35:51,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:55,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179568640}) to executor  for transfer request: 0.
2022-05-12 22:35:55,637 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:55,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) about to wait for the following futures []
2022-05-12 22:35:55,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) done waiting for dependent futures
2022-05-12 22:35:55,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179568640}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 179568640}
2022-05-12 22:35:55,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:55,820 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173277184}) to executor  for transfer request: 0.
2022-05-12 22:35:55,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:55,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) about to wait for the following futures []
2022-05-12 22:35:55,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) done waiting for dependent futures
2022-05-12 22:35:55,821 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173277184}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 173277184}
2022-05-12 22:35:55,821 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,225 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98828288}) to executor  for transfer request: 0.
2022-05-12 22:35:57,225 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) about to wait for the following futures []
2022-05-12 22:35:57,225 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) done waiting for dependent futures
2022-05-12 22:35:57,226 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98828288}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 98828288}
2022-05-12 22:35:57,226 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:58,069 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185073664}) to executor  for transfer request: 0.
2022-05-12 22:35:58,069 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:58,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) about to wait for the following futures []
2022-05-12 22:35:58,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) done waiting for dependent futures
2022-05-12 22:35:58,070 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185073664}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 185073664}
2022-05-12 22:35:58,070 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:58,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150732800}) to executor  for transfer request: 0.
2022-05-12 22:35:58,147 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:58,147 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:58,147 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) about to wait for the following futures []
2022-05-12 22:35:58,147 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) done waiting for dependent futures
2022-05-12 22:35:58,147 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) about to wait for the following futures []
2022-05-12 22:35:58,148 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=192937984-201326591'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 192937984, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:58,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) done waiting for dependent futures
2022-05-12 22:35:58,148 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:58,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150732800}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 150732800}
2022-05-12 22:35:58,148 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:58,148 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:58,149 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:58,149 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:58,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:58,149 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:58,149 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:58,149 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:35:58,149 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:58,150 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:58,150 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=192937984-201326591', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:58,150 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:58,150 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:58,150 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:58,150 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:58,150 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:58,150 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:58,150 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:35:58,150 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:35:58,151 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:58,151 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=192937984-201326591
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223558Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:58,151 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223558Z
20220512/eu-central-1/s3/aws4_request
611a7cfe2d2c648bab7fded9a49c06f2d4ae33b51fa334dad0b1ca9af30822f2
2022-05-12 22:35:58,151 botocore.auth DEBUG    Signature:
08d96a61d4cdfc2f98e668db8dcfb0fe623806bf93e4bc29c2a9bc0dc6aefe16
2022-05-12 22:35:58,151 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:58,151 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:58,151 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:58,152 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:58,152 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:35:58,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102236160}) to executor  for transfer request: 0.
2022-05-12 22:35:58,577 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:58,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) about to wait for the following futures []
2022-05-12 22:35:58,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) done waiting for dependent futures
2022-05-12 22:35:58,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102236160}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 102236160}
2022-05-12 22:35:58,578 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:58,943 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125566976}) to executor  for transfer request: 0.
2022-05-12 22:35:58,943 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:58,943 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:58,943 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) about to wait for the following futures []
2022-05-12 22:35:58,944 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) about to wait for the following futures []
2022-05-12 22:35:58,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) done waiting for dependent futures
2022-05-12 22:35:58,944 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) done waiting for dependent futures
2022-05-12 22:35:58,944 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125566976}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 125566976}
2022-05-12 22:35:58,944 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=201326592-209715199'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 201326592, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:58,945 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:58,945 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:58,945 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'z3SN/AeKRbE2yp9eaVunMjjmpIzlIcHJFsn87emUCtqr3WXo2sGwhX1ItzDL50+4e0EO06JEM1w=', 'x-amz-request-id': 'K870RPWP02JY49PP', 'Date': 'Thu, 12 May 2022 22:35:59 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 192937984-201326591/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:58,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:58,946 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:58,946 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:58,946 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:58,946 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:58,946 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:58,946 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:58,947 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:58,947 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=201326592-209715199', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:58,947 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:58,947 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:35:58,947 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:35:58,948 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:58,948 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=201326592-209715199
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223558Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:58,948 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223558Z
20220512/eu-central-1/s3/aws4_request
8777f72a911919c69a8f75cc9dbff94589145672d6463ea40dce52baebef763d
2022-05-12 22:35:58,948 botocore.auth DEBUG    Signature:
0d8344889a1387c86ce59ef4817017949c56559c21da8ac1133e81e0cede5be5
2022-05-12 22:35:58,948 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:58,948 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:58,948 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:58,948 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:59,180 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:59,180 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '8CU8vYDDdl1pCt2XOwr38//ikJJNLQOsWGynHD6RDWFE3NNABHg7Ng+jXhuklPqnZ3+HwLCyhtw=', 'x-amz-request-id': 'K87C81TYWR7KGYYD', 'Date': 'Thu, 12 May 2022 22:35:59 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 201326592-209715199/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:35:59,180 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:59,181 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:59,181 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:59,181 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:00,794 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132120576}) to executor  for transfer request: 0.
2022-05-12 22:36:00,794 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:00,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) about to wait for the following futures []
2022-05-12 22:36:00,795 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) done waiting for dependent futures
2022-05-12 22:36:00,795 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132120576}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 132120576}
2022-05-12 22:36:00,795 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:00,823 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164102144}) to executor  for transfer request: 0.
2022-05-12 22:36:00,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:00,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) about to wait for the following futures []
2022-05-12 22:36:00,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) done waiting for dependent futures
2022-05-12 22:36:00,824 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164102144}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 164102144}
2022-05-12 22:36:00,824 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:01,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154402816}) to executor  for transfer request: 0.
2022-05-12 22:36:01,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:01,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) about to wait for the following futures []
2022-05-12 22:36:01,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) done waiting for dependent futures
2022-05-12 22:36:01,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154402816}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 154402816}
2022-05-12 22:36:01,117 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:02,619 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179830784}) to executor  for transfer request: 0.
2022-05-12 22:36:02,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:02,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) about to wait for the following futures []
2022-05-12 22:36:02,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) done waiting for dependent futures
2022-05-12 22:36:02,620 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179830784}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 179830784}
2022-05-12 22:36:02,620 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,465 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173539328}) to executor  for transfer request: 0.
2022-05-12 22:36:05,465 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) about to wait for the following futures []
2022-05-12 22:36:05,466 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) done waiting for dependent futures
2022-05-12 22:36:05,466 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173539328}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 173539328}
2022-05-12 22:36:05,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,479 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201326592}) to executor  for transfer request: 0.
2022-05-12 22:36:05,480 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) about to wait for the following futures []
2022-05-12 22:36:05,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) done waiting for dependent futures
2022-05-12 22:36:05,480 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201326592}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 201326592}
2022-05-12 22:36:05,481 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,727 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99090432}) to executor  for transfer request: 0.
2022-05-12 22:36:05,727 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) about to wait for the following futures []
2022-05-12 22:36:05,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) done waiting for dependent futures
2022-05-12 22:36:05,728 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99090432}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 99090432}
2022-05-12 22:36:05,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:06,594 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185335808}) to executor  for transfer request: 0.
2022-05-12 22:36:06,594 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:06,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) about to wait for the following futures []
2022-05-12 22:36:06,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) done waiting for dependent futures
2022-05-12 22:36:06,595 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185335808}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 185335808}
2022-05-12 22:36:06,595 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:06,887 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180092928}) to executor  for transfer request: 0.
2022-05-12 22:36:06,887 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:06,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) about to wait for the following futures []
2022-05-12 22:36:06,888 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) done waiting for dependent futures
2022-05-12 22:36:06,888 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180092928}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 180092928}
2022-05-12 22:36:06,888 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:08,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192937984}) to executor  for transfer request: 0.
2022-05-12 22:36:08,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:08,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) about to wait for the following futures []
2022-05-12 22:36:08,740 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) done waiting for dependent futures
2022-05-12 22:36:08,740 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192937984}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 192937984}
2022-05-12 22:36:08,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:10,307 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173801472}) to executor  for transfer request: 0.
2022-05-12 22:36:10,307 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:10,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) about to wait for the following futures []
2022-05-12 22:36:10,307 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) done waiting for dependent futures
2022-05-12 22:36:10,308 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173801472}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 173801472}
2022-05-12 22:36:10,308 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:11,598 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185597952}) to executor  for transfer request: 0.
2022-05-12 22:36:11,599 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:11,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) about to wait for the following futures []
2022-05-12 22:36:11,599 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) done waiting for dependent futures
2022-05-12 22:36:11,599 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185597952}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 185597952}
2022-05-12 22:36:11,600 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:12,963 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164364288}) to executor  for transfer request: 0.
2022-05-12 22:36:12,963 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:12,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) about to wait for the following futures []
2022-05-12 22:36:12,964 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) done waiting for dependent futures
2022-05-12 22:36:12,964 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164364288}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 164364288}
2022-05-12 22:36:12,964 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:13,159 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132382720}) to executor  for transfer request: 0.
2022-05-12 22:36:13,160 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:13,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) about to wait for the following futures []
2022-05-12 22:36:13,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) done waiting for dependent futures
2022-05-12 22:36:13,160 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132382720}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 132382720}
2022-05-12 22:36:13,160 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:13,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201588736}) to executor  for transfer request: 0.
2022-05-12 22:36:13,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:13,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) about to wait for the following futures []
2022-05-12 22:36:13,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) done waiting for dependent futures
2022-05-12 22:36:13,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201588736}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 201588736}
2022-05-12 22:36:13,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:14,408 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180355072}) to executor  for transfer request: 0.
2022-05-12 22:36:14,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:14,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) about to wait for the following futures []
2022-05-12 22:36:14,409 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) done waiting for dependent futures
2022-05-12 22:36:14,409 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180355072}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 180355072}
2022-05-12 22:36:14,410 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,019 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99352576}) to executor  for transfer request: 0.
2022-05-12 22:36:15,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) about to wait for the following futures []
2022-05-12 22:36:15,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) done waiting for dependent futures
2022-05-12 22:36:15,020 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99352576}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 99352576}
2022-05-12 22:36:15,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:16,892 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154664960}) to executor  for transfer request: 0.
2022-05-12 22:36:16,892 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:16,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) about to wait for the following futures []
2022-05-12 22:36:16,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) done waiting for dependent futures
2022-05-12 22:36:16,893 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154664960}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 154664960}
2022-05-12 22:36:16,893 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174063616}) to executor  for transfer request: 0.
2022-05-12 22:36:17,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) about to wait for the following futures []
2022-05-12 22:36:17,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) done waiting for dependent futures
2022-05-12 22:36:17,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174063616}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 174063616}
2022-05-12 22:36:17,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185860096}) to executor  for transfer request: 0.
2022-05-12 22:36:17,772 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) about to wait for the following futures []
2022-05-12 22:36:17,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) done waiting for dependent futures
2022-05-12 22:36:17,772 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185860096}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 185860096}
2022-05-12 22:36:17,773 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:19,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193200128}) to executor  for transfer request: 0.
2022-05-12 22:36:19,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:19,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) about to wait for the following futures []
2022-05-12 22:36:19,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) done waiting for dependent futures
2022-05-12 22:36:19,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193200128}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 193200128}
2022-05-12 22:36:19,266 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:20,825 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164626432}) to executor  for transfer request: 0.
2022-05-12 22:36:20,825 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:20,826 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) about to wait for the following futures []
2022-05-12 22:36:20,826 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) done waiting for dependent futures
2022-05-12 22:36:20,826 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164626432}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 164626432}
2022-05-12 22:36:20,826 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:22,866 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132644864}) to executor  for transfer request: 0.
2022-05-12 22:36:22,866 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:22,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) about to wait for the following futures []
2022-05-12 22:36:22,866 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) done waiting for dependent futures
2022-05-12 22:36:22,867 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132644864}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 132644864}
2022-05-12 22:36:22,867 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,008 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201850880}) to executor  for transfer request: 0.
2022-05-12 22:36:24,008 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:24,009 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) about to wait for the following futures []
2022-05-12 22:36:24,009 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) done waiting for dependent futures
2022-05-12 22:36:24,009 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201850880}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 201850880}
2022-05-12 22:36:24,010 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99614720}) to executor  for transfer request: 0.
2022-05-12 22:36:24,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:24,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) about to wait for the following futures []
2022-05-12 22:36:24,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) done waiting for dependent futures
2022-05-12 22:36:24,307 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99614720}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 99614720}
2022-05-12 22:36:24,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174325760}) to executor  for transfer request: 0.
2022-05-12 22:36:24,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:24,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) about to wait for the following futures []
2022-05-12 22:36:24,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) done waiting for dependent futures
2022-05-12 22:36:24,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174325760}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 174325760}
2022-05-12 22:36:24,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180617216}) to executor  for transfer request: 0.
2022-05-12 22:36:24,771 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:24,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) about to wait for the following futures []
2022-05-12 22:36:24,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) done waiting for dependent futures
2022-05-12 22:36:24,772 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180617216}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 180617216}
2022-05-12 22:36:24,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,545 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186122240}) to executor  for transfer request: 0.
2022-05-12 22:36:27,545 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) about to wait for the following futures []
2022-05-12 22:36:27,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) done waiting for dependent futures
2022-05-12 22:36:27,546 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186122240}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 186122240}
2022-05-12 22:36:27,546 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:28,972 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99876864}) to executor  for transfer request: 0.
2022-05-12 22:36:28,972 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:28,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) about to wait for the following futures []
2022-05-12 22:36:28,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) done waiting for dependent futures
2022-05-12 22:36:28,973 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99876864}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 99876864}
2022-05-12 22:36:28,973 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:29,219 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193462272}) to executor  for transfer request: 0.
2022-05-12 22:36:29,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:29,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) about to wait for the following futures []
2022-05-12 22:36:29,220 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) done waiting for dependent futures
2022-05-12 22:36:29,220 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193462272}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 193462272}
2022-05-12 22:36:29,221 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180879360}) to executor  for transfer request: 0.
2022-05-12 22:36:30,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) about to wait for the following futures []
2022-05-12 22:36:30,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) done waiting for dependent futures
2022-05-12 22:36:30,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180879360}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 180879360}
2022-05-12 22:36:30,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,758 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154927104}) to executor  for transfer request: 0.
2022-05-12 22:36:30,758 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) about to wait for the following futures []
2022-05-12 22:36:30,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) done waiting for dependent futures
2022-05-12 22:36:30,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154927104}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 154927104}
2022-05-12 22:36:30,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164888576}) to executor  for transfer request: 0.
2022-05-12 22:36:31,508 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:31,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) about to wait for the following futures []
2022-05-12 22:36:31,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) done waiting for dependent futures
2022-05-12 22:36:31,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164888576}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 164888576}
2022-05-12 22:36:31,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:32,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202113024}) to executor  for transfer request: 0.
2022-05-12 22:36:32,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:32,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) about to wait for the following futures []
2022-05-12 22:36:32,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) done waiting for dependent futures
2022-05-12 22:36:32,436 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202113024}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 202113024}
2022-05-12 22:36:32,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,218 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132907008}) to executor  for transfer request: 0.
2022-05-12 22:36:33,218 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) about to wait for the following futures []
2022-05-12 22:36:33,219 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) done waiting for dependent futures
2022-05-12 22:36:33,219 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132907008}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 132907008}
2022-05-12 22:36:33,219 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:34,536 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100139008}) to executor  for transfer request: 0.
2022-05-12 22:36:34,536 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:34,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) about to wait for the following futures []
2022-05-12 22:36:34,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) done waiting for dependent futures
2022-05-12 22:36:34,537 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100139008}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 100139008}
2022-05-12 22:36:34,537 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:34,726 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174587904}) to executor  for transfer request: 0.
2022-05-12 22:36:34,726 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:34,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) about to wait for the following futures []
2022-05-12 22:36:34,726 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) done waiting for dependent futures
2022-05-12 22:36:34,726 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174587904}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 174587904}
2022-05-12 22:36:34,727 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:37,369 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193724416}) to executor  for transfer request: 0.
2022-05-12 22:36:37,369 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:37,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) about to wait for the following futures []
2022-05-12 22:36:37,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) done waiting for dependent futures
2022-05-12 22:36:37,369 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193724416}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 193724416}
2022-05-12 22:36:37,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:37,461 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186384384}) to executor  for transfer request: 0.
2022-05-12 22:36:37,461 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:37,461 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) about to wait for the following futures []
2022-05-12 22:36:37,461 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) done waiting for dependent futures
2022-05-12 22:36:37,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186384384}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 186384384}
2022-05-12 22:36:37,462 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:39,487 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181141504}) to executor  for transfer request: 0.
2022-05-12 22:36:39,488 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:39,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) about to wait for the following futures []
2022-05-12 22:36:39,488 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) done waiting for dependent futures
2022-05-12 22:36:39,488 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181141504}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 181141504}
2022-05-12 22:36:39,489 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,566 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174850048}) to executor  for transfer request: 0.
2022-05-12 22:36:41,567 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) about to wait for the following futures []
2022-05-12 22:36:41,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) done waiting for dependent futures
2022-05-12 22:36:41,567 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174850048}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 174850048}
2022-05-12 22:36:41,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:42,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202375168}) to executor  for transfer request: 0.
2022-05-12 22:36:42,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:42,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) about to wait for the following futures []
2022-05-12 22:36:42,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) done waiting for dependent futures
2022-05-12 22:36:42,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202375168}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 202375168}
2022-05-12 22:36:42,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:42,337 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100401152}) to executor  for transfer request: 0.
2022-05-12 22:36:42,337 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:42,337 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:42,337 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) about to wait for the following futures []
2022-05-12 22:36:42,338 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) done waiting for dependent futures
2022-05-12 22:36:42,338 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=34>, 'extra_args': {'Range': 'bytes=209715200-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 209715200, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:42,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) about to wait for the following futures []
2022-05-12 22:36:42,338 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:42,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) done waiting for dependent futures
2022-05-12 22:36:42,339 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:42,339 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100401152}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 100401152}
2022-05-12 22:36:42,339 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:42,339 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:42,339 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:42,339 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:42,340 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:42,340 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:42,340 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:36:42,340 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:42,340 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:42,340 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=209715200-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:42,340 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:42,341 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:42,341 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:42,341 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:42,341 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:42,341 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:42,341 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:36:42,341 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data/BANDS.npy
2022-05-12 22:36:42,341 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:42,342 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_3_3/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=209715200-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223642Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:42,342 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223642Z
20220512/eu-central-1/s3/aws4_request
676fb5ec5a0136a66476a122a54a62d68da6a65feaf53c36a941350611f2d2e9
2022-05-12 22:36:42,342 botocore.auth DEBUG    Signature:
e37f82edacffc8479123b2732879cfb3be7783aa62f6f9da105a2250a02014c3
2022-05-12 22:36:42,342 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:42,342 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:42,342 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:42,342 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:42,342 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:36:43,764 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165150720}) to executor  for transfer request: 0.
2022-05-12 22:36:43,764 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:43,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) about to wait for the following futures []
2022-05-12 22:36:43,765 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) done waiting for dependent futures
2022-05-12 22:36:43,765 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165150720}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 165150720}
2022-05-12 22:36:43,765 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:44,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133169152}) to executor  for transfer request: 0.
2022-05-12 22:36:44,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:44,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) about to wait for the following futures []
2022-05-12 22:36:44,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) done waiting for dependent futures
2022-05-12 22:36:44,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133169152}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 133169152}
2022-05-12 22:36:44,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,175 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155189248}) to executor  for transfer request: 0.
2022-05-12 22:36:45,175 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:45,175 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) about to wait for the following futures []
2022-05-12 22:36:45,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) done waiting for dependent futures
2022-05-12 22:36:45,176 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155189248}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 155189248}
2022-05-12 22:36:45,176 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:46,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181403648}) to executor  for transfer request: 0.
2022-05-12 22:36:46,913 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:46,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) about to wait for the following futures []
2022-05-12 22:36:46,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) done waiting for dependent futures
2022-05-12 22:36:46,913 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181403648}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 181403648}
2022-05-12 22:36:46,914 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:47,420 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186646528}) to executor  for transfer request: 0.
2022-05-12 22:36:47,420 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) about to wait for the following futures []
2022-05-12 22:36:47,421 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) done waiting for dependent futures
2022-05-12 22:36:47,421 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186646528}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 186646528}
2022-05-12 22:36:47,421 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:47,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193986560}) to executor  for transfer request: 0.
2022-05-12 22:36:47,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) about to wait for the following futures []
2022-05-12 22:36:47,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) done waiting for dependent futures
2022-05-12 22:36:47,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193986560}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 193986560}
2022-05-12 22:36:47,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:48,361 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_3_3/data/BANDS.npy HTTP/1.1" 206 3244928
2022-05-12 22:36:48,361 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'lxvKTjiiybI5SC4yZv+TO+++omZLXMLWp1/EPlydNjB84hSzM8RiL3/3O3MPU6nNWLh7gDECk3o=', 'x-amz-request-id': '8WSJANVCBG6DG1BF', 'Date': 'Thu, 12 May 2022 22:36:49 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:04:10 GMT', 'ETag': '"3846787fb49f8e43ffba81b3901a514b-26"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 209715200-212960127/212960128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '3244928'}
2022-05-12 22:36:48,361 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:48,362 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:48,362 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:48,362 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:50,214 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175112192}) to executor  for transfer request: 0.
2022-05-12 22:36:50,214 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) about to wait for the following futures []
2022-05-12 22:36:50,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) done waiting for dependent futures
2022-05-12 22:36:50,215 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175112192}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 175112192}
2022-05-12 22:36:50,215 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:52,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209715200}) to executor  for transfer request: 0.
2022-05-12 22:36:52,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:52,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) about to wait for the following futures []
2022-05-12 22:36:52,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) done waiting for dependent futures
2022-05-12 22:36:52,010 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209715200}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 209715200}
2022-05-12 22:36:52,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:53,261 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165412864}) to executor  for transfer request: 0.
2022-05-12 22:36:53,261 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:53,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) about to wait for the following futures []
2022-05-12 22:36:53,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) done waiting for dependent futures
2022-05-12 22:36:53,262 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165412864}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 165412864}
2022-05-12 22:36:53,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:53,977 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186908672}) to executor  for transfer request: 0.
2022-05-12 22:36:53,977 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:53,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) about to wait for the following futures []
2022-05-12 22:36:53,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) done waiting for dependent futures
2022-05-12 22:36:53,978 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186908672}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 186908672}
2022-05-12 22:36:53,978 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:55,824 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155451392}) to executor  for transfer request: 0.
2022-05-12 22:36:55,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:55,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) about to wait for the following futures []
2022-05-12 22:36:55,825 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) done waiting for dependent futures
2022-05-12 22:36:55,825 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155451392}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 155451392}
2022-05-12 22:36:55,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:56,156 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202637312}) to executor  for transfer request: 0.
2022-05-12 22:36:56,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:56,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) about to wait for the following futures []
2022-05-12 22:36:56,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) done waiting for dependent futures
2022-05-12 22:36:56,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202637312}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 202637312}
2022-05-12 22:36:56,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:56,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181665792}) to executor  for transfer request: 0.
2022-05-12 22:36:56,498 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:56,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) about to wait for the following futures []
2022-05-12 22:36:56,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) done waiting for dependent futures
2022-05-12 22:36:56,498 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181665792}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 181665792}
2022-05-12 22:36:56,499 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:56,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175374336}) to executor  for transfer request: 0.
2022-05-12 22:36:56,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:56,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) about to wait for the following futures []
2022-05-12 22:36:56,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) done waiting for dependent futures
2022-05-12 22:36:56,948 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175374336}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 175374336}
2022-05-12 22:36:56,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:58,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133431296}) to executor  for transfer request: 0.
2022-05-12 22:36:58,355 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:58,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) about to wait for the following futures []
2022-05-12 22:36:58,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) done waiting for dependent futures
2022-05-12 22:36:58,356 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133431296}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 133431296}
2022-05-12 22:36:58,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:59,570 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187170816}) to executor  for transfer request: 0.
2022-05-12 22:36:59,570 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:59,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) about to wait for the following futures []
2022-05-12 22:36:59,571 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) done waiting for dependent futures
2022-05-12 22:36:59,571 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187170816}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 187170816}
2022-05-12 22:36:59,571 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:00,459 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209977344}) to executor  for transfer request: 0.
2022-05-12 22:37:00,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:00,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) about to wait for the following futures []
2022-05-12 22:37:00,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) done waiting for dependent futures
2022-05-12 22:37:00,460 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209977344}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 209977344}
2022-05-12 22:37:00,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:00,930 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102498304}) to executor  for transfer request: 0.
2022-05-12 22:37:00,930 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:00,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) about to wait for the following futures []
2022-05-12 22:37:00,931 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) done waiting for dependent futures
2022-05-12 22:37:00,931 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102498304}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 102498304}
2022-05-12 22:37:00,931 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181927936}) to executor  for transfer request: 0.
2022-05-12 22:37:02,611 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) about to wait for the following futures []
2022-05-12 22:37:02,611 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) done waiting for dependent futures
2022-05-12 22:37:02,612 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181927936}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 181927936}
2022-05-12 22:37:02,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:03,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165675008}) to executor  for transfer request: 0.
2022-05-12 22:37:03,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:03,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) about to wait for the following futures []
2022-05-12 22:37:03,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) done waiting for dependent futures
2022-05-12 22:37:03,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165675008}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 165675008}
2022-05-12 22:37:03,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:03,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133693440}) to executor  for transfer request: 0.
2022-05-12 22:37:03,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:03,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) about to wait for the following futures []
2022-05-12 22:37:03,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) done waiting for dependent futures
2022-05-12 22:37:03,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133693440}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 133693440}
2022-05-12 22:37:03,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:04,019 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175636480}) to executor  for transfer request: 0.
2022-05-12 22:37:04,019 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:04,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) about to wait for the following futures []
2022-05-12 22:37:04,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) done waiting for dependent futures
2022-05-12 22:37:04,020 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175636480}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 175636480}
2022-05-12 22:37:04,020 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:07,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187432960}) to executor  for transfer request: 0.
2022-05-12 22:37:07,026 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:07,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) about to wait for the following futures []
2022-05-12 22:37:07,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) done waiting for dependent futures
2022-05-12 22:37:07,027 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187432960}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 187432960}
2022-05-12 22:37:07,027 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,187 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155713536}) to executor  for transfer request: 0.
2022-05-12 22:37:08,187 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) about to wait for the following futures []
2022-05-12 22:37:08,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) done waiting for dependent futures
2022-05-12 22:37:08,187 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155713536}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 155713536}
2022-05-12 22:37:08,188 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:09,133 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175898624}) to executor  for transfer request: 0.
2022-05-12 22:37:09,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:09,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:09,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) about to wait for the following futures []
2022-05-12 22:37:09,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) done waiting for dependent futures
2022-05-12 22:37:09,134 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175898624}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 175898624}
2022-05-12 22:37:09,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:09,751 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210239488}) to executor  for transfer request: 0.
2022-05-12 22:37:09,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:09,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) about to wait for the following futures []
2022-05-12 22:37:09,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) done waiting for dependent futures
2022-05-12 22:37:09,752 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210239488}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 210239488}
2022-05-12 22:37:09,752 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:09,940 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165937152}) to executor  for transfer request: 0.
2022-05-12 22:37:09,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:09,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) about to wait for the following futures []
2022-05-12 22:37:09,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) done waiting for dependent futures
2022-05-12 22:37:09,941 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165937152}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 165937152}
2022-05-12 22:37:09,942 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182190080}) to executor  for transfer request: 0.
2022-05-12 22:37:11,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:11,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) about to wait for the following futures []
2022-05-12 22:37:11,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) done waiting for dependent futures
2022-05-12 22:37:11,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182190080}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 182190080}
2022-05-12 22:37:11,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,415 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133955584}) to executor  for transfer request: 0.
2022-05-12 22:37:11,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:11,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) about to wait for the following futures []
2022-05-12 22:37:11,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) done waiting for dependent futures
2022-05-12 22:37:11,416 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133955584}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 133955584}
2022-05-12 22:37:11,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,915 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187695104}) to executor  for transfer request: 0.
2022-05-12 22:37:11,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:11,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) about to wait for the following futures []
2022-05-12 22:37:11,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) done waiting for dependent futures
2022-05-12 22:37:11,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187695104}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 187695104}
2022-05-12 22:37:11,916 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:13,954 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202899456}) to executor  for transfer request: 0.
2022-05-12 22:37:13,955 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:13,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) about to wait for the following futures []
2022-05-12 22:37:13,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) done waiting for dependent futures
2022-05-12 22:37:13,955 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202899456}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 202899456}
2022-05-12 22:37:13,956 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:14,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182452224}) to executor  for transfer request: 0.
2022-05-12 22:37:14,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:14,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) about to wait for the following futures []
2022-05-12 22:37:14,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) done waiting for dependent futures
2022-05-12 22:37:14,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182452224}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 182452224}
2022-05-12 22:37:14,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:15,050 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187957248}) to executor  for transfer request: 0.
2022-05-12 22:37:15,050 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:15,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) about to wait for the following futures []
2022-05-12 22:37:15,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) done waiting for dependent futures
2022-05-12 22:37:15,051 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187957248}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 187957248}
2022-05-12 22:37:15,051 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:15,603 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210501632}) to executor  for transfer request: 0.
2022-05-12 22:37:15,603 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:15,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) about to wait for the following futures []
2022-05-12 22:37:15,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) done waiting for dependent futures
2022-05-12 22:37:15,604 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210501632}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 210501632}
2022-05-12 22:37:15,605 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:16,593 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182714368}) to executor  for transfer request: 0.
2022-05-12 22:37:16,593 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:16,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) about to wait for the following futures []
2022-05-12 22:37:16,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) done waiting for dependent futures
2022-05-12 22:37:16,593 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182714368}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 182714368}
2022-05-12 22:37:16,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,074 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102760448}) to executor  for transfer request: 0.
2022-05-12 22:37:17,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) about to wait for the following futures []
2022-05-12 22:37:17,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) done waiting for dependent futures
2022-05-12 22:37:17,075 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102760448}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 102760448}
2022-05-12 22:37:17,076 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:19,197 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166199296}) to executor  for transfer request: 0.
2022-05-12 22:37:19,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:19,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) about to wait for the following futures []
2022-05-12 22:37:19,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) done waiting for dependent futures
2022-05-12 22:37:19,198 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166199296}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 166199296}
2022-05-12 22:37:19,198 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:19,654 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210763776}) to executor  for transfer request: 0.
2022-05-12 22:37:19,654 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:19,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) about to wait for the following futures []
2022-05-12 22:37:19,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) done waiting for dependent futures
2022-05-12 22:37:19,655 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210763776}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 210763776}
2022-05-12 22:37:19,655 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:20,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182976512}) to executor  for transfer request: 0.
2022-05-12 22:37:20,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:20,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) about to wait for the following futures []
2022-05-12 22:37:20,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) done waiting for dependent futures
2022-05-12 22:37:20,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182976512}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 182976512}
2022-05-12 22:37:20,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:21,489 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188219392}) to executor  for transfer request: 0.
2022-05-12 22:37:21,490 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:21,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) about to wait for the following futures []
2022-05-12 22:37:21,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) done waiting for dependent futures
2022-05-12 22:37:21,490 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188219392}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 188219392}
2022-05-12 22:37:21,491 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,181 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155975680}) to executor  for transfer request: 0.
2022-05-12 22:37:22,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) about to wait for the following futures []
2022-05-12 22:37:22,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) done waiting for dependent futures
2022-05-12 22:37:22,182 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155975680}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 155975680}
2022-05-12 22:37:22,183 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,613 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194248704}) to executor  for transfer request: 0.
2022-05-12 22:37:22,613 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) about to wait for the following futures []
2022-05-12 22:37:22,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) done waiting for dependent futures
2022-05-12 22:37:22,613 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194248704}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 194248704}
2022-05-12 22:37:22,614 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:24,369 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203161600}) to executor  for transfer request: 0.
2022-05-12 22:37:24,370 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:24,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) about to wait for the following futures []
2022-05-12 22:37:24,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) done waiting for dependent futures
2022-05-12 22:37:24,370 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203161600}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 203161600}
2022-05-12 22:37:24,371 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:25,431 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166461440}) to executor  for transfer request: 0.
2022-05-12 22:37:25,431 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:25,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) about to wait for the following futures []
2022-05-12 22:37:25,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) done waiting for dependent futures
2022-05-12 22:37:25,432 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166461440}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 166461440}
2022-05-12 22:37:25,432 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,028 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211025920}) to executor  for transfer request: 0.
2022-05-12 22:37:27,028 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) about to wait for the following futures []
2022-05-12 22:37:27,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) done waiting for dependent futures
2022-05-12 22:37:27,029 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211025920}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 211025920}
2022-05-12 22:37:27,029 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183238656}) to executor  for transfer request: 0.
2022-05-12 22:37:27,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) about to wait for the following futures []
2022-05-12 22:37:27,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) done waiting for dependent futures
2022-05-12 22:37:27,758 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183238656}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 183238656}
2022-05-12 22:37:27,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:31,789 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188481536}) to executor  for transfer request: 0.
2022-05-12 22:37:31,789 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:31,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) about to wait for the following futures []
2022-05-12 22:37:31,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) done waiting for dependent futures
2022-05-12 22:37:31,790 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188481536}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 188481536}
2022-05-12 22:37:31,790 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156237824}) to executor  for transfer request: 0.
2022-05-12 22:37:32,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) about to wait for the following futures []
2022-05-12 22:37:32,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) done waiting for dependent futures
2022-05-12 22:37:32,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156237824}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 156237824}
2022-05-12 22:37:32,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,767 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211288064}) to executor  for transfer request: 0.
2022-05-12 22:37:32,767 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,768 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) about to wait for the following futures []
2022-05-12 22:37:32,768 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) done waiting for dependent futures
2022-05-12 22:37:32,768 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211288064}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 211288064}
2022-05-12 22:37:32,768 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:33,182 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183500800}) to executor  for transfer request: 0.
2022-05-12 22:37:33,183 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:33,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) about to wait for the following futures []
2022-05-12 22:37:33,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) done waiting for dependent futures
2022-05-12 22:37:33,183 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183500800}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 183500800}
2022-05-12 22:37:33,184 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:34,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166723584}) to executor  for transfer request: 0.
2022-05-12 22:37:34,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:34,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) about to wait for the following futures []
2022-05-12 22:37:34,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) done waiting for dependent futures
2022-05-12 22:37:34,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166723584}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 166723584}
2022-05-12 22:37:34,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:35,754 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188743680}) to executor  for transfer request: 0.
2022-05-12 22:37:35,755 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:35,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) about to wait for the following futures []
2022-05-12 22:37:35,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) done waiting for dependent futures
2022-05-12 22:37:35,755 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188743680}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 188743680}
2022-05-12 22:37:35,756 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:38,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211550208}) to executor  for transfer request: 0.
2022-05-12 22:37:38,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:38,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) about to wait for the following futures []
2022-05-12 22:37:38,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) done waiting for dependent futures
2022-05-12 22:37:38,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211550208}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 211550208}
2022-05-12 22:37:38,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:39,099 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183762944}) to executor  for transfer request: 0.
2022-05-12 22:37:39,099 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:39,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) about to wait for the following futures []
2022-05-12 22:37:39,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) done waiting for dependent futures
2022-05-12 22:37:39,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183762944}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 183762944}
2022-05-12 22:37:39,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:39,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203423744}) to executor  for transfer request: 0.
2022-05-12 22:37:39,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:39,168 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) about to wait for the following futures []
2022-05-12 22:37:39,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) done waiting for dependent futures
2022-05-12 22:37:39,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203423744}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 203423744}
2022-05-12 22:37:39,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:39,337 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103022592}) to executor  for transfer request: 0.
2022-05-12 22:37:39,337 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:39,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) about to wait for the following futures []
2022-05-12 22:37:39,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) done waiting for dependent futures
2022-05-12 22:37:39,337 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103022592}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 103022592}
2022-05-12 22:37:39,338 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:39,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189005824}) to executor  for transfer request: 0.
2022-05-12 22:37:39,573 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:39,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) about to wait for the following futures []
2022-05-12 22:37:39,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) done waiting for dependent futures
2022-05-12 22:37:39,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189005824}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 189005824}
2022-05-12 22:37:39,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:40,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166985728}) to executor  for transfer request: 0.
2022-05-12 22:37:40,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:40,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) about to wait for the following futures []
2022-05-12 22:37:40,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) done waiting for dependent futures
2022-05-12 22:37:40,549 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166985728}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 166985728}
2022-05-12 22:37:40,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,549 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156499968}) to executor  for transfer request: 0.
2022-05-12 22:37:41,549 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) about to wait for the following futures []
2022-05-12 22:37:41,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) done waiting for dependent futures
2022-05-12 22:37:41,549 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156499968}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 156499968}
2022-05-12 22:37:41,550 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189267968}) to executor  for transfer request: 0.
2022-05-12 22:37:44,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) about to wait for the following futures []
2022-05-12 22:37:44,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) done waiting for dependent futures
2022-05-12 22:37:44,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189267968}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 189267968}
2022-05-12 22:37:44,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211812352}) to executor  for transfer request: 0.
2022-05-12 22:37:45,295 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) about to wait for the following futures []
2022-05-12 22:37:45,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) done waiting for dependent futures
2022-05-12 22:37:45,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211812352}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 211812352}
2022-05-12 22:37:45,296 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,880 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184025088}) to executor  for transfer request: 0.
2022-05-12 22:37:45,880 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) about to wait for the following futures []
2022-05-12 22:37:45,880 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) done waiting for dependent futures
2022-05-12 22:37:45,881 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184025088}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 184025088}
2022-05-12 22:37:45,881 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,848 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194510848}) to executor  for transfer request: 0.
2022-05-12 22:37:46,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) about to wait for the following futures []
2022-05-12 22:37:46,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) done waiting for dependent futures
2022-05-12 22:37:46,849 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194510848}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 194510848}
2022-05-12 22:37:46,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,159 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212074496}) to executor  for transfer request: 0.
2022-05-12 22:37:49,159 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:49,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) about to wait for the following futures []
2022-05-12 22:37:49,160 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) done waiting for dependent futures
2022-05-12 22:37:49,160 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212074496}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 212074496}
2022-05-12 22:37:49,160 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,429 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189530112}) to executor  for transfer request: 0.
2022-05-12 22:37:49,429 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:49,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) about to wait for the following futures []
2022-05-12 22:37:49,430 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) done waiting for dependent futures
2022-05-12 22:37:49,430 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189530112}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 189530112}
2022-05-12 22:37:49,430 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184287232}) to executor  for transfer request: 0.
2022-05-12 22:37:49,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:49,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) about to wait for the following futures []
2022-05-12 22:37:49,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) done waiting for dependent futures
2022-05-12 22:37:49,982 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184287232}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 184287232}
2022-05-12 22:37:49,983 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:50,011 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203685888}) to executor  for transfer request: 0.
2022-05-12 22:37:50,011 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:50,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) about to wait for the following futures []
2022-05-12 22:37:50,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) done waiting for dependent futures
2022-05-12 22:37:50,012 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203685888}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 203685888}
2022-05-12 22:37:50,012 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:50,290 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167247872}) to executor  for transfer request: 0.
2022-05-12 22:37:50,290 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:50,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) about to wait for the following futures []
2022-05-12 22:37:50,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) done waiting for dependent futures
2022-05-12 22:37:50,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167247872}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 167247872}
2022-05-12 22:37:50,290 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:53,012 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212336640}) to executor  for transfer request: 0.
2022-05-12 22:37:53,012 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:53,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) about to wait for the following futures []
2022-05-12 22:37:53,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) done waiting for dependent futures
2022-05-12 22:37:53,013 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212336640}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 212336640}
2022-05-12 22:37:53,013 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:54,349 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156762112}) to executor  for transfer request: 0.
2022-05-12 22:37:54,349 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:54,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) about to wait for the following futures []
2022-05-12 22:37:54,350 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) done waiting for dependent futures
2022-05-12 22:37:54,350 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156762112}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 156762112}
2022-05-12 22:37:54,350 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:54,358 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189792256}) to executor  for transfer request: 0.
2022-05-12 22:37:54,358 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:54,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) about to wait for the following futures []
2022-05-12 22:37:54,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) done waiting for dependent futures
2022-05-12 22:37:54,358 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189792256}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 189792256}
2022-05-12 22:37:54,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:54,613 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103284736}) to executor  for transfer request: 0.
2022-05-12 22:37:54,614 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:54,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) about to wait for the following futures []
2022-05-12 22:37:54,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) done waiting for dependent futures
2022-05-12 22:37:54,614 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103284736}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 103284736}
2022-05-12 22:37:54,615 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:55,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167510016}) to executor  for transfer request: 0.
2022-05-12 22:37:55,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:55,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:55,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) about to wait for the following futures []
2022-05-12 22:37:55,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) done waiting for dependent futures
2022-05-12 22:37:55,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167510016}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 167510016}
2022-05-12 22:37:55,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,943 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194772992}) to executor  for transfer request: 0.
2022-05-12 22:37:56,943 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) about to wait for the following futures []
2022-05-12 22:37:56,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) done waiting for dependent futures
2022-05-12 22:37:56,944 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194772992}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 194772992}
2022-05-12 22:37:56,944 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,988 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212598784}) to executor  for transfer request: 0.
2022-05-12 22:37:56,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) about to wait for the following futures []
2022-05-12 22:37:56,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) done waiting for dependent futures
2022-05-12 22:37:56,989 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212598784}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 212598784}
2022-05-12 22:37:56,989 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:58,795 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157024256}) to executor  for transfer request: 0.
2022-05-12 22:37:58,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:58,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) about to wait for the following futures []
2022-05-12 22:37:58,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) done waiting for dependent futures
2022-05-12 22:37:58,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157024256}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 157024256}
2022-05-12 22:37:58,796 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:59,704 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190054400}) to executor  for transfer request: 0.
2022-05-12 22:37:59,704 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:59,704 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) about to wait for the following futures []
2022-05-12 22:37:59,705 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) done waiting for dependent futures
2022-05-12 22:37:59,705 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190054400}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 190054400}
2022-05-12 22:37:59,705 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:00,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212860928}) to executor  for transfer request: 0.
2022-05-12 22:38:00,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:00,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:00,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) about to wait for the following futures []
2022-05-12 22:38:00,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) done waiting for dependent futures
2022-05-12 22:38:00,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212860928}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 212860928}
2022-05-12 22:38:00,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,080 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203948032}) to executor  for transfer request: 0.
2022-05-12 22:38:01,080 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) about to wait for the following futures []
2022-05-12 22:38:01,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) done waiting for dependent futures
2022-05-12 22:38:01,081 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203948032}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 203948032}
2022-05-12 22:38:01,081 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:02,197 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190316544}) to executor  for transfer request: 0.
2022-05-12 22:38:02,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:02,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) about to wait for the following futures []
2022-05-12 22:38:02,197 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) done waiting for dependent futures
2022-05-12 22:38:02,197 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190316544}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 190316544}
2022-05-12 22:38:02,197 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:07,288 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190578688}) to executor  for transfer request: 0.
2022-05-12 22:38:07,288 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:07,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) about to wait for the following futures []
2022-05-12 22:38:07,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) done waiting for dependent futures
2022-05-12 22:38:07,289 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190578688}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 190578688}
2022-05-12 22:38:07,289 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:07,519 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157286400}) to executor  for transfer request: 0.
2022-05-12 22:38:07,520 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:07,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) about to wait for the following futures []
2022-05-12 22:38:07,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) done waiting for dependent futures
2022-05-12 22:38:07,520 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157286400}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 157286400}
2022-05-12 22:38:07,521 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,089 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195035136}) to executor  for transfer request: 0.
2022-05-12 22:38:08,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) about to wait for the following futures []
2022-05-12 22:38:08,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) done waiting for dependent futures
2022-05-12 22:38:08,090 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195035136}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 195035136}
2022-05-12 22:38:08,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:09,736 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103546880}) to executor  for transfer request: 0.
2022-05-12 22:38:09,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:09,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) about to wait for the following futures []
2022-05-12 22:38:09,737 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) done waiting for dependent futures
2022-05-12 22:38:09,737 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103546880}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 103546880}
2022-05-12 22:38:09,737 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:12,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204210176}) to executor  for transfer request: 0.
2022-05-12 22:38:12,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:12,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) about to wait for the following futures []
2022-05-12 22:38:12,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) done waiting for dependent futures
2022-05-12 22:38:12,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204210176}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 204210176}
2022-05-12 22:38:12,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:16,114 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190840832}) to executor  for transfer request: 0.
2022-05-12 22:38:16,114 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:16,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) about to wait for the following futures []
2022-05-12 22:38:16,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) done waiting for dependent futures
2022-05-12 22:38:16,115 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190840832}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 190840832}
2022-05-12 22:38:16,115 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:16,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157548544}) to executor  for transfer request: 0.
2022-05-12 22:38:16,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:16,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) about to wait for the following futures []
2022-05-12 22:38:16,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) done waiting for dependent futures
2022-05-12 22:38:16,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157548544}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 157548544}
2022-05-12 22:38:16,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:18,714 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195297280}) to executor  for transfer request: 0.
2022-05-12 22:38:18,714 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:18,714 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) about to wait for the following futures []
2022-05-12 22:38:18,715 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) done waiting for dependent futures
2022-05-12 22:38:18,715 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195297280}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 195297280}
2022-05-12 22:38:18,715 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:21,768 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191102976}) to executor  for transfer request: 0.
2022-05-12 22:38:21,768 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:21,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) about to wait for the following futures []
2022-05-12 22:38:21,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) done waiting for dependent futures
2022-05-12 22:38:21,769 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191102976}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 191102976}
2022-05-12 22:38:21,770 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:21,793 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204472320}) to executor  for transfer request: 0.
2022-05-12 22:38:21,794 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:21,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) about to wait for the following futures []
2022-05-12 22:38:21,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) done waiting for dependent futures
2022-05-12 22:38:21,794 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204472320}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 204472320}
2022-05-12 22:38:21,794 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:25,906 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157810688}) to executor  for transfer request: 0.
2022-05-12 22:38:25,906 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:25,906 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) about to wait for the following futures []
2022-05-12 22:38:25,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) done waiting for dependent futures
2022-05-12 22:38:25,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157810688}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 157810688}
2022-05-12 22:38:25,907 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:25,937 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195559424}) to executor  for transfer request: 0.
2022-05-12 22:38:25,937 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:25,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) about to wait for the following futures []
2022-05-12 22:38:25,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) done waiting for dependent futures
2022-05-12 22:38:25,938 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195559424}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 195559424}
2022-05-12 22:38:25,938 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,378 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191365120}) to executor  for transfer request: 0.
2022-05-12 22:38:26,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) about to wait for the following futures []
2022-05-12 22:38:26,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) done waiting for dependent futures
2022-05-12 22:38:26,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191365120}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 191365120}
2022-05-12 22:38:26,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103809024}) to executor  for transfer request: 0.
2022-05-12 22:38:26,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) about to wait for the following futures []
2022-05-12 22:38:26,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) done waiting for dependent futures
2022-05-12 22:38:26,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103809024}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 103809024}
2022-05-12 22:38:26,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,389 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191627264}) to executor  for transfer request: 0.
2022-05-12 22:38:31,389 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) about to wait for the following futures []
2022-05-12 22:38:31,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) done waiting for dependent futures
2022-05-12 22:38:31,390 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191627264}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 191627264}
2022-05-12 22:38:31,390 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:32,121 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195821568}) to executor  for transfer request: 0.
2022-05-12 22:38:32,121 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:32,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) about to wait for the following futures []
2022-05-12 22:38:32,121 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) done waiting for dependent futures
2022-05-12 22:38:32,121 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195821568}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 195821568}
2022-05-12 22:38:32,122 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204734464}) to executor  for transfer request: 0.
2022-05-12 22:38:33,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:33,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) about to wait for the following futures []
2022-05-12 22:38:33,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) done waiting for dependent futures
2022-05-12 22:38:33,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204734464}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 204734464}
2022-05-12 22:38:33,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:34,640 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158072832}) to executor  for transfer request: 0.
2022-05-12 22:38:34,640 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:34,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) about to wait for the following futures []
2022-05-12 22:38:34,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) done waiting for dependent futures
2022-05-12 22:38:34,640 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158072832}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 158072832}
2022-05-12 22:38:34,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,706 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191889408}) to executor  for transfer request: 0.
2022-05-12 22:38:35,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) about to wait for the following futures []
2022-05-12 22:38:35,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) done waiting for dependent futures
2022-05-12 22:38:35,707 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191889408}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 191889408}
2022-05-12 22:38:35,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:38,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104071168}) to executor  for transfer request: 0.
2022-05-12 22:38:38,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:38,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) about to wait for the following futures []
2022-05-12 22:38:38,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) done waiting for dependent futures
2022-05-12 22:38:38,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104071168}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 104071168}
2022-05-12 22:38:38,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,831 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196083712}) to executor  for transfer request: 0.
2022-05-12 22:38:40,831 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) about to wait for the following futures []
2022-05-12 22:38:40,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) done waiting for dependent futures
2022-05-12 22:38:40,832 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196083712}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 196083712}
2022-05-12 22:38:40,832 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:41,658 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158334976}) to executor  for transfer request: 0.
2022-05-12 22:38:41,658 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:41,659 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) about to wait for the following futures []
2022-05-12 22:38:41,659 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) done waiting for dependent futures
2022-05-12 22:38:41,659 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158334976}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 158334976}
2022-05-12 22:38:41,659 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:41,719 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192151552}) to executor  for transfer request: 0.
2022-05-12 22:38:41,719 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:41,719 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) about to wait for the following futures []
2022-05-12 22:38:41,719 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) done waiting for dependent futures
2022-05-12 22:38:41,720 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192151552}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 192151552}
2022-05-12 22:38:41,720 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:43,520 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204996608}) to executor  for transfer request: 0.
2022-05-12 22:38:43,520 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:43,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) about to wait for the following futures []
2022-05-12 22:38:43,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) done waiting for dependent futures
2022-05-12 22:38:43,522 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204996608}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 204996608}
2022-05-12 22:38:43,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:46,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104333312}) to executor  for transfer request: 0.
2022-05-12 22:38:46,772 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:46,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) about to wait for the following futures []
2022-05-12 22:38:46,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) done waiting for dependent futures
2022-05-12 22:38:46,772 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104333312}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 104333312}
2022-05-12 22:38:46,773 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,182 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196345856}) to executor  for transfer request: 0.
2022-05-12 22:38:47,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:47,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) about to wait for the following futures []
2022-05-12 22:38:47,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) done waiting for dependent futures
2022-05-12 22:38:47,182 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196345856}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 196345856}
2022-05-12 22:38:47,183 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192413696}) to executor  for transfer request: 0.
2022-05-12 22:38:47,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:47,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) about to wait for the following futures []
2022-05-12 22:38:47,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) done waiting for dependent futures
2022-05-12 22:38:47,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192413696}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 192413696}
2022-05-12 22:38:47,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,559 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205258752}) to executor  for transfer request: 0.
2022-05-12 22:38:48,559 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:48,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) about to wait for the following futures []
2022-05-12 22:38:48,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) done waiting for dependent futures
2022-05-12 22:38:48,560 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205258752}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 205258752}
2022-05-12 22:38:48,560 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:49,047 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158597120}) to executor  for transfer request: 0.
2022-05-12 22:38:49,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:49,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) about to wait for the following futures []
2022-05-12 22:38:49,048 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) done waiting for dependent futures
2022-05-12 22:38:49,048 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158597120}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 158597120}
2022-05-12 22:38:49,049 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,180 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192675840}) to executor  for transfer request: 0.
2022-05-12 22:38:52,180 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:52,180 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) about to wait for the following futures []
2022-05-12 22:38:52,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) done waiting for dependent futures
2022-05-12 22:38:52,181 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192675840}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 192675840}
2022-05-12 22:38:52,181 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104595456}) to executor  for transfer request: 0.
2022-05-12 22:38:54,565 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) about to wait for the following futures []
2022-05-12 22:38:54,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) done waiting for dependent futures
2022-05-12 22:38:54,565 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104595456}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 104595456}
2022-05-12 22:38:54,566 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,934 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205520896}) to executor  for transfer request: 0.
2022-05-12 22:38:54,935 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) about to wait for the following futures []
2022-05-12 22:38:54,935 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) done waiting for dependent futures
2022-05-12 22:38:54,935 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205520896}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 205520896}
2022-05-12 22:38:54,936 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:56,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196608000}) to executor  for transfer request: 0.
2022-05-12 22:38:56,147 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:56,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) about to wait for the following futures []
2022-05-12 22:38:56,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) done waiting for dependent futures
2022-05-12 22:38:56,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196608000}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 196608000}
2022-05-12 22:38:56,148 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:58,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158859264}) to executor  for transfer request: 0.
2022-05-12 22:38:58,317 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:58,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) about to wait for the following futures []
2022-05-12 22:38:58,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) done waiting for dependent futures
2022-05-12 22:38:58,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158859264}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 158859264}
2022-05-12 22:38:58,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:59,587 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205783040}) to executor  for transfer request: 0.
2022-05-12 22:38:59,587 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:59,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) about to wait for the following futures []
2022-05-12 22:38:59,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) done waiting for dependent futures
2022-05-12 22:38:59,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205783040}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 205783040}
2022-05-12 22:38:59,588 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,033 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196870144}) to executor  for transfer request: 0.
2022-05-12 22:39:03,034 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) about to wait for the following futures []
2022-05-12 22:39:03,034 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) done waiting for dependent futures
2022-05-12 22:39:03,034 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196870144}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 196870144}
2022-05-12 22:39:03,035 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,659 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104857600}) to executor  for transfer request: 0.
2022-05-12 22:39:03,659 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,659 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) about to wait for the following futures []
2022-05-12 22:39:03,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) done waiting for dependent futures
2022-05-12 22:39:03,660 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104857600}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 104857600}
2022-05-12 22:39:03,660 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,022 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159121408}) to executor  for transfer request: 0.
2022-05-12 22:39:04,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:04,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) about to wait for the following futures []
2022-05-12 22:39:04,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) done waiting for dependent futures
2022-05-12 22:39:04,023 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159121408}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 159121408}
2022-05-12 22:39:04,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:05,841 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105119744}) to executor  for transfer request: 0.
2022-05-12 22:39:05,841 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:05,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) about to wait for the following futures []
2022-05-12 22:39:05,841 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) done waiting for dependent futures
2022-05-12 22:39:05,842 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105119744}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 105119744}
2022-05-12 22:39:05,842 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:06,233 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197132288}) to executor  for transfer request: 0.
2022-05-12 22:39:06,233 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:06,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) about to wait for the following futures []
2022-05-12 22:39:06,233 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) done waiting for dependent futures
2022-05-12 22:39:06,234 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197132288}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 197132288}
2022-05-12 22:39:06,234 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:06,978 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105381888}) to executor  for transfer request: 0.
2022-05-12 22:39:06,978 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:06,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) about to wait for the following futures []
2022-05-12 22:39:06,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) done waiting for dependent futures
2022-05-12 22:39:06,979 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105381888}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 105381888}
2022-05-12 22:39:06,979 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:08,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197394432}) to executor  for transfer request: 0.
2022-05-12 22:39:08,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:08,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) about to wait for the following futures []
2022-05-12 22:39:08,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) done waiting for dependent futures
2022-05-12 22:39:08,858 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197394432}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 197394432}
2022-05-12 22:39:08,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206045184}) to executor  for transfer request: 0.
2022-05-12 22:39:09,059 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) about to wait for the following futures []
2022-05-12 22:39:09,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) done waiting for dependent futures
2022-05-12 22:39:09,059 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206045184}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 206045184}
2022-05-12 22:39:09,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:10,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105644032}) to executor  for transfer request: 0.
2022-05-12 22:39:10,982 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:10,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) about to wait for the following futures []
2022-05-12 22:39:10,982 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) done waiting for dependent futures
2022-05-12 22:39:10,982 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105644032}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 105644032}
2022-05-12 22:39:10,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:13,106 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197656576}) to executor  for transfer request: 0.
2022-05-12 22:39:13,106 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:13,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) about to wait for the following futures []
2022-05-12 22:39:13,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) done waiting for dependent futures
2022-05-12 22:39:13,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197656576}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 197656576}
2022-05-12 22:39:13,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:14,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197918720}) to executor  for transfer request: 0.
2022-05-12 22:39:14,685 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:14,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) about to wait for the following futures []
2022-05-12 22:39:14,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) done waiting for dependent futures
2022-05-12 22:39:14,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197918720}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 197918720}
2022-05-12 22:39:14,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:14,964 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206307328}) to executor  for transfer request: 0.
2022-05-12 22:39:14,964 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:14,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) about to wait for the following futures []
2022-05-12 22:39:14,965 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) done waiting for dependent futures
2022-05-12 22:39:14,965 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206307328}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 206307328}
2022-05-12 22:39:14,965 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:15,919 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105906176}) to executor  for transfer request: 0.
2022-05-12 22:39:15,919 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:15,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) about to wait for the following futures []
2022-05-12 22:39:15,919 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) done waiting for dependent futures
2022-05-12 22:39:15,920 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105906176}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 105906176}
2022-05-12 22:39:15,920 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206569472}) to executor  for transfer request: 0.
2022-05-12 22:39:17,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) about to wait for the following futures []
2022-05-12 22:39:17,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) done waiting for dependent futures
2022-05-12 22:39:17,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206569472}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 206569472}
2022-05-12 22:39:17,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:18,320 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106168320}) to executor  for transfer request: 0.
2022-05-12 22:39:18,320 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:18,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) about to wait for the following futures []
2022-05-12 22:39:18,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) done waiting for dependent futures
2022-05-12 22:39:18,321 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106168320}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 106168320}
2022-05-12 22:39:18,321 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:18,838 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198180864}) to executor  for transfer request: 0.
2022-05-12 22:39:18,838 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:18,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) about to wait for the following futures []
2022-05-12 22:39:18,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) done waiting for dependent futures
2022-05-12 22:39:18,839 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198180864}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 198180864}
2022-05-12 22:39:18,840 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,318 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206831616}) to executor  for transfer request: 0.
2022-05-12 22:39:19,318 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) about to wait for the following futures []
2022-05-12 22:39:19,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) done waiting for dependent futures
2022-05-12 22:39:19,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206831616}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 206831616}
2022-05-12 22:39:19,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,262 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106430464}) to executor  for transfer request: 0.
2022-05-12 22:39:22,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) about to wait for the following futures []
2022-05-12 22:39:22,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) done waiting for dependent futures
2022-05-12 22:39:22,263 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106430464}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 106430464}
2022-05-12 22:39:22,263 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,687 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198443008}) to executor  for transfer request: 0.
2022-05-12 22:39:22,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) about to wait for the following futures []
2022-05-12 22:39:22,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) done waiting for dependent futures
2022-05-12 22:39:22,688 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198443008}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 198443008}
2022-05-12 22:39:22,688 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,843 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207093760}) to executor  for transfer request: 0.
2022-05-12 22:39:22,843 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) about to wait for the following futures []
2022-05-12 22:39:22,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) done waiting for dependent futures
2022-05-12 22:39:22,844 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207093760}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 207093760}
2022-05-12 22:39:22,844 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:24,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198705152}) to executor  for transfer request: 0.
2022-05-12 22:39:24,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:24,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) about to wait for the following futures []
2022-05-12 22:39:24,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) done waiting for dependent futures
2022-05-12 22:39:24,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198705152}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 198705152}
2022-05-12 22:39:24,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:25,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207355904}) to executor  for transfer request: 0.
2022-05-12 22:39:25,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:25,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) about to wait for the following futures []
2022-05-12 22:39:25,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) done waiting for dependent futures
2022-05-12 22:39:25,709 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207355904}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 207355904}
2022-05-12 22:39:25,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106692608}) to executor  for transfer request: 0.
2022-05-12 22:39:26,310 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:26,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) about to wait for the following futures []
2022-05-12 22:39:26,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) done waiting for dependent futures
2022-05-12 22:39:26,311 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106692608}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 106692608}
2022-05-12 22:39:26,311 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:27,179 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198967296}) to executor  for transfer request: 0.
2022-05-12 22:39:27,180 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:27,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) about to wait for the following futures []
2022-05-12 22:39:27,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) done waiting for dependent futures
2022-05-12 22:39:27,180 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198967296}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 198967296}
2022-05-12 22:39:27,181 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:28,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199229440}) to executor  for transfer request: 0.
2022-05-12 22:39:28,458 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:28,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) about to wait for the following futures []
2022-05-12 22:39:28,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) done waiting for dependent futures
2022-05-12 22:39:28,458 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199229440}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 199229440}
2022-05-12 22:39:28,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,249 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199491584}) to executor  for transfer request: 0.
2022-05-12 22:39:29,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) about to wait for the following futures []
2022-05-12 22:39:29,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) done waiting for dependent futures
2022-05-12 22:39:29,250 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199491584}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 199491584}
2022-05-12 22:39:29,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,624 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207618048}) to executor  for transfer request: 0.
2022-05-12 22:39:29,624 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) about to wait for the following futures []
2022-05-12 22:39:29,624 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) done waiting for dependent futures
2022-05-12 22:39:29,624 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207618048}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 207618048}
2022-05-12 22:39:29,624 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,776 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106954752}) to executor  for transfer request: 0.
2022-05-12 22:39:29,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) about to wait for the following futures []
2022-05-12 22:39:29,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) done waiting for dependent futures
2022-05-12 22:39:29,777 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106954752}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 106954752}
2022-05-12 22:39:29,777 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:30,156 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199753728}) to executor  for transfer request: 0.
2022-05-12 22:39:30,156 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:30,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) about to wait for the following futures []
2022-05-12 22:39:30,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) done waiting for dependent futures
2022-05-12 22:39:30,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199753728}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 199753728}
2022-05-12 22:39:30,157 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:31,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200015872}) to executor  for transfer request: 0.
2022-05-12 22:39:31,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:31,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) about to wait for the following futures []
2022-05-12 22:39:31,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) done waiting for dependent futures
2022-05-12 22:39:31,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200015872}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 200015872}
2022-05-12 22:39:31,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:31,055 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107216896}) to executor  for transfer request: 0.
2022-05-12 22:39:31,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:31,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) about to wait for the following futures []
2022-05-12 22:39:31,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) done waiting for dependent futures
2022-05-12 22:39:31,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107216896}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 107216896}
2022-05-12 22:39:31,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207880192}) to executor  for transfer request: 0.
2022-05-12 22:39:32,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) about to wait for the following futures []
2022-05-12 22:39:32,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) done waiting for dependent futures
2022-05-12 22:39:32,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207880192}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 207880192}
2022-05-12 22:39:32,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,848 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200278016}) to executor  for transfer request: 0.
2022-05-12 22:39:32,848 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) about to wait for the following futures []
2022-05-12 22:39:32,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) done waiting for dependent futures
2022-05-12 22:39:32,849 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200278016}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 200278016}
2022-05-12 22:39:32,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:33,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107479040}) to executor  for transfer request: 0.
2022-05-12 22:39:33,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) about to wait for the following futures []
2022-05-12 22:39:33,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) done waiting for dependent futures
2022-05-12 22:39:33,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107479040}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 107479040}
2022-05-12 22:39:33,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:33,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200540160}) to executor  for transfer request: 0.
2022-05-12 22:39:33,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) about to wait for the following futures []
2022-05-12 22:39:33,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) done waiting for dependent futures
2022-05-12 22:39:33,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200540160}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 200540160}
2022-05-12 22:39:33,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,464 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200802304}) to executor  for transfer request: 0.
2022-05-12 22:39:34,464 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) about to wait for the following futures []
2022-05-12 22:39:34,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) done waiting for dependent futures
2022-05-12 22:39:34,465 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200802304}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 200802304}
2022-05-12 22:39:34,466 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208142336}) to executor  for transfer request: 0.
2022-05-12 22:39:34,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) about to wait for the following futures []
2022-05-12 22:39:34,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) done waiting for dependent futures
2022-05-12 22:39:34,867 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208142336}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 208142336}
2022-05-12 22:39:34,867 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:35,107 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201064448}) to executor  for transfer request: 0.
2022-05-12 22:39:35,107 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:35,108 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:35,108 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) about to wait for the following futures []
2022-05-12 22:39:35,108 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) done waiting for dependent futures
2022-05-12 22:39:35,108 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201064448}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 201064448}
2022-05-12 22:39:35,109 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:37,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208404480}) to executor  for transfer request: 0.
2022-05-12 22:39:37,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:37,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) about to wait for the following futures []
2022-05-12 22:39:37,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) done waiting for dependent futures
2022-05-12 22:39:37,005 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208404480}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 208404480}
2022-05-12 22:39:37,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:37,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107741184}) to executor  for transfer request: 0.
2022-05-12 22:39:37,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:37,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) about to wait for the following futures []
2022-05-12 22:39:37,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) done waiting for dependent futures
2022-05-12 22:39:37,036 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107741184}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 107741184}
2022-05-12 22:39:37,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:39,022 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108003328}) to executor  for transfer request: 0.
2022-05-12 22:39:39,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:39,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) about to wait for the following futures []
2022-05-12 22:39:39,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) done waiting for dependent futures
2022-05-12 22:39:39,023 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108003328}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 108003328}
2022-05-12 22:39:39,024 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:39,265 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208666624}) to executor  for transfer request: 0.
2022-05-12 22:39:39,265 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:39,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) about to wait for the following futures []
2022-05-12 22:39:39,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) done waiting for dependent futures
2022-05-12 22:39:39,265 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208666624}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 208666624}
2022-05-12 22:39:39,266 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108265472}) to executor  for transfer request: 0.
2022-05-12 22:39:40,443 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) about to wait for the following futures []
2022-05-12 22:39:40,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) done waiting for dependent futures
2022-05-12 22:39:40,443 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108265472}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 108265472}
2022-05-12 22:39:40,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:41,092 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208928768}) to executor  for transfer request: 0.
2022-05-12 22:39:41,093 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:41,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) about to wait for the following futures []
2022-05-12 22:39:41,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) done waiting for dependent futures
2022-05-12 22:39:41,094 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208928768}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 208928768}
2022-05-12 22:39:41,094 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:41,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108527616}) to executor  for transfer request: 0.
2022-05-12 22:39:41,413 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:41,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) about to wait for the following futures []
2022-05-12 22:39:41,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) done waiting for dependent futures
2022-05-12 22:39:41,413 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108527616}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 108527616}
2022-05-12 22:39:41,414 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,859 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108789760}) to executor  for transfer request: 0.
2022-05-12 22:39:42,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) about to wait for the following futures []
2022-05-12 22:39:42,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) done waiting for dependent futures
2022-05-12 22:39:42,860 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108789760}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 108789760}
2022-05-12 22:39:42,860 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209190912}) to executor  for transfer request: 0.
2022-05-12 22:39:42,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) about to wait for the following futures []
2022-05-12 22:39:42,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) done waiting for dependent futures
2022-05-12 22:39:42,954 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209190912}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 209190912}
2022-05-12 22:39:42,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:43,727 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209453056}) to executor  for transfer request: 0.
2022-05-12 22:39:43,727 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:43,727 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:39:43,727 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:43,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:43,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) about to wait for the following futures []
2022-05-12 22:39:43,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) done waiting for dependent futures
2022-05-12 22:39:43,728 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209453056}) with kwargs {'fileobj': <_io.BufferedRandom name=34>, 'offset': 209453056}
2022-05-12 22:39:43,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:43,729 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:39:43,729 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:39:43,729 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:39:43,729 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,067 eolearn.core.eoworkflow DEBUG    Computing DB2Vector(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {}
  meta_info: {}
  bbox: BBox(((229500.0, 1359500.0), (240500.0, 1370500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:44,154 eolearn.core.eoworkflow DEBUG    Removing intermediate result for DB2Vector
2022-05-12 22:39:44,155 eolearn.core.eoworkflow DEBUG    Computing VectorToRaster(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1359500.0), (240500.0, 1370500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:44,159 eolearn.core.eoworkflow DEBUG    Removing intermediate result for VectorToRaster
2022-05-12 22:39:44,159 eolearn.core.eoworkflow DEBUG    Computing Extent2Boundary(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1359500.0), (240500.0, 1370500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:44,177 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Boundary
2022-05-12 22:39:44,177 eolearn.core.eoworkflow DEBUG    Computing Extent2Distance(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1359500.0), (240500.0, 1370500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{})
2022-05-12 22:39:44,274 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Distance
2022-05-12 22:39:44,274 eolearn.core.eoworkflow DEBUG    Computing SaveTask(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {
    DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
  }
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((229500.0, 1359500.0), (240500.0, 1370500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
)], **{'eopatch_folder': '30PTU_3_3'})
2022-05-12 22:39:44,278 botocore.loaders DEBUG    Loading JSON file: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/boto3/data/s3/2006-03-01/resources-1.json
2022-05-12 22:39:44,279 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:44,279 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:44,279 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:44,279 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:44,280 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:44,281 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:44,281 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:44,282 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:44,283 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:44,283 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3'}
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:44,284 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:44,284 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:44,285 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:44,285 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:39:44,285 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3
2022-05-12 22:39:44,285 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:44,285 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223944Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:44,285 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223944Z
20220512/us-east-1/s3/aws4_request
c47e7876aa26853c0e1a0599108ea4014bd2fb57e6f990ed0ccec07bb2731a4c
2022-05-12 22:39:44,285 botocore.auth DEBUG    Signature:
c7db319b84e5c2e6629c03b727646b192346c00a3b0eeea82248525ffdd3b49e
2022-05-12 22:39:44,285 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:44,285 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:44,286 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:44,286 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:39:59,612 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3 HTTP/1.1" 400 0
2022-05-12 22:39:59,612 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ENMB7Z3PJ45KQAC7', 'x-amz-id-2': 'Q+8VU4TophxhXEe1f03pG2LW84CnYPp4aWPkTLV8zasL0VpnQUuv0kirn5lhYOdsFpKo2AzMrjk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:39:59 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:39:59,613 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:39:59,616 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:39:59,617 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:39:59,617 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:39:59,617 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:59,617 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:59,617 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:39:59,617 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:39:59,618 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:59,618 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:39:59,618 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:59,618 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:39:59,618 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:59,618 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:39:59,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:59,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:39:59,619 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:39:59,619 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:39:59,619 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:39:59,619 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:39:59,619 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:59,619 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223959Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:59,620 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223959Z
20220512/us-east-1/s3/aws4_request
2c697da8cf0517997d197cf77761fc2711ae08ab65689a1b6a6772115453fa50
2022-05-12 22:39:59,620 botocore.auth DEBUG    Signature:
97dbbed1817886a2cf79902a66d053ae7597c44c7589ef5457ea5308a1974913
2022-05-12 22:39:59,620 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:39:59,620 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:59,621 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:59,621 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:04,946 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:04,947 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'BWJM9WGN8MBKCFNQ', 'x-amz-id-2': 'GTP5AMLY4ZhnIf53FR5yj0t0s7NTAPi8sA7koI/zSVgJOzw6iK/Dor7OCls6GI/Tatp5/4v0ZMg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:04 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:04,947 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:04,948 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,948 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:04,948 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,948 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:04,948 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:04,948 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:04,949 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,949 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,949 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,949 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,949 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,949 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:04,949 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:04,950 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:04,950 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224004Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:04,950 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224004Z
20220512/eu-central-1/s3/aws4_request
ebc62b5cd14336aa8df2f3aff135d449a9d769b9a8b7287c725f8bfe5053f7a5
2022-05-12 22:40:04,950 botocore.auth DEBUG    Signature:
c3b7ec00485ce9236b9f343c495171ef98a274338779e783aecc6680539024df
2022-05-12 22:40:04,950 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,950 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:04,951 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:04,951 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:05,652 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:05,653 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'bS4a3eo4Q9E0ot5+iZqVJw+4yh8dAIBavn4sOjwlgyQWW/yPcWbkdjTiBBvVC0JR0Lb7QvrptX4=', 'x-amz-request-id': '533D3YD8PHJZ8Y8X', 'Date': 'Thu, 12 May 2022 22:40:06 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:05,653 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:05,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,654 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:05,654 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,654 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:05,654 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:05,654 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:05,654 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:05,655 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:05,655 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:05,655 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:05,655 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:05,655 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:05,655 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:05,655 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3
2022-05-12 22:40:05,656 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:05,656 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224005Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:05,656 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224005Z
20220512/eu-central-1/s3/aws4_request
b0d3e0fdbef093bb6eab0edc48654740839100fbe3ce4abe8a4ccc1a7f8d1e83
2022-05-12 22:40:05,656 botocore.auth DEBUG    Signature:
213b6bb78b8b419594364f526024530e4fd260041c8dfed056a5e02eeae333f8
2022-05-12 22:40:05,656 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:05,656 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:05,657 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:05,737 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3 HTTP/1.1" 404 0
2022-05-12 22:40:05,738 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '5330H4Z0KDSAY75W', 'x-amz-id-2': 'RQWd/RXqiBY8qwIwn+XAb4EegEuhBrnGIF88Tqp6i7FbnI5j/8OPVZ5pgi4YNpgzPIRGSPwfppc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:05 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:05,738 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:05,738 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:05,738 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:05,739 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:05,739 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:05,739 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:05,741 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:05,742 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:05,742 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:05,742 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:05,742 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:05,742 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:05,742 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:05,742 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:05,742 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:05,743 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:05,743 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:05,743 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:05,743 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:05,743 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:05,743 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:05,743 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:05,743 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:05,743 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:05,743 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:05,744 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:05,744 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:05,744 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224005Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:05,744 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224005Z
20220512/eu-central-1/s3/aws4_request
9107e8a241d835cf638320a264131d002d799b20cfedc6cbf7c04446cf4e35ae
2022-05-12 22:40:05,744 botocore.auth DEBUG    Signature:
fc42be0b45e94aa2e83641020940f154378bcc3f3f372086ff1b87476565a1ba
2022-05-12 22:40:05,744 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:05,745 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:05,745 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:05,846 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:05,847 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SwFOeRGRYwB4RqbU9nBf5utSq3ic07yLu2Fz5tuM3SN0MzDpGQTDijl28phpRlD3kI+QdEepmV0=', 'x-amz-request-id': '5332ZBE0JSFKCR3Q', 'Date': 'Thu, 12 May 2022 22:40:06 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:05,847 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:05,847 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:05,848 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:05,848 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:05,848 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '5332ZBE0JSFKCR3Q', 'HostId': 'SwFOeRGRYwB4RqbU9nBf5utSq3ic07yLu2Fz5tuM3SN0MzDpGQTDijl28phpRlD3kI+QdEepmV0=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'SwFOeRGRYwB4RqbU9nBf5utSq3ic07yLu2Fz5tuM3SN0MzDpGQTDijl28phpRlD3kI+QdEepmV0=', 'x-amz-request-id': '5332ZBE0JSFKCR3Q', 'date': 'Thu, 12 May 2022 22:40:06 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:05,849 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:05,851 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:05,851 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:05,851 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:05,854 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:05,855 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:05,857 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:05,857 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:05,857 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:05,858 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:05,858 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:05,858 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:05,858 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:05,859 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:05,859 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:05,859 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_3/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:05,859 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:05,859 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:05,859 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:05,859 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:05,859 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:05,860 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:05,860 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:05,860 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:05,860 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:05,860 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_3%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224005Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:05,860 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224005Z
20220512/us-east-1/s3/aws4_request
098f1f6c0a5d54806e7a2a54e331e82f5a5e57363ae557f487c9cc53ab7a6f88
2022-05-12 22:40:05,860 botocore.auth DEBUG    Signature:
a27116502cc61bc22379c0b18c832cb2e7b003063cae6cf15aaf9dc0fe5d767b
2022-05-12 22:40:05,860 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:05,861 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:05,861 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:05,861 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:06,661 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:40:06,661 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'PH0YCC37M3EC63X3', 'x-amz-id-2': 'p35IzrAVaqlw8FPzZE58desNuYHVD9bYKPiFfnMXbKewTfYFeokQdaQjf5srlJE4qHfecHU0YcI=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:05 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:06,662 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1PH0YCC37M3EC63X3p35IzrAVaqlw8FPzZE58desNuYHVD9bYKPiFfnMXbKewTfYFeokQdaQjf5srlJE4qHfecHU0YcI='
2022-05-12 22:40:06,666 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:06,666 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,667 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:06,667 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:06,667 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,667 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:06,667 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:06,667 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,667 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,668 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:06,668 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:06,668 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,668 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,668 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,668 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_3%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,668 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/eu-central-1/s3/aws4_request
a9af291cc0d257d647c1c2106ee86dc8106e77b58b4d63b19a574293e221f267
2022-05-12 22:40:06,669 botocore.auth DEBUG    Signature:
7d02eb185a1071f4916ee0f174b7e0cb90fd02387698e4d7b6f4efafa259aba5
2022-05-12 22:40:06,669 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:06,669 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,670 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,670 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:07,619 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_3%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:07,622 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'cVQP11BE45ZqwFQiQA9ZLVAT/PGLmoOOiHvGVD6pxFvNrsX1Fu6WxveAUIOKlIVbq2DCaUPTa28=', 'x-amz-request-id': 'V3SGWW8NQ01HXX37', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:07,622 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_3/1000/urlfalseeopatches/30PTU_3_3/2022-05-12T11:03:46.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/bbox.pkl2022-05-12T11:04:09.000Z"8a07a5122b194c327e4c3ce5b3eb548c"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/timestamp.pkl2022-05-12T11:04:09.000Z"bddd5da052edd05b16c1bacc1598871b"1858e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/data/eopatches/30PTU_3_3/mask/'
2022-05-12 22:40:07,624 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:07,624 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:07,624 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:07,624 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:07,624 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:07,625 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:07,625 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:07,625 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:07,625 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:07,625 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:07,626 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:07,626 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:07,626 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,626 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:07,626 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:07,626 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_3/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:07,626 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:07,626 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,626 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,626 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:07,627 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:07,627 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,627 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,627 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:07,627 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_3%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224007Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:07,627 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224007Z
20220512/eu-central-1/s3/aws4_request
7fca30d18d2cdb4c5edf8cb49358753c45270185449129782e8158bcba678988
2022-05-12 22:40:07,627 botocore.auth DEBUG    Signature:
3b5a48f3bec580f108a30b42e1ae139a1129c67bf853550f93c74cc814dee841
2022-05-12 22:40:07,627 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:07,628 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:07,628 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:07,714 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_3%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:07,714 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ibgFgwRIdhdi+9mGOijglfjOa3HjT28y+1pRpQdjpdoY0qaLEjkpTFjSkycNXJGQI3TMIJ6eFq8=', 'x-amz-request-id': 'V3SYRMK5BFJQAPAE', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:07,715 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_3/data/1000/urlfalseeopatches/30PTU_3_3/data/2022-05-12T11:03:56.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/data/BANDS.npy2022-05-12T11:04:10.000Z"3846787fb49f8e43ffba81b3901a514b-26"212960128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/data/CLP.npy2022-05-12T11:04:09.000Z"9eb3f42b9bf1760d69e6339db6684bdc-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:07,716 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:07,716 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:07,716 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:07,716 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:07,717 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:07,717 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:07,717 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:07,717 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:07,717 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:07,718 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:07,718 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:07,718 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,718 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:07,718 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:07,718 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_3_3/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:07,718 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:07,718 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,718 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,718 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:07,718 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:07,719 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,719 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,719 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:07,719 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_3_3%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224007Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:07,719 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224007Z
20220512/eu-central-1/s3/aws4_request
0dec11de33fff6c5684d6ae153e497b8842468455e098c490c69434e6908146c
2022-05-12 22:40:07,719 botocore.auth DEBUG    Signature:
5b9950523b1b32fbaa4ff5f2e7154c9f0c509e656833eaf5cbe61598b87bf48f
2022-05-12 22:40:07,720 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:07,720 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:07,720 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:07,807 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_3_3%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:07,808 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'N/gvpQ1rB1Yn/ay5h69AJkWOYKxbJGmerFxGXlwHQ3IWyo1KKBvW3ykIpglviiLRGGt9eGgDzo4=', 'x-amz-request-id': 'V3SSKY0N0HJY527F', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:07,808 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_3_3/mask/1000/urlfalseeopatches/30PTU_3_3/mask/2022-05-12T11:04:00.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/mask/CLM.npy2022-05-12T11:04:09.000Z"ab2d6bd1d4bb6419719e4059169e0f0f-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_3_3/mask/IS_DATA.npy2022-05-12T11:04:08.000Z"30cacf5f1ee7603a53f0d2a527451479-4"26620128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:07,809 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:07,809 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:07,810 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:07,810 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:07,810 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:07,812 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:07,812 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless'}
2022-05-12 22:40:07,812 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:07,812 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:07,812 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:07,812 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:07,812 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:07,813 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:07,813 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:07,813 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:07,813 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:07,813 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:07,813 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:07,813 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:07,813 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:07,814 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:07,814 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:07,814 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:07,814 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:07,814 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:07,814 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:07,814 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224007Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:07,814 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224007Z
20220512/eu-central-1/s3/aws4_request
841b9dfa077f19552613bbefebbbfabaaaf553712b46bd78fde9b76376edff04
2022-05-12 22:40:07,815 botocore.auth DEBUG    Signature:
7eae3dc064719f3e1559f4574645c51467def7f7424c7e0dfe883b03934e2a93
2022-05-12 22:40:07,815 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:07,815 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:07,815 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:07,897 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:07,897 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'V3SZS59ZQGSZDJA1', 'x-amz-id-2': 'LeH5O4Myg3FKlWyU2xvfE+8XGPBGbtpwVgOG2FNH33Vt3jKiDTHzOhLwRo0VYYs/MOKRW0TK3PQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:07,897 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:07,898 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:07,898 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:07,898 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:07,898 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:07,900 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:07,900 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless/'}
2022-05-12 22:40:07,900 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:07,900 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:07,900 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:07,900 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:07,901 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:07,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:07,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:07,901 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:07,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:07,901 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:07,901 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:07,902 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:07,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:07,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:07,902 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:07,902 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:07,902 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:07,902 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:07,903 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:07,903 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224007Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:07,903 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224007Z
20220512/eu-central-1/s3/aws4_request
d31dba8240b8ce84c121619f3e2a98448055ca877614303af6f3cb81d2b360a6
2022-05-12 22:40:07,903 botocore.auth DEBUG    Signature:
0669317940a8f37abff08a77b8bf68c556bc47eb40dc72c3344442556db1cab2
2022-05-12 22:40:07,903 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:07,903 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:07,904 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:07,987 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:07,988 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'V3SR5NYNW81D1ZSE', 'x-amz-id-2': 'GMcU1WsXNCx5w8O+zdO6M/cJA6poA8ZMtjKnFg6dHGTkdZ1otyCq66TDgfWHC6dcmOCXlFyVOhM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:07,988 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:07,988 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:07,988 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:07,988 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:07,988 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:07,990 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:07,990 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:07,991 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:07,991 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:07,991 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:07,991 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:07,991 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:07,991 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:07,991 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:07,991 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:07,991 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:07,992 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:07,992 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:07,992 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:07,992 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:07,992 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:07,992 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:07,992 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:07,992 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:07,992 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:07,993 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:07,993 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224007Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:07,993 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224007Z
20220512/eu-central-1/s3/aws4_request
095d336692070a8f525204f92ccf960dffd6c7cd46b6029d0b1675bdced53449
2022-05-12 22:40:07,993 botocore.auth DEBUG    Signature:
ff2a3ae3a053c80984342262569712f54611c3317b8d72523b088bd553a07d0f
2022-05-12 22:40:07,993 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:07,993 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:07,994 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,073 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:08,074 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+iXoW5CvoMwfhRIR0VaKMXUMV840Yc4ctDWLsRanhtr8hf1DHygYrpTFymgdTgM5xiCZeY7LYFk=', 'x-amz-request-id': '34DXXV0RN3PKBEV8', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:08,074 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,075 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,075 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,075 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,075 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '34DXXV0RN3PKBEV8', 'HostId': '+iXoW5CvoMwfhRIR0VaKMXUMV840Yc4ctDWLsRanhtr8hf1DHygYrpTFymgdTgM5xiCZeY7LYFk=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '+iXoW5CvoMwfhRIR0VaKMXUMV840Yc4ctDWLsRanhtr8hf1DHygYrpTFymgdTgM5xiCZeY7LYFk=', 'x-amz-request-id': '34DXXV0RN3PKBEV8', 'date': 'Thu, 12 May 2022 22:40:09 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:08,076 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,077 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,077 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless'}
2022-05-12 22:40:08,078 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,078 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,078 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,078 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,078 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,078 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,078 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,078 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:08,078 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,078 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,079 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,079 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,079 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,079 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,079 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,079 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,079 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:08,079 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:08,080 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,080 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,080 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
4fa92efa434c375422db06dcc38e3e9d9060b4a9c8d78250d64459d8d7ceffae
2022-05-12 22:40:08,080 botocore.auth DEBUG    Signature:
924bca9140f955d2f9ccc14d67278e5027b0c4d0fcfefe6e9feec0c245a6d4b9
2022-05-12 22:40:08,080 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,080 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,081 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,161 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:08,161 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DX68H3ZG4BCDTN', 'x-amz-id-2': 'bcWl6s4R8yg5TElxFt5zMpxv33E1Hi4aOwEJMgsk0lSWYO3i461oKY6yuaJFUC5O4J1sy4G6I6o=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,161 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,162 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,162 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,162 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,162 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,164 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,164 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless/'}
2022-05-12 22:40:08,164 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,164 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,164 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,164 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,164 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,165 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,165 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,165 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:08,165 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,165 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,165 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,165 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,165 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,165 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,165 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,165 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,166 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:08,166 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:08,166 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,166 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,166 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
c3274ed99585cc8d060f4cadcc2879cc4979e240577a16043040f2fa27194339
2022-05-12 22:40:08,166 botocore.auth DEBUG    Signature:
6e827ae3fb61bf7f40bb13f4b6db29465f08c1442c04696d380f51dbce872223
2022-05-12 22:40:08,166 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,167 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,167 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,246 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:08,246 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DKGN59W8N3QM9E', 'x-amz-id-2': '2ZIHAEcaemjJ6WKP3/62nO2kFESPPkoe5QEDVQX3Xc54SlvY4O8A4I8L1m7i4hZ1lLAOmpTeauI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,247 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,247 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,247 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,247 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,247 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,249 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,249 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3'}
2022-05-12 22:40:08,249 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,249 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,249 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,249 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,249 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,249 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,250 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,250 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:08,250 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,250 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,250 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,250 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,250 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,250 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,250 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,250 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,250 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:08,251 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3
2022-05-12 22:40:08,251 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,251 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,251 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
6f88cab2d6e3f64633491a3b943f17ab11b035e8f1a6c58b6f3a197c4f6fd983
2022-05-12 22:40:08,251 botocore.auth DEBUG    Signature:
0fac324b1c572652691d1480abd14d0f4914cb5c25a18b339e6f2e9be2060359
2022-05-12 22:40:08,251 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,251 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,252 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,329 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3 HTTP/1.1" 404 0
2022-05-12 22:40:08,330 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DMN1036VDQRKR3', 'x-amz-id-2': 'y5FnZjS5B+ZJmF3UTY6ypOdRqfNkUC/m0bAcghpl6tGNPMlO9p0jbIyehsbA3V6LGvNwbfyW0Tk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,330 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,331 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,331 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,331 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,331 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,334 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,334 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:08,334 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,334 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,335 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,335 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,335 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,335 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,335 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,335 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:08,335 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,336 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,336 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,336 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,336 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,336 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,336 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,336 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,337 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:08,337 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:08,337 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,337 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,338 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
c63e94cb59f579b80b29110ac4e9cc5ac42ac5a9c9e29f9ebd95c5b10035df2f
2022-05-12 22:40:08,338 botocore.auth DEBUG    Signature:
9fd0c8af2f7d837e1307dbce95dc52cc1438d1da52fce4d98e6cd47852e0537c
2022-05-12 22:40:08,338 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,338 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,339 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,425 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:08,425 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'HxnkRNpBKD8uVmjaluVDH0DRu3oVxh9r2tODmHZN6znBGS0Q+heJlAgn0AagD4lA1M5iloSh5Ew=', 'x-amz-request-id': '34DJBHREXTS1WTFX', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:08,426 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,426 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,427 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,427 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,427 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '34DJBHREXTS1WTFX', 'HostId': 'HxnkRNpBKD8uVmjaluVDH0DRu3oVxh9r2tODmHZN6znBGS0Q+heJlAgn0AagD4lA1M5iloSh5Ew=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'HxnkRNpBKD8uVmjaluVDH0DRu3oVxh9r2tODmHZN6znBGS0Q+heJlAgn0AagD4lA1M5iloSh5Ew=', 'x-amz-request-id': '34DJBHREXTS1WTFX', 'date': 'Thu, 12 May 2022 22:40:09 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:08,427 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,429 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,429 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3'}
2022-05-12 22:40:08,429 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,429 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,429 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,429 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,429 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,430 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,430 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,430 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:08,430 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,430 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,430 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,430 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,430 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,430 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,430 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,430 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,431 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:08,431 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3
2022-05-12 22:40:08,431 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,431 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,431 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
6f88cab2d6e3f64633491a3b943f17ab11b035e8f1a6c58b6f3a197c4f6fd983
2022-05-12 22:40:08,431 botocore.auth DEBUG    Signature:
0fac324b1c572652691d1480abd14d0f4914cb5c25a18b339e6f2e9be2060359
2022-05-12 22:40:08,431 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,432 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,432 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,512 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3 HTTP/1.1" 404 0
2022-05-12 22:40:08,513 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DRQYQE50K1T0GD', 'x-amz-id-2': 'wqEVT8/yPq70qwKjDi0BVTGwnk7b/bcN3zzIjvvXGy+CqhN8tADxCJkCo7gy3ShkjzLGWzzXDH4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,513 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,513 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,513 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,514 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,514 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,515 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,516 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:08,516 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,516 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,516 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,516 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,516 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,516 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,516 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,517 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:08,517 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,517 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,517 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,517 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,517 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,517 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,517 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,517 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,517 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:08,517 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:08,518 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,518 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,518 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
c63e94cb59f579b80b29110ac4e9cc5ac42ac5a9c9e29f9ebd95c5b10035df2f
2022-05-12 22:40:08,518 botocore.auth DEBUG    Signature:
9fd0c8af2f7d837e1307dbce95dc52cc1438d1da52fce4d98e6cd47852e0537c
2022-05-12 22:40:08,518 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,518 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,519 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,606 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:08,606 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'uUe9c+p7Yc7nqAdME5wuhs/FpGKhTx554YqLddZA8Hmw+gS9k9ipgxJZD6uPgs2TOqWtVUSGXiU=', 'x-amz-request-id': '34DPGG9TSD35BGT8', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:08,606 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,606 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,607 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,607 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,607 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '34DPGG9TSD35BGT8', 'HostId': 'uUe9c+p7Yc7nqAdME5wuhs/FpGKhTx554YqLddZA8Hmw+gS9k9ipgxJZD6uPgs2TOqWtVUSGXiU=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'uUe9c+p7Yc7nqAdME5wuhs/FpGKhTx554YqLddZA8Hmw+gS9k9ipgxJZD6uPgs2TOqWtVUSGXiU=', 'x-amz-request-id': '34DPGG9TSD35BGT8', 'date': 'Thu, 12 May 2022 22:40:09 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:08,607 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,608 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless'}
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,608 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,608 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,608 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,608 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:08,608 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:08,608 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,609 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,609 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
4fa92efa434c375422db06dcc38e3e9d9060b4a9c8d78250d64459d8d7ceffae
2022-05-12 22:40:08,609 botocore.auth DEBUG    Signature:
924bca9140f955d2f9ccc14d67278e5027b0c4d0fcfefe6e9feec0c245a6d4b9
2022-05-12 22:40:08,609 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,609 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,609 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,690 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:08,691 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DM0GKXPM75RJ6S', 'x-amz-id-2': 'nvk3AoDr3Vh4d40o9GVZSp5bzlwum+Rj/X1t6eowuppRwp0TAs/Yyzs9O7nsq7rinMAR9Gc3c10=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,691 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,691 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,692 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,692 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,694 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,695 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless/'}
2022-05-12 22:40:08,695 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,695 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,695 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,695 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,695 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,696 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,696 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,696 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:08,696 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,696 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,696 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,697 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,697 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,697 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,697 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,697 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,697 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:08,698 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:08,698 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,698 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,698 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
c3274ed99585cc8d060f4cadcc2879cc4979e240577a16043040f2fa27194339
2022-05-12 22:40:08,698 botocore.auth DEBUG    Signature:
6e827ae3fb61bf7f40bb13f4b6db29465f08c1442c04696d380f51dbce872223
2022-05-12 22:40:08,698 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,699 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,699 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,778 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:08,778 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DRYVBSMJHT15S5', 'x-amz-id-2': '49r2LFaMx/Y44MCME8CIHFaUX6LwbEh84xUNnnvL0gqnHnq2GvSOJN3n5dlCEi7FWIMNhE+8B/Q=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,778 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,778 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,779 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,779 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,779 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,781 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,785 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:08,789 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:08,789 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,790 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:08,790 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:08,791 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:08,791 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:08,791 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:08,791 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:08,791 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:08,791 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,791 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_3/vector_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224008Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:08,791 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
0c04054a87161c8ce5f36846480fb90b2624e58b18957f6b057f097eae4b8b2c
2022-05-12 22:40:08,792 botocore.auth DEBUG    Signature:
4363a5ba3d0194c877a5a6bc5718e78c9e0193f96a761acc6aa872ca6ff8591e
2022-05-12 22:40:08,792 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:08,792 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,792 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,885 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_3/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:08,885 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'h5NAFEedzUnjy5Lh71g1oCsoOwsy6f7XIJrUPzQBWWyuceeZyuqzcOOrSrR9nZEdmJbcIaM4fCI=', 'x-amz-request-id': '34DSK054XYJKYE30', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:08,885 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,886 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:08,886 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,886 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:08,886 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '34DSK054XYJKYE30', 'HostId': 'h5NAFEedzUnjy5Lh71g1oCsoOwsy6f7XIJrUPzQBWWyuceeZyuqzcOOrSrR9nZEdmJbcIaM4fCI=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'h5NAFEedzUnjy5Lh71g1oCsoOwsy6f7XIJrUPzQBWWyuceeZyuqzcOOrSrR9nZEdmJbcIaM4fCI=', 'x-amz-request-id': '34DSK054XYJKYE30', 'date': 'Thu, 12 May 2022 22:40:09 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:08,886 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,887 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,887 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,887 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,887 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,887 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:08,887 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:08,887 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,887 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,887 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
c63e94cb59f579b80b29110ac4e9cc5ac42ac5a9c9e29f9ebd95c5b10035df2f
2022-05-12 22:40:08,888 botocore.auth DEBUG    Signature:
9fd0c8af2f7d837e1307dbce95dc52cc1438d1da52fce4d98e6cd47852e0537c
2022-05-12 22:40:08,888 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,888 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,888 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,967 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:08,968 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'h+i6x50PbqhmSRM/NY0o5Td7oyCIxoOpT1XF/YwSdyF0cmTpPRbBCeja8DK0vTNayZVrgaS8f4g=', 'x-amz-request-id': '34DSSKVEDXY4E7J4', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:08,968 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,969 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,969 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,969 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '34DSSKVEDXY4E7J4', 'HostId': 'h+i6x50PbqhmSRM/NY0o5Td7oyCIxoOpT1XF/YwSdyF0cmTpPRbBCeja8DK0vTNayZVrgaS8f4g=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'h+i6x50PbqhmSRM/NY0o5Td7oyCIxoOpT1XF/YwSdyF0cmTpPRbBCeja8DK0vTNayZVrgaS8f4g=', 'x-amz-request-id': '34DSSKVEDXY4E7J4', 'date': 'Thu, 12 May 2022 22:40:09 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:08,970 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,973 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,974 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless'}
2022-05-12 22:40:08,974 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,974 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,974 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,974 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,975 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,975 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,975 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,976 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:08,976 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:08,976 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,976 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,976 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
4fa92efa434c375422db06dcc38e3e9d9060b4a9c8d78250d64459d8d7ceffae
2022-05-12 22:40:08,976 botocore.auth DEBUG    Signature:
924bca9140f955d2f9ccc14d67278e5027b0c4d0fcfefe6e9feec0c245a6d4b9
2022-05-12 22:40:08,976 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,977 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,977 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,060 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,060 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58ADB6914RWCPFYT', 'x-amz-id-2': '8LyUnCWKSky0WKS+3F+lwK9Q+/UZNhQ6f31J+BYqzdsfA9m+g47L+ze4af83KLyYZfhXeWy8uyY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,060 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,060 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,061 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,061 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,061 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,063 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless/'}
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,063 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,064 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,064 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:09,065 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:09,065 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,065 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,065 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
5d34557ea6c164c52079e15e8a4c25fa6e1862cf5892d8b44a7b81d97ac62575
2022-05-12 22:40:09,065 botocore.auth DEBUG    Signature:
b6907657eab4e1573b01b07647f80724393f8e1188728439c98ec449d8352c2d
2022-05-12 22:40:09,065 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,065 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,065 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,149 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:09,149 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '4m8/CYZwR2U6+1S2vsl9n5emhQwkQlicBfcr/lVmGm/O8WIQ8JMVokM1zEfO/T2S9urC7BjFM9Y=', 'x-amz-request-id': '58A33RGQTAY0VDBR', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:09 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,149 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,150 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,150 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,150 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A33RGQTAY0VDBR', 'HostId': '4m8/CYZwR2U6+1S2vsl9n5emhQwkQlicBfcr/lVmGm/O8WIQ8JMVokM1zEfO/T2S9urC7BjFM9Y=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '4m8/CYZwR2U6+1S2vsl9n5emhQwkQlicBfcr/lVmGm/O8WIQ8JMVokM1zEfO/T2S9urC7BjFM9Y=', 'x-amz-request-id': '58A33RGQTAY0VDBR', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:09 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 9, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,150 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,151 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless'}
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,151 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,152 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,152 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,152 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:09,152 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:09,152 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,152 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,152 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
7fb207ff8d782266c4d5903e582809b7375b1f3a8dcbba4a48ca6cfa2523d36f
2022-05-12 22:40:09,152 botocore.auth DEBUG    Signature:
bf169ddb3622c8763738359adbbfd90354ed5c333866b347aad62ef7e4d11022
2022-05-12 22:40:09,152 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,152 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,152 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,236 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,236 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AATG447QFN4CXG', 'x-amz-id-2': 'I2CFI8f+trx+14wu5mszgilbOwYQuVFVifEKOHvjrzA3pTQBiEmVcaOhTCn0tC4ts4Q7RFQy3pQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,236 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,236 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,236 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,236 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,237 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless/'}
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,237 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,238 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:09,238 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:09,238 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,238 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,238 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
0f902e71de47d648b2f465352e87efb2fe37aea9470cb44c17d7658005dc2747
2022-05-12 22:40:09,238 botocore.auth DEBUG    Signature:
18b927cf0be10348d33b76b98c581708c9b9e0fb7fb1b458c100315988e635bd
2022-05-12 22:40:09,238 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,238 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,238 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,322 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,323 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AFJM2Z2Z3XP05P', 'x-amz-id-2': 'N32jq5adWk8RP/SoVAjwro2KBKu+qCY4nhIkfLq5aZc9sA75G9BtZn1v8Hlf+7fWx1wtJPbaKSU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,323 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,323 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,323 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,323 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,324 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,326 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,326 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:09,327 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,327 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,327 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,327 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,327 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,327 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,327 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,327 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:09,327 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,327 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,327 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,328 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,328 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,328 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,328 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,328 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,328 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:09,328 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:09,328 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,329 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,329 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
8ed03f08b87044d35ae40c4a971e666bc3131587c9a0ff7632b7022ceabeaf72
2022-05-12 22:40:09,329 botocore.auth DEBUG    Signature:
ad299e107ab57124d6351ebe0ec43d49d0a4e422ba7c6103e644f358c24719fd
2022-05-12 22:40:09,329 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,329 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,329 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,413 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:09,414 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '62MnxEjUpr1XcplLm1gD+ap0UkdY87TJ+IiExeE3I8fcJNyn51FTij46Skdr80Zh9bcOLIxXgJw=', 'x-amz-request-id': '58A1THW8NAYWZPSN', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,414 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,415 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A1THW8NAYWZPSN', 'HostId': '62MnxEjUpr1XcplLm1gD+ap0UkdY87TJ+IiExeE3I8fcJNyn51FTij46Skdr80Zh9bcOLIxXgJw=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '62MnxEjUpr1XcplLm1gD+ap0UkdY87TJ+IiExeE3I8fcJNyn51FTij46Skdr80Zh9bcOLIxXgJw=', 'x-amz-request-id': '58A1THW8NAYWZPSN', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,415 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,417 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless'}
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,418 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,418 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,418 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:09,418 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,418 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,418 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,418 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,419 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,419 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,419 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,419 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,419 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:09,419 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:09,419 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,419 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,420 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
7fb207ff8d782266c4d5903e582809b7375b1f3a8dcbba4a48ca6cfa2523d36f
2022-05-12 22:40:09,420 botocore.auth DEBUG    Signature:
bf169ddb3622c8763738359adbbfd90354ed5c333866b347aad62ef7e4d11022
2022-05-12 22:40:09,420 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,420 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,420 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,503 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,503 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AANWC77ENRT7KZ', 'x-amz-id-2': 'igPmqxcX+CsYPxwqOYLvejptNxwb92vYZDqk4yNK9iOISHjuhrqHMjBzSZDg9gkB6eRLGGOTj+E=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,504 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,504 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,504 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,504 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,504 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,507 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless/'}
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,507 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,508 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,508 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,509 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,509 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,510 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:09,510 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:09,510 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,510 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,510 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
0f902e71de47d648b2f465352e87efb2fe37aea9470cb44c17d7658005dc2747
2022-05-12 22:40:09,510 botocore.auth DEBUG    Signature:
18b927cf0be10348d33b76b98c581708c9b9e0fb7fb1b458c100315988e635bd
2022-05-12 22:40:09,511 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,511 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,511 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,594 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,595 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A2VDSH02PX8ZV2', 'x-amz-id-2': 'Of4ZpuGy9snmZzOzc2/aY5z+SmtzcvUP0oOaJZPcQjHah7dRbVSXO2QNNg6LlMs3HZ6PLlBW4Uc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,595 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,595 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,596 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,596 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,599 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3'}
2022-05-12 22:40:09,600 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,600 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,600 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,600 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,600 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,600 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,601 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,601 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:09,601 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,601 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,601 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,601 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,602 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,602 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,602 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,602 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,602 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:09,602 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3
2022-05-12 22:40:09,603 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,603 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,603 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
408f890d83cf3a4d9746f6a7cb77f097dfab3d32b3dd4229868062ba4a645776
2022-05-12 22:40:09,603 botocore.auth DEBUG    Signature:
d4508685bda13b03e21d44419e662e17059eec528cf0db5595ff04630f300dad
2022-05-12 22:40:09,603 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,604 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,604 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,685 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3 HTTP/1.1" 404 0
2022-05-12 22:40:09,685 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A3NJZN4VFFV490', 'x-amz-id-2': '4Lr0gf4u0usMilMVTAp2N0d4I8pRzwLfIU5S5aFwMPsbgpBrC3khmUDxXCKl6kr7TXEfqpEn+rw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,685 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,685 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,686 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,686 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,686 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,688 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,690 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,690 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:09,690 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,690 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,690 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,690 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,691 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:09,691 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:09,691 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,691 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,692 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
8ed03f08b87044d35ae40c4a971e666bc3131587c9a0ff7632b7022ceabeaf72
2022-05-12 22:40:09,692 botocore.auth DEBUG    Signature:
ad299e107ab57124d6351ebe0ec43d49d0a4e422ba7c6103e644f358c24719fd
2022-05-12 22:40:09,692 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,692 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,692 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,776 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:09,776 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '4K4WjvB8/zVCKKHba6Y7sAxI1uuhxtBHZt7nsqhSGUzZyyBEIumFy2SvUfGHFFd4tMZiwF7J7iI=', 'x-amz-request-id': '58AFV9PMCCB1GG54', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,777 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,777 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,777 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58AFV9PMCCB1GG54', 'HostId': '4K4WjvB8/zVCKKHba6Y7sAxI1uuhxtBHZt7nsqhSGUzZyyBEIumFy2SvUfGHFFd4tMZiwF7J7iI=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '4K4WjvB8/zVCKKHba6Y7sAxI1uuhxtBHZt7nsqhSGUzZyyBEIumFy2SvUfGHFFd4tMZiwF7J7iI=', 'x-amz-request-id': '58AFV9PMCCB1GG54', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,777 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,778 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3'}
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,778 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,778 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,778 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,778 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:09,778 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3
2022-05-12 22:40:09,779 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,779 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,779 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
408f890d83cf3a4d9746f6a7cb77f097dfab3d32b3dd4229868062ba4a645776
2022-05-12 22:40:09,779 botocore.auth DEBUG    Signature:
d4508685bda13b03e21d44419e662e17059eec528cf0db5595ff04630f300dad
2022-05-12 22:40:09,779 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,779 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,779 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,860 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3 HTTP/1.1" 404 0
2022-05-12 22:40:09,860 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A875PMQEK1SDP4', 'x-amz-id-2': 'vTbeGMM65X/jC1lGOk6+0PPE7rLHLYxOXPrl6Ed1spB2tT+z/DbATzIq4Yvzi1hq9BcUVWp6XCg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,860 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,860 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,860 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,860 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,860 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,861 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,861 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,861 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,861 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,862 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,862 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,862 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,862 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,862 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:09,862 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:09,862 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,862 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,862 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
8ed03f08b87044d35ae40c4a971e666bc3131587c9a0ff7632b7022ceabeaf72
2022-05-12 22:40:09,862 botocore.auth DEBUG    Signature:
ad299e107ab57124d6351ebe0ec43d49d0a4e422ba7c6103e644f358c24719fd
2022-05-12 22:40:09,862 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,862 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,862 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,944 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:09,944 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ic1iwscQW42edwEryBzW6NcNUgBXX/1QD9TdAiw7qUrzhz00IVgQMQdlB/D61X+/QgwX6YqrdR8=', 'x-amz-request-id': '58A3MAKYHZD5YC25', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,944 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,945 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,945 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,945 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,946 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A3MAKYHZD5YC25', 'HostId': 'ic1iwscQW42edwEryBzW6NcNUgBXX/1QD9TdAiw7qUrzhz00IVgQMQdlB/D61X+/QgwX6YqrdR8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'ic1iwscQW42edwEryBzW6NcNUgBXX/1QD9TdAiw7qUrzhz00IVgQMQdlB/D61X+/QgwX6YqrdR8=', 'x-amz-request-id': '58A3MAKYHZD5YC25', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,946 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,947 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,948 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless'}
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,948 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,949 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,949 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,949 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:09,949 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,949 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,949 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,949 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,949 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,950 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,950 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,950 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,950 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:09,950 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:09,950 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,950 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,950 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
7fb207ff8d782266c4d5903e582809b7375b1f3a8dcbba4a48ca6cfa2523d36f
2022-05-12 22:40:09,951 botocore.auth DEBUG    Signature:
bf169ddb3622c8763738359adbbfd90354ed5c333866b347aad62ef7e4d11022
2022-05-12 22:40:09,951 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,951 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,951 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,038 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,038 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AC2517R37HNR2W', 'x-amz-id-2': 'OOQrjNdmH+YctBcRNz/b4hiqm9r+2SHqyt2QG+1iqlCYkYpWI8BLb3HAvdIhP6J8O91vrvi3ucI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,039 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,039 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,039 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,039 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,040 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,042 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless/'}
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,043 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,043 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,043 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,044 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:10,044 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:10,044 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,044 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,045 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
d54bf220be138f7acf44ec5797e350ba2733065244aa0044d1d835ae7dd7aa87
2022-05-12 22:40:10,045 botocore.auth DEBUG    Signature:
7c46308db8128f810c1148e53bb40db8b34f7b8f97d72c79b2ea88c401e667a8
2022-05-12 22:40:10,045 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,045 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,045 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,126 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,127 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX10QZM9RPFKQM7S', 'x-amz-id-2': '1w2vTgCXZyuR7od3M1tfl1+pE8iJxBoTUYLjNBhIR13d5ltZ+v42lLd5t/1gEvUHCSaJEByTX7w=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,127 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,127 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,127 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,127 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,127 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,129 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:10,129 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:10,130 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:10,130 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:10,130 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:10,130 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:10,130 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:10,130 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:10,130 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:10,130 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,130 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:10,130 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:10,131 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:10,131 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:10,131 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:10,131 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:10,131 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:10,131 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,131 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_3/mask_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224010Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:10,131 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
f2a9e93752db88e7026db0e74f7353fd1cbe1d6e4810a31b7f473c119a2c3ab5
2022-05-12 22:40:10,131 botocore.auth DEBUG    Signature:
6ae2b2e969bc444927065ef70a7807e7c135ba656a0a126f586e392b3d6be4b1
2022-05-12 22:40:10,132 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:10,132 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,132 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,222 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_3/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:10,222 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'MLuOCa/QHfHKpEUSMMPMwn9Is+lPCUU8CVBUW1oSE7wU9tjtG6YsvmJ/LHb+V66pL2EQrB2Hdn0=', 'x-amz-request-id': 'ZX16FQFYHWJQ7H5E', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,223 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,223 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:10,223 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,223 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:10,223 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX16FQFYHWJQ7H5E', 'HostId': 'MLuOCa/QHfHKpEUSMMPMwn9Is+lPCUU8CVBUW1oSE7wU9tjtG6YsvmJ/LHb+V66pL2EQrB2Hdn0=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'MLuOCa/QHfHKpEUSMMPMwn9Is+lPCUU8CVBUW1oSE7wU9tjtG6YsvmJ/LHb+V66pL2EQrB2Hdn0=', 'x-amz-request-id': 'ZX16FQFYHWJQ7H5E', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:10,224 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,226 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,226 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:10,226 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,226 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,226 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,226 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,226 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,227 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,227 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,228 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:10,228 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:10,228 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,229 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,229 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
e2168d997fbfbc72c88fd30bff299a40c83eb6cfa900fef7eb31a1ef49bfd86f
2022-05-12 22:40:10,229 botocore.auth DEBUG    Signature:
a0f9c299d263fc9748ceb5313bbd866a3ee7f81cee9c00c172b8e5e9d4c55327
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,229 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,230 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,310 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:10,311 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '3GolfMJAthdW9l+6z6EomSjJHbxS09qETwzvmcJ0yAsLrdwLJEqgzNhGNS+8RMISDuKlUIfHx5s=', 'x-amz-request-id': 'ZX13CMTGCJK2PZ5Y', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,311 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,312 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,312 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,312 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,312 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX13CMTGCJK2PZ5Y', 'HostId': '3GolfMJAthdW9l+6z6EomSjJHbxS09qETwzvmcJ0yAsLrdwLJEqgzNhGNS+8RMISDuKlUIfHx5s=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '3GolfMJAthdW9l+6z6EomSjJHbxS09qETwzvmcJ0yAsLrdwLJEqgzNhGNS+8RMISDuKlUIfHx5s=', 'x-amz-request-id': 'ZX13CMTGCJK2PZ5Y', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,312 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,314 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,314 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless'}
2022-05-12 22:40:10,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,315 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,315 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,315 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:10,316 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,316 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,316 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,316 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,316 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,316 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,316 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,316 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,316 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:10,316 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:10,317 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,317 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,317 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
81c058ead93f6abad1d3b88161e317ea903a19f172d3f2379d5c1553624ecdc7
2022-05-12 22:40:10,317 botocore.auth DEBUG    Signature:
c0f58ccba23b90b2409285ee78bb4e87c073fc12cc26d3e3fe8b4cb2a3696a01
2022-05-12 22:40:10,317 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,317 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,318 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,398 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,399 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX14DG0ZQYQE0GZ2', 'x-amz-id-2': '+mtGRjFd50Y5deAytfW8nJmroGYmyAZchqFEiWqI5CVdDL9VF+gQUg9qDzQ3uuKWnhdM1SoXvz4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,399 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,399 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,400 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,400 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,400 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,403 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,403 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless/'}
2022-05-12 22:40:10,403 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,403 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,404 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,404 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,404 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,404 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,404 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,404 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:10,404 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,404 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,404 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,405 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,405 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,405 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,405 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,405 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,405 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:10,405 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:10,405 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,406 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,406 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
d54bf220be138f7acf44ec5797e350ba2733065244aa0044d1d835ae7dd7aa87
2022-05-12 22:40:10,406 botocore.auth DEBUG    Signature:
7c46308db8128f810c1148e53bb40db8b34f7b8f97d72c79b2ea88c401e667a8
2022-05-12 22:40:10,406 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,406 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,406 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,491 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:10,491 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'CmNipEz7UhctK6hKXscr3h4kAMg/QxqGLRf3qSD7HmMZ6j9VIyWjKsLf5JnadDHTvJvok8FgcYc=', 'x-amz-request-id': 'ZX1D7WDT5G9WRYPT', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:11 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,491 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,492 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,492 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,492 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,492 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX1D7WDT5G9WRYPT', 'HostId': 'CmNipEz7UhctK6hKXscr3h4kAMg/QxqGLRf3qSD7HmMZ6j9VIyWjKsLf5JnadDHTvJvok8FgcYc=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'CmNipEz7UhctK6hKXscr3h4kAMg/QxqGLRf3qSD7HmMZ6j9VIyWjKsLf5JnadDHTvJvok8FgcYc=', 'x-amz-request-id': 'ZX1D7WDT5G9WRYPT', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:11 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 11, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,492 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,493 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless'}
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,493 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,493 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:10,493 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:10,494 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,494 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,494 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
9bfa2cd569e9c45e5610048c44f82980cd15116d4c295813d72b037491b315a3
2022-05-12 22:40:10,494 botocore.auth DEBUG    Signature:
a3aa3212bda7fb6c4cf1b18413df8f785dbabbe90217183a6be444d858ffa2b6
2022-05-12 22:40:10,494 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,494 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,494 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,579 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,579 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1FCD2WW6CZ16CZ', 'x-amz-id-2': 'pEcUklTpUFv2VOcJ0DEXr+W79Y9qCNsv48XJIKeDGZoB5n/VhFBcmIt7zQkvy95/nEXWQ6hYQ9c=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,579 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,580 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,580 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,580 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,580 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,582 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,582 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless/'}
2022-05-12 22:40:10,582 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,582 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,582 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,582 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,583 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,583 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,584 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:10,584 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:10,584 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,584 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,584 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
acc39582bb299e0c1990f131a21364d756ba9eb5d7f42f4b981b808729ac53f1
2022-05-12 22:40:10,585 botocore.auth DEBUG    Signature:
784fa2a8c2846538665f1bb87beb4c745760e961fd5260176ff7c980128d879a
2022-05-12 22:40:10,585 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,585 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,585 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,670 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,671 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1D670PBJRQA8TK', 'x-amz-id-2': 'mga9CHNYnCHqKxJpkdkKSaJYIPoJunMFhmFGc9jh/MvH6y4mgfMa5lvK1/JNAdO6RVRSet1+IDk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,671 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,671 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,671 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,671 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,672 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,674 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,674 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,675 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,675 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:10,675 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:10,675 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,675 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,675 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
e2168d997fbfbc72c88fd30bff299a40c83eb6cfa900fef7eb31a1ef49bfd86f
2022-05-12 22:40:10,676 botocore.auth DEBUG    Signature:
a0f9c299d263fc9748ceb5313bbd866a3ee7f81cee9c00c172b8e5e9d4c55327
2022-05-12 22:40:10,676 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,676 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,676 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,760 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:10,760 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '4XUIR984Q3Yb0CNm0VTGavtjGK+DoLz1v6EeDBxnSgDRrmFf7qEEkOj/vcDItXcaKUTWoinrkfk=', 'x-amz-request-id': 'ZX12425D2B9BTJV9', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,761 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,762 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,762 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX12425D2B9BTJV9', 'HostId': '4XUIR984Q3Yb0CNm0VTGavtjGK+DoLz1v6EeDBxnSgDRrmFf7qEEkOj/vcDItXcaKUTWoinrkfk=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '4XUIR984Q3Yb0CNm0VTGavtjGK+DoLz1v6EeDBxnSgDRrmFf7qEEkOj/vcDItXcaKUTWoinrkfk=', 'x-amz-request-id': 'ZX12425D2B9BTJV9', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,762 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,763 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless'}
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:10,763 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:10,764 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,764 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,764 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
9bfa2cd569e9c45e5610048c44f82980cd15116d4c295813d72b037491b315a3
2022-05-12 22:40:10,764 botocore.auth DEBUG    Signature:
a3aa3212bda7fb6c4cf1b18413df8f785dbabbe90217183a6be444d858ffa2b6
2022-05-12 22:40:10,764 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,764 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,764 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,848 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,849 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1F05ZX57XE5WK4', 'x-amz-id-2': '3v/HjSDQSiUIFNN4yTUqxzit8L1/0JA6PDlvCEkaXqyu30UaVQwdVbl0PkdCP69wjAaT3efZ9a8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,849 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,849 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,849 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,850 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,850 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,851 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,852 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless/'}
2022-05-12 22:40:10,852 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,852 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,852 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,852 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,852 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,852 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,852 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,853 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:10,853 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,853 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,853 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,853 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,853 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,853 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,853 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,854 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,854 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:10,854 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:10,854 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,855 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,855 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
acc39582bb299e0c1990f131a21364d756ba9eb5d7f42f4b981b808729ac53f1
2022-05-12 22:40:10,855 botocore.auth DEBUG    Signature:
784fa2a8c2846538665f1bb87beb4c745760e961fd5260176ff7c980128d879a
2022-05-12 22:40:10,855 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,855 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,856 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,937 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,937 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX18ZRKP88SXPR86', 'x-amz-id-2': 'v36gNa8f/qCKV1IlA+A8SSsiYfPOaMC2kIuygQtjGLxoRfbVWMF5UW+Qd6tStECBJIfqiqJqbZo=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,937 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,937 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,937 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,938 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,938 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,940 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,940 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3'}
2022-05-12 22:40:10,940 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,940 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,940 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,941 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,941 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,941 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,941 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,941 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:10,941 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,941 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,941 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,942 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,942 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,942 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,942 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,942 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,942 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:10,942 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3
2022-05-12 22:40:10,942 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,942 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,942 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
b08b27abfaa5effafdad672287ef9124eaa367703e6e93c2e3aa333012011b21
2022-05-12 22:40:10,943 botocore.auth DEBUG    Signature:
cc32a2e253eb8a8c0dd6245b366d706a5ce008a004b38a86b71cd78eea558681
2022-05-12 22:40:10,943 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,943 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,943 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,024 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3 HTTP/1.1" 404 0
2022-05-12 22:40:11,024 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX145AGX9Q7PAKWM', 'x-amz-id-2': 'i4y1oCR8wGppxhnvkSxnogJNoh4giLscQvAkfrrBGhzw515IlN22YmUMic+ycvS6s4ZwEfJNgq0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,024 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,025 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,025 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,025 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,025 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,027 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,027 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:11,027 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,027 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,027 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,027 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,027 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,027 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,028 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,028 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:11,028 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,028 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,028 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,028 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,028 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,028 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,028 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,028 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,028 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:11,028 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:11,029 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,029 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,029 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
0b994480a55664c1610182e1a48886e06164a1d85173d076115d47ba9174b785
2022-05-12 22:40:11,029 botocore.auth DEBUG    Signature:
439271092a91b160915c6a21c462dc377dbc81a945466e04d1d913e7cb85e893
2022-05-12 22:40:11,029 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,029 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,030 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,108 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:11,109 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Mwvc6jdeePq8pjTY2qpfdP8xsGWQAw1CeRWx3s0pO7pCpvBF421xLfATMO0dh7zsulVLLVobUsE=', 'x-amz-request-id': 'HZX2FTSAQ6WCZRR4', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,109 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,110 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,110 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,110 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,110 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX2FTSAQ6WCZRR4', 'HostId': 'Mwvc6jdeePq8pjTY2qpfdP8xsGWQAw1CeRWx3s0pO7pCpvBF421xLfATMO0dh7zsulVLLVobUsE=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Mwvc6jdeePq8pjTY2qpfdP8xsGWQAw1CeRWx3s0pO7pCpvBF421xLfATMO0dh7zsulVLLVobUsE=', 'x-amz-request-id': 'HZX2FTSAQ6WCZRR4', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,110 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,112 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,112 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3'}
2022-05-12 22:40:11,112 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,112 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,112 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,112 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,112 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,112 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,113 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,113 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:11,113 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,113 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,113 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,113 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,113 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,113 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,113 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,113 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,113 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3
2022-05-12 22:40:11,114 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3
2022-05-12 22:40:11,114 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,114 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,114 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
11b0875b3f4f74f37317924231d19cfce77cdb87186b8434cde0a22a7d134221
2022-05-12 22:40:11,114 botocore.auth DEBUG    Signature:
1f009a13f075673fd5b9a76336a81c350809d774ca5da6d7fde795461b2345cc
2022-05-12 22:40:11,114 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,115 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,115 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,193 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3 HTTP/1.1" 404 0
2022-05-12 22:40:11,193 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX6738A6JX4SAZR', 'x-amz-id-2': 'XLcd6NW1jGdOt0gWhRpSNtzhWwOyfJrp97BM2SIep0KypvnuMMcgRSI7Qa1CljghJVum/LuwTcA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,193 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,193 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,193 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,193 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,193 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,194 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,194 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:11,194 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,194 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,194 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,194 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,194 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,194 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,194 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,194 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:11,194 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,195 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,195 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,195 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,195 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,195 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,195 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,195 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,195 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:11,195 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:11,195 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,195 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,195 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
0b994480a55664c1610182e1a48886e06164a1d85173d076115d47ba9174b785
2022-05-12 22:40:11,195 botocore.auth DEBUG    Signature:
439271092a91b160915c6a21c462dc377dbc81a945466e04d1d913e7cb85e893
2022-05-12 22:40:11,195 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,195 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,195 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,276 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:11,277 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'DQMQrFLoAIEU/8JMpvyaYUXYgxpVoVg3gfzz14IzTMOV05uylGjcvAlB33nr/vpFq1N1uSVzyc8=', 'x-amz-request-id': 'HZX7FK6N1BGSZGQH', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,277 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,278 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,278 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,278 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,278 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX7FK6N1BGSZGQH', 'HostId': 'DQMQrFLoAIEU/8JMpvyaYUXYgxpVoVg3gfzz14IzTMOV05uylGjcvAlB33nr/vpFq1N1uSVzyc8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'DQMQrFLoAIEU/8JMpvyaYUXYgxpVoVg3gfzz14IzTMOV05uylGjcvAlB33nr/vpFq1N1uSVzyc8=', 'x-amz-request-id': 'HZX7FK6N1BGSZGQH', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,279 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,280 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,281 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless'}
2022-05-12 22:40:11,281 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,281 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,281 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,281 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,281 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,282 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,282 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,282 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:11,282 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,282 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,282 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,282 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,282 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,283 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,283 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,283 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,283 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:11,283 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:11,283 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,283 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,284 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
9dbc9f9605f707bd5a4406b64359ebd61d6be78eb3ae8a57b84bfd8bd32fd6a2
2022-05-12 22:40:11,284 botocore.auth DEBUG    Signature:
18f8008523d64a9809d0dc57b77d429341f6d28d382845aceb7d67f2cfb7366a
2022-05-12 22:40:11,284 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,284 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,284 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,363 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,363 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXB77BPZ9FB4SPT', 'x-amz-id-2': '46rHZcIsXQ/UWv32fgRurYuuCyB0MRiF1eZDZtZUFcGWfKnLBdzmWF5jp8GELf5zQDNc7MXokoM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,364 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,364 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,364 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,364 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,364 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,366 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,366 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless/'}
2022-05-12 22:40:11,366 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,366 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,366 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,366 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,367 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,367 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,367 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,367 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:11,367 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,367 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,367 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,367 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,368 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,368 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,368 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,368 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,368 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:11,368 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:11,368 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,368 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,369 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
b766791531220d0a975496e2ad68520aefa1c09a92dbd72d1ef6d493fa4241e1
2022-05-12 22:40:11,369 botocore.auth DEBUG    Signature:
1b660f1854e547d5f18cd7e328a7d178d6afc847d3c550aa9aa548e695c69e6a
2022-05-12 22:40:11,369 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,369 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,369 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,450 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,451 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXF8HHJK1J7CX5R', 'x-amz-id-2': 'EUjpvrtkrQ77PdNKTekdvhTOSoLX5/ZgNM8CuFz1Ro//9dM6/4xZ7BDo6Kzht0eYNsLiL3OMJOc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,451 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,451 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,451 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,451 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,452 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,453 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,453 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:11,453 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,453 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,454 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,454 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,454 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,454 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,454 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,454 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,454 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,454 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:11,454 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:11,454 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,454 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,455 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,455 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:11,455 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,455 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,455 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:11,455 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:11,455 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:11,455 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:11,455 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,456 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_3/data_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224011Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:11,456 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
fa84ef12bfd6f6b020633a918c2a7adbf8e020cf4a85b8a6aaf06838d76cdca4
2022-05-12 22:40:11,456 botocore.auth DEBUG    Signature:
89b41c1d00f80245cf69be42963c8e1bf72bc902a9ebae08642e5147aaac0d44
2022-05-12 22:40:11,456 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:11,456 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,456 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,544 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_3/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,544 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'upOls63iUjGAF5cfae9XsmB1JSLq8NzsAZEtsSaRO4uE1D6fCa1MXdhG2WpzNrAXRKhCd7ucc0I=', 'x-amz-request-id': 'HZX1S16KGFSS87KE', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,545 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,545 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:11,545 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,545 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:11,545 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX1S16KGFSS87KE', 'HostId': 'upOls63iUjGAF5cfae9XsmB1JSLq8NzsAZEtsSaRO4uE1D6fCa1MXdhG2WpzNrAXRKhCd7ucc0I=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'upOls63iUjGAF5cfae9XsmB1JSLq8NzsAZEtsSaRO4uE1D6fCa1MXdhG2WpzNrAXRKhCd7ucc0I=', 'x-amz-request-id': 'HZX1S16KGFSS87KE', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:11,546 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,547 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,547 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/'}
2022-05-12 22:40:11,548 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,548 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,548 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,548 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,548 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,548 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,548 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,548 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:11,548 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,548 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,548 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,549 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,549 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,549 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,549 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,549 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,549 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/
2022-05-12 22:40:11,549 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/
2022-05-12 22:40:11,550 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,550 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,550 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
0b994480a55664c1610182e1a48886e06164a1d85173d076115d47ba9174b785
2022-05-12 22:40:11,550 botocore.auth DEBUG    Signature:
439271092a91b160915c6a21c462dc377dbc81a945466e04d1d913e7cb85e893
2022-05-12 22:40:11,550 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,550 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,550 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,632 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/ HTTP/1.1" 200 0
2022-05-12 22:40:11,633 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'qvEDF8hHHs7AXxB0kUqPSEOkUCJweg4kuWOc7IPvJi/xhA1H3CuHx5TZRO6IkXicgvuJapRz5dE=', 'x-amz-request-id': 'HZX77TRJM2KGDGG4', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:03:46 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,633 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,634 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,634 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,634 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,634 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX77TRJM2KGDGG4', 'HostId': 'qvEDF8hHHs7AXxB0kUqPSEOkUCJweg4kuWOc7IPvJi/xhA1H3CuHx5TZRO6IkXicgvuJapRz5dE=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'qvEDF8hHHs7AXxB0kUqPSEOkUCJweg4kuWOc7IPvJi/xhA1H3CuHx5TZRO6IkXicgvuJapRz5dE=', 'x-amz-request-id': 'HZX77TRJM2KGDGG4', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:03:46 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 3, 46, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,635 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,636 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,636 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless'}
2022-05-12 22:40:11,637 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,637 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,637 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,637 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,637 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,637 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,637 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,637 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:11,637 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,638 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,638 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,638 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,638 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,638 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:11,638 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:11,639 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,639 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,639 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
9dbc9f9605f707bd5a4406b64359ebd61d6be78eb3ae8a57b84bfd8bd32fd6a2
2022-05-12 22:40:11,639 botocore.auth DEBUG    Signature:
18f8008523d64a9809d0dc57b77d429341f6d28d382845aceb7d67f2cfb7366a
2022-05-12 22:40:11,639 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,639 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,640 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,720 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,720 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX25FK7Q4Z3EMPZ', 'x-amz-id-2': 'hm+4Sin43vKGjBFg4kPfRZifn2x3zgrFwpsjnZMyAFiSCFRAo0kZVxTCvW5Xs7WjfMMjr0y2Wgk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,720 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,721 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,721 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,721 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,721 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,723 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,723 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless/'}
2022-05-12 22:40:11,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,723 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,724 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,724 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,724 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,724 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:11,724 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,724 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,724 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,724 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,725 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,725 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,725 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,725 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,725 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:11,725 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:11,725 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,725 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,725 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
b766791531220d0a975496e2ad68520aefa1c09a92dbd72d1ef6d493fa4241e1
2022-05-12 22:40:11,726 botocore.auth DEBUG    Signature:
1b660f1854e547d5f18cd7e328a7d178d6afc847d3c550aa9aa548e695c69e6a
2022-05-12 22:40:11,726 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,726 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,726 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,812 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,813 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '2pUjfAU3A+0w8znmdGmfOhQezKdwLu1MRaE+mX+gLovSpt8nv8XbZHWMGBLI8owMGdhlhi1epNg=', 'x-amz-request-id': 'HZXCMR7MN5Y79Y8E', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,813 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,814 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,814 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,814 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,814 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZXCMR7MN5Y79Y8E', 'HostId': '2pUjfAU3A+0w8znmdGmfOhQezKdwLu1MRaE+mX+gLovSpt8nv8XbZHWMGBLI8owMGdhlhi1epNg=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '2pUjfAU3A+0w8znmdGmfOhQezKdwLu1MRaE+mX+gLovSpt8nv8XbZHWMGBLI8owMGdhlhi1epNg=', 'x-amz-request-id': 'HZXCMR7MN5Y79Y8E', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,815 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:11,818 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:11,818 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:11,819 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:11,819 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:11,820 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:11,821 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:11,822 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:11,825 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:11,827 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:11,828 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:11,830 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:11,830 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:11,830 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:11,829 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:11,829 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:11,833 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:11,835 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:11,835 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:11,835 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:11,836 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,838 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:11,840 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:11,843 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:11,845 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,846 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:11,847 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:11,847 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless'}
2022-05-12 22:40:11,848 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:11,849 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,849 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:11,849 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,850 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:11,851 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,852 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless'}
2022-05-12 22:40:11,851 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,852 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,852 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,852 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,853 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,853 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,853 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,854 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,853 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,853 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless'}
2022-05-12 22:40:11,853 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,854 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,854 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,854 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,854 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless'}
2022-05-12 22:40:11,854 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,854 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,854 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,855 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,856 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:11,856 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,856 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,856 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,856 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,857 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:11,857 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,857 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,857 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,858 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,858 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,859 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:11,859 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,859 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:11,860 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:11,860 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,860 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,860 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,860 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:11,861 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,861 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,861 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,861 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,861 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:11,861 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,861 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/us-east-1/s3/aws4_request
c330f7533a0ef76b46d37241608e8b8ad340ba341819b330c0d1abf484776114
2022-05-12 22:40:11,861 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,861 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:11,861 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:11,861 botocore.auth DEBUG    Signature:
8d7a9b3dce2a45fc7493e36597a7fdd35af3634507f634c794b9303bf8f82a73
2022-05-12 22:40:11,861 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/us-east-1/s3/aws4_request
f100fa4e323da0e750edc9eca65a1c53697ee04fe70178681f90440e13611511
2022-05-12 22:40:11,861 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:11,861 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:11,861 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,861 botocore.auth DEBUG    Signature:
651b06df7764a3ce2d1742b75ec8d48d0ff65d5cd24094358ec1e304ae778633
2022-05-12 22:40:11,861 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,862 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:11,862 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,862 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,862 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,862 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,862 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,862 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,862 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/us-east-1/s3/aws4_request
3e32f6de1006b0406a7fcf57d73f5bcede81904644ce57fda6e79dc5d22d9e1f
2022-05-12 22:40:11,862 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,862 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:11,862 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,862 botocore.auth DEBUG    Signature:
c1b324c3b53a4765682f52322c0b4318a5affab2f0eecba05711ff9f6a7ca280
2022-05-12 22:40:11,863 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/us-east-1/s3/aws4_request
3e32f6de1006b0406a7fcf57d73f5bcede81904644ce57fda6e79dc5d22d9e1f
2022-05-12 22:40:11,863 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:11,863 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,863 botocore.auth DEBUG    Signature:
c1b324c3b53a4765682f52322c0b4318a5affab2f0eecba05711ff9f6a7ca280
2022-05-12 22:40:11,863 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,863 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,863 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,863 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,863 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:11,864 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,864 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,571 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:12,572 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF2M91DQJVJZC3J', 'x-amz-id-2': 'GYokE523gV3osFlxabtZ4HFJi0OoeoXKEspQIhNAZvTpKPMiezmB1SJCZ5DCkiulso0azwpf8dM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:12,572 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,575 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,575 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,575 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,575 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,575 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,575 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless HTTP/1.1" 400 0
2022-05-12 22:40:12,576 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,576 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF61WND1HFK8NJN', 'x-amz-id-2': 'gusfVoU5/RafTxXxjBrTv3UBzXmh7dt8ceE/JraZR0Ec0OfIcqFdu2LL+LDDuU7zT487wfJ5wHA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:12,576 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,576 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,576 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,577 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,577 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,578 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,578 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,578 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,578 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,578 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,578 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,578 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:12,578 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,578 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,579 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF0RMVENMG35FG1', 'x-amz-id-2': 'GncE6M6n+Q/xqpsCi1edz3As4Lc3QBnDZcqoiN+uWL78EYUg6AnwbgJly63sojI98OXBkFo7sCI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:12,579 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,579 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,579 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,579 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,581 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,580 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,579 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,581 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,581 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless HTTP/1.1" 400 0
2022-05-12 22:40:12,581 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,581 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,581 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,582 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJFA2Y04HZBE7KSF', 'x-amz-id-2': 'Oo1jiLARW6PaJ6kMuparPerv+t8GSgeDoZXrudnjPzJPnZ+xzwQVxifrNJyjDLpQEOtpstfnNsU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:12,582 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,582 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,582 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,582 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,585 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,583 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:12,583 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,585 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,582 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,585 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:12,585 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,585 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,585 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,585 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,585 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,585 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,586 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,586 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,586 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,586 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,586 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,586 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
2b4251c6800653cdac16a77385f0575a2daa9e474e16da359a3f13b91cea64a0
2022-05-12 22:40:12,586 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,586 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,586 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,586 botocore.auth DEBUG    Signature:
3d39e2dc6588338485ca3206a7b5eaeb76f5a7e16abe466bda11668b9f327681
2022-05-12 22:40:12,586 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,586 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,586 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,586 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,586 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:12,587 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,587 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,587 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,587 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:12,587 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,587 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,587 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,587 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,587 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,587 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,588 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:12,588 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,588 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
2b4251c6800653cdac16a77385f0575a2daa9e474e16da359a3f13b91cea64a0
2022-05-12 22:40:12,588 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,588 botocore.auth DEBUG    Signature:
3d39e2dc6588338485ca3206a7b5eaeb76f5a7e16abe466bda11668b9f327681
2022-05-12 22:40:12,588 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,589 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,589 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,589 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,589 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,589 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,589 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,589 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,589 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,590 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,590 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,590 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:12,590 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,590 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,590 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:12,590 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:12,590 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:12,591 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:12,591 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,591 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:12,591 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,591 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,591 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
2b4251c6800653cdac16a77385f0575a2daa9e474e16da359a3f13b91cea64a0
2022-05-12 22:40:12,591 botocore.auth DEBUG    Signature:
3d39e2dc6588338485ca3206a7b5eaeb76f5a7e16abe466bda11668b9f327681
2022-05-12 22:40:12,591 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,591 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,591 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,591 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:12,591 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,592 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
2b4251c6800653cdac16a77385f0575a2daa9e474e16da359a3f13b91cea64a0
2022-05-12 22:40:12,592 botocore.auth DEBUG    Signature:
3d39e2dc6588338485ca3206a7b5eaeb76f5a7e16abe466bda11668b9f327681
2022-05-12 22:40:12,592 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:12,592 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,592 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,592 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,691 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:23,691 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'MRCSD7JRCBHSCPZA', 'x-amz-id-2': 'ioHIu0FO2i/RKL+Fn2tzQ5BZ0V+qdtGBQMAs2GqXkHiOYaSDQkeCpKfbNNpsUcutflr3vuZJLtg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:22 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,691 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,691 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,691 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,691 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:23,692 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:23,692 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:23,692 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,692 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,692 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,692 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,692 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,692 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:23,692 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:23,692 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,692 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,692 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/eu-central-1/s3/aws4_request
20dc837299938e46b23797e034ee693b33369311265135dbb3d95bf477bec003
2022-05-12 22:40:23,692 botocore.auth DEBUG    Signature:
5fbb043784484311fdff3aa638be0a4babb3ed03da3d46c58f06849db432e1c9
2022-05-12 22:40:23,692 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,692 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,692 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,692 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:23,713 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:23,713 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'MRCKEMGZS9H4197V', 'x-amz-id-2': 'e/xvhowvW5D9uPV0DiMM0Rfb8aPxV8OpffJg5oe/+1xxGRYzVxDaylO0q6hgkZ5vlV+pX0pNCuU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:22 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,713 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,714 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,714 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:23,714 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:23,714 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,714 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:23,714 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:23,714 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,714 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,715 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/eu-central-1/s3/aws4_request
20dc837299938e46b23797e034ee693b33369311265135dbb3d95bf477bec003
2022-05-12 22:40:23,715 botocore.auth DEBUG    Signature:
5fbb043784484311fdff3aa638be0a4babb3ed03da3d46c58f06849db432e1c9
2022-05-12 22:40:23,715 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,715 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,715 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,715 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:23,716 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:23,716 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'MRCH889GAMN8X5HG', 'x-amz-id-2': 'Jg64jIpJvjy4stCIU5paHfEoxHlY1XPfAkRn9+43pdSjjtI25lA5wXSH+ZxA0gxQT4S3hXyDL4U=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,716 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,717 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,717 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,717 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,717 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:23,717 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:23,717 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:23,717 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,717 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,717 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,717 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,717 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,717 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:23,717 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:23,717 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,717 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,718 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/eu-central-1/s3/aws4_request
20dc837299938e46b23797e034ee693b33369311265135dbb3d95bf477bec003
2022-05-12 22:40:23,718 botocore.auth DEBUG    Signature:
5fbb043784484311fdff3aa638be0a4babb3ed03da3d46c58f06849db432e1c9
2022-05-12 22:40:23,718 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,718 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,718 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,718 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:23,719 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:23,719 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'MRCJG977XHB5D83C', 'x-amz-id-2': 'VFXLbJqFbwC6IrtoSCkiUuVxI1awV9UMp7iAgJ90Vvc+uI0JWoNqgOhlD+m9Ce9k2aN7D+UIc8Q=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,719 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,720 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,720 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,720 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,720 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:23,720 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:23,720 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:23,720 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,720 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,720 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,720 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,720 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,720 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:23,720 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:23,721 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,721 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,721 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/eu-central-1/s3/aws4_request
20dc837299938e46b23797e034ee693b33369311265135dbb3d95bf477bec003
2022-05-12 22:40:23,721 botocore.auth DEBUG    Signature:
5fbb043784484311fdff3aa638be0a4babb3ed03da3d46c58f06849db432e1c9
2022-05-12 22:40:23,721 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,721 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,721 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,721 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:29,077 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:29,077 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:29,078 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:29,078 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Zcp7PrkAoa9qwHPD+4RDWsouRFukvLloMR0d/tHPPeHWz6ee82QpyETAADRtb/xqubzRL4Gf3Pc=', 'x-amz-request-id': 'BAY64090QSN9ZTF6', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,079 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'q65hMGQO8hP316O14gnMAEnd+ytFj/9p3WOS6wNMLUE1ShVQPXlw4iB1uJM5uFRs/LpsjSm4unM=', 'x-amz-request-id': 'BAYBS5C2T5VMN9NT', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,080 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '98YeK3RzSUQdgkATqLwYCVWXJtHO3xTHvGXxJaqfUHehMDMEHfoHY5ntL+JWNp8XRSyhJE1D2FQ=', 'x-amz-request-id': 'BAYCZNDVEHN1GT4V', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,080 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:29,080 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,080 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,080 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,081 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'y7UprmxwSJMKrmFp1nFvvHhpRi6KA046WSJ40bYt1MnUioB+sEzqJtyMcEh8c3/R4u/KukvzrZs=', 'x-amz-request-id': 'BAYCZ8Z0ZDM6PPHD', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,081 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:29,082 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:29,082 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:29,082 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,083 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,083 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,083 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,084 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:29,084 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:29,084 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:29,084 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:29,084 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,084 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:29,085 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:29,085 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:29,085 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:29,085 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:29,085 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:29,086 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:29,086 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:29,086 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:29,086 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:29,087 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:29,087 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:29,088 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:29,087 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:29,087 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,087 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:29,088 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,088 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:29,088 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,088 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,088 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,088 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:29,088 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,088 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,088 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,088 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,088 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,089 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,089 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,089 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,089 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,089 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:29,089 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,089 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,089 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,089 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless
2022-05-12 22:40:29,089 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:29,089 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,089 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,089 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,089 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:29,089 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,089 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:29,089 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,089 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,089 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:29,090 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless
2022-05-12 22:40:29,090 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
064ebe1a582ca607deaf8998d3dd82c82f304a1f824acfeeff60586e703cf307
2022-05-12 22:40:29,090 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,090 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless
2022-05-12 22:40:29,090 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,090 botocore.auth DEBUG    Signature:
691da52625801f3986e47fe63833b72330f53b43d64a8c19e8658892ee453421
2022-05-12 22:40:29,090 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
ed319d257cdbbdb8be77591b3e964beaccb72cc0a29ff2e4a455ccca482a375b
2022-05-12 22:40:29,090 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,090 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,090 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,090 botocore.auth DEBUG    Signature:
fd6304b817e02c398e1597359b606b71b57aab8176ca1a5d8d906d6265220129
2022-05-12 22:40:29,090 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,090 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
ed319d257cdbbdb8be77591b3e964beaccb72cc0a29ff2e4a455ccca482a375b
2022-05-12 22:40:29,090 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,090 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,090 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
1f81a6faeaf9b617f34aab62a518d8434c7977165569b65a064c3a2f25073603
2022-05-12 22:40:29,090 botocore.auth DEBUG    Signature:
fd6304b817e02c398e1597359b606b71b57aab8176ca1a5d8d906d6265220129
2022-05-12 22:40:29,091 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,091 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,091 botocore.auth DEBUG    Signature:
b75dd5bb1761152b1b784c35e06a77fa64176864d02b892b8cc556f132379555
2022-05-12 22:40:29,091 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,091 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,091 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,091 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,091 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,092 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,092 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,173 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:29,173 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAY3VZJ6G0SET8MY', 'x-amz-id-2': 'UCBkFZO8Zmo+jpc77wVJNux8Iy5CpEXZQBg+n8ImbU7wm2nCwxVfH1JNHZIqWSI2m9N15DdF1Zk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:28 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,174 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:29,174 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,174 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAYE7JY48Q3GAH9Q', 'x-amz-id-2': '4UtdPtbs8CHdTo3/Q8by/vcynnyXSA4/sdqBSEB/Or4m9z9piCCfwRmijZB0JQImaMjdMxSfL/c=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:28 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,175 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,175 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,175 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,176 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,176 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,176 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,176 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:29,177 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:29,177 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,178 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:29,178 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,179 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAY4ZMF2118WTDGJ', 'x-amz-id-2': 'HJJrrr7XO6O7ml4gHO9oF2c4ogVWdQesIwyrUqdweG/xK1VFgKq40bjBxE/j3cBs1VaGLZwW+zw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:28 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,181 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,179 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:29,181 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,179 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAY2PWFP8A31N6HJ', 'x-amz-id-2': '0j39YVACuqwIiqa9KWUMjHv9XEqu987ge7zZNe98LIhlc2rBiVSBTYYKgWIzJE4Q8Tdk2Q7rWfs=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:28 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,181 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,182 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,182 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless/'}
2022-05-12 22:40:29,182 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,183 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,184 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,185 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,185 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,185 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,185 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless/'}
2022-05-12 22:40:29,186 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,186 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,186 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:29,186 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,186 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,187 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,187 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,187 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,189 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,189 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,189 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,187 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,188 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:29,189 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,190 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,191 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,190 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,191 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless/'}
2022-05-12 22:40:29,191 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,191 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,191 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,192 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless/'}
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,192 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,190 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,192 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,192 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,193 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,193 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,193 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:29,193 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,193 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless/
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,193 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,194 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,193 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,194 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,194 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,194 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
dea355fd95c59d56e1b1ddfe3c090d5187ae3dc9cf4f3b7a6c8aa4af84cdd468
2022-05-12 22:40:29,194 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,194 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,194 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,194 botocore.auth DEBUG    Signature:
ca350d9717fc830005ac77e45eeb5dad960aad0e844324039b0fb4f2907a83fc
2022-05-12 22:40:29,194 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,194 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:29,194 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,194 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,194 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,194 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:29,194 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,194 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,194 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,194 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,195 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,195 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,195 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,195 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,195 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,195 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,195 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
48e86675fada98656715d72df9d29508c67888962dc63627e93590a2067c3ebf
2022-05-12 22:40:29,195 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:29,195 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:29,195 botocore.auth DEBUG    Signature:
1225f8125e2289bac2f4cfcb74ad010a75f8eab0e8f92f8b3b3827676cd05217
2022-05-12 22:40:29,195 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless/
2022-05-12 22:40:29,195 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/
2022-05-12 22:40:29,195 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,195 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,196 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,196 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,196 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,196 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,196 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,196 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
9cfad149c6aa4aade72437983b25b5dcc941fa29e1fff250845b4b3dde87d879
2022-05-12 22:40:29,196 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
48e86675fada98656715d72df9d29508c67888962dc63627e93590a2067c3ebf
2022-05-12 22:40:29,196 botocore.auth DEBUG    Signature:
d14033d3a992280e67cccec28550df34f76d4abbb4c39ef288c0faa3dba7f0d7
2022-05-12 22:40:29,196 botocore.auth DEBUG    Signature:
1225f8125e2289bac2f4cfcb74ad010a75f8eab0e8f92f8b3b3827676cd05217
2022-05-12 22:40:29,196 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,197 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,197 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,197 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,197 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,197 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,276 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:29,277 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'NGCmKj4tM23W7rPUITRVtYBsg1deXS0b2pa/YXcRo459e1RI3lkUDGcOw1vD2BHE5tDh9IA3uzA=', 'x-amz-request-id': 'BAYEDKSWM3VPXNGC', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:09 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:29,277 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,278 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,278 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,278 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,278 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'BAYEDKSWM3VPXNGC', 'HostId': 'NGCmKj4tM23W7rPUITRVtYBsg1deXS0b2pa/YXcRo459e1RI3lkUDGcOw1vD2BHE5tDh9IA3uzA=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'NGCmKj4tM23W7rPUITRVtYBsg1deXS0b2pa/YXcRo459e1RI3lkUDGcOw1vD2BHE5tDh9IA3uzA=', 'x-amz-request-id': 'BAYEDKSWM3VPXNGC', 'date': 'Thu, 12 May 2022 22:40:30 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:09 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 9, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:29,279 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,280 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,280 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl'}
2022-05-12 22:40:29,280 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,281 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,281 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,281 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,281 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,281 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,281 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,281 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:29,281 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,281 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,282 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,282 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,282 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,282 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,282 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,282 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,282 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:29,283 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:29,283 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:29,283 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:29,283 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:29,284 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Hf28Axx3ybad2u2idMOoVVExrAzrXPhrDPYWWdgvTW78p9u4bt+YkuWAHdX4sF+ZkH5z5Z71p7E=', 'x-amz-request-id': 'BAYFD0E2Y1HHRRGH', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:11 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:29,284 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'tyFzFV7EhjiKpMSdPEUw5EW4mgNuXRUBn+CwYFS7r1EJo1d2dyVizqXski6l/jPjHkMeklBACrw=', 'x-amz-request-id': 'BAYEJA2T2F04SJBM', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:29,285 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,285 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '47gvUm/wBTBT2VowiZBzA0mg63OG7LfpCXdNAGtWSpiJoSLeYRoHP4e43WHgnjO/8TfrgN4sHGY=', 'x-amz-request-id': 'BAYEHF50NP1X1AM5', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:11 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:29,286 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,286 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,286 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,286 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,287 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,287 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,288 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
ba8e08ca9902145dfff03c81e663933289d4bf846f634635d37a548d734a60b5
2022-05-12 22:40:29,288 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,288 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,288 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,288 botocore.auth DEBUG    Signature:
87867ca5344ea640ed3c28004e4dec7457cb0cdcaf4f25f65cebb328ea29c729
2022-05-12 22:40:29,288 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,288 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,288 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,288 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,288 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,288 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'BAYFD0E2Y1HHRRGH', 'HostId': 'Hf28Axx3ybad2u2idMOoVVExrAzrXPhrDPYWWdgvTW78p9u4bt+YkuWAHdX4sF+ZkH5z5Z71p7E=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Hf28Axx3ybad2u2idMOoVVExrAzrXPhrDPYWWdgvTW78p9u4bt+YkuWAHdX4sF+ZkH5z5Z71p7E=', 'x-amz-request-id': 'BAYFD0E2Y1HHRRGH', 'date': 'Thu, 12 May 2022 22:40:30 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:11 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 11, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:29,288 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'BAYEJA2T2F04SJBM', 'HostId': 'tyFzFV7EhjiKpMSdPEUw5EW4mgNuXRUBn+CwYFS7r1EJo1d2dyVizqXski6l/jPjHkMeklBACrw=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'tyFzFV7EhjiKpMSdPEUw5EW4mgNuXRUBn+CwYFS7r1EJo1d2dyVizqXski6l/jPjHkMeklBACrw=', 'x-amz-request-id': 'BAYEJA2T2F04SJBM', 'date': 'Thu, 12 May 2022 22:40:30 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:29,288 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,289 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'BAYEHF50NP1X1AM5', 'HostId': '47gvUm/wBTBT2VowiZBzA0mg63OG7LfpCXdNAGtWSpiJoSLeYRoHP4e43WHgnjO/8TfrgN4sHGY=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '47gvUm/wBTBT2VowiZBzA0mg63OG7LfpCXdNAGtWSpiJoSLeYRoHP4e43WHgnjO/8TfrgN4sHGY=', 'x-amz-request-id': 'BAYEHF50NP1X1AM5', 'date': 'Thu, 12 May 2022 22:40:30 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:11 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 11, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:29,289 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,289 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,289 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,289 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,289 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,290 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,291 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,291 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy'}
2022-05-12 22:40:29,291 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless/DISTANCE.npy'}
2022-05-12 22:40:29,291 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless/EXTENT.npy'}
2022-05-12 22:40:29,291 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,291 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,292 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,292 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:29,292 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy
2022-05-12 22:40:29,293 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,293 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,293 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,293 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,293 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,294 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:29,294 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy
2022-05-12 22:40:29,294 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy
2022-05-12 22:40:29,294 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:29,294 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy
2022-05-12 22:40:29,294 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy
2022-05-12 22:40:29,294 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,294 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,294 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,294 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,294 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,294 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,294 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
c47efe60010b2c70399d33fb043528d8e2b2128fafc13f3eb3dfbce93b4191a1
2022-05-12 22:40:29,294 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
b8911e15180e6d3dff34f546b89e3c5d27be445383385603697195e3f4c09158
2022-05-12 22:40:29,294 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
b7b7331420c1dc916a15642156c565c4b3450f74ba1da69f60c6906347688ca5
2022-05-12 22:40:29,294 botocore.auth DEBUG    Signature:
bc5c07796a1f86d9da9fdd50073dd7ea88788fe6d51cf79b389191e0d8358018
2022-05-12 22:40:29,294 botocore.auth DEBUG    Signature:
ccdbf87eb07443ed36d705e1bbc3c3272d4542b08d6bc4589a729d8ffe6335c1
2022-05-12 22:40:29,294 botocore.auth DEBUG    Signature:
64f70c50842ff103fcf97db7315320705ed16c13ab1da3f72cb576dfb9953e9e
2022-05-12 22:40:29,295 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,295 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,295 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,295 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,295 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,295 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,295 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,295 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,295 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,374 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 404 0
2022-05-12 22:40:29,374 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAY2ZQP1DXNNV6RY', 'x-amz-id-2': 'qBOQiT+DvE710DCvW8Q9h66+ho2wsgM7DIpUfA/o6x6OPVzeJO6Xvq+6VBApq0RfLQXRMxqC+jM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,375 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,375 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,375 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,375 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,375 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,377 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,377 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl/'}
2022-05-12 22:40:29,377 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,378 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy HTTP/1.1" 404 0
2022-05-12 22:40:29,378 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,379 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAY4S0BFJR4B6BHV', 'x-amz-id-2': 'UB0wluv4UXST6rSj/0tu2GE2IzcTDIX7AAuwvyYMCQBniI1YoLGQX32W1w68tdmfBLRfZuqTAwA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,379 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,379 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,379 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,380 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,380 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,380 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,381 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,381 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,381 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,382 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:29,382 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,382 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,384 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,385 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy/'}
2022-05-12 22:40:29,385 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless/DISTANCE.npy HTTP/1.1" 404 0
2022-05-12 22:40:29,384 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,386 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless/EXTENT.npy HTTP/1.1" 404 0
2022-05-12 22:40:29,386 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,387 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAYA3DQ7AKTGRJP0', 'x-amz-id-2': 'lmVqplChfLoxMh8CApxLGk/4N+vIa8Vo9FzbkAk6XnUoXQDZOoB5RSOCONEiCr6zNxXxE9eQpME=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:28 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,388 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,388 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAY6M7MY847RKB93', 'x-amz-id-2': 'uTMveN0ck9OCNGTfjNCIspFK534Gr0vPIczL1Rnz60sUDXjOjxjH3NMFNl5tInkbzCeIAM4SUdM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,388 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,389 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,389 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,389 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,389 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,390 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,390 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,390 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,390 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,391 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,391 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,391 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,390 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,391 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,392 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,392 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,392 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,393 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:29,392 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,393 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,393 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,393 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,394 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:29,395 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,395 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:29,395 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,397 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:29,397 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/data_timeless/DISTANCE.npy/'}
2022-05-12 22:40:29,397 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:29,397 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,397 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_3_3/mask_timeless/EXTENT.npy/'}
2022-05-12 22:40:29,398 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,398 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,398 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,398 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,398 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,398 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,398 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,398 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,398 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,399 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
1e4e3c850d2847e81fde86e0cd190c283c56c2e8382f4ba1cd73602e89cd8257
2022-05-12 22:40:29,398 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,399 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,399 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:29,399 botocore.auth DEBUG    Signature:
74d8d83fb5b2aeae8a62b0d778a19f3c516ced038a6796ea1b9f97eecbcd2e5f
2022-05-12 22:40:29,399 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,399 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,399 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:29,399 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,399 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,399 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,400 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,400 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,400 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,400 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,400 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:29,400 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,400 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:29,401 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:29,400 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy/
2022-05-12 22:40:29,400 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy/
2022-05-12 22:40:29,401 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,401 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,401 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,401 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,401 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:29,401 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,401 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,401 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:29,402 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,402 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
f728c57540919f1d3bd3e34d1419d31aadd72bffac394ceb816de672afcb3207
2022-05-12 22:40:29,402 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:29,402 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,402 botocore.auth DEBUG    Signature:
d975019999da9f55ccb949f7f13ceca3157ce3249760e60f47fd6d381e9df517
2022-05-12 22:40:29,402 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,402 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,402 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,402 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:29,402 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,402 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,402 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:29,403 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy/
2022-05-12 22:40:29,403 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,403 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:29,403 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy/
2022-05-12 22:40:29,403 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,403 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy/
2022-05-12 22:40:29,403 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,403 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy/
2022-05-12 22:40:29,404 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,404 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,404 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
d1f606fa8aeda4f95648a4aa7599f10d29f35dfd9c92fa3c8d6fc2232ba1cf80
2022-05-12 22:40:29,404 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224029Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:29,404 botocore.auth DEBUG    Signature:
55d319ac0d51d974334780c669b129fcbd65d075ed6d140cd004f0c15159f0e3
2022-05-12 22:40:29,404 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/eu-central-1/s3/aws4_request
1e3209dfdbc560220e3a993fcce82f950fb41d6bcf44f1f723acbe58ce6b94e4
2022-05-12 22:40:29,404 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,404 botocore.auth DEBUG    Signature:
f6e4048c24a824a2c4f5a0ca4ef86dbfcbc3049648e18fe2635506d1b7c9b1cf
2022-05-12 22:40:29,404 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,404 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:29,404 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,405 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,405 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,484 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl/ HTTP/1.1" 404 0
2022-05-12 22:40:29,484 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:29,485 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAY48ATS4758E6Z0', 'x-amz-id-2': '0AwPyxLLgUbXc4kcThpCZd/5nAlNhciKq3ENCjlk8dDThn1NiwGxItNn7ymQi8LZU8G5YqYXfJ4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,486 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAY561HVZ81HAM7S', 'x-amz-id-2': 'IvkYYQw0pzcNN+/Os7jIeRYlV4el4qNKUarnBEq0oEsN8PNS3eE5WFHOqPMkoLhVJ59335klLQM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,486 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,486 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,486 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,487 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,487 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,487 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,487 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,487 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,490 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:29,491 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:29,492 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:29,492 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:29,494 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:29,494 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:29,494 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:29,497 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:29,497 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:29,499 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:29,501 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:29,501 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/data_timeless/DISTANCE.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:29,502 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_3_3/mask_timeless/EXTENT.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:29,503 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:29,505 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:29,505 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAYD7FYX7ST5F2YR', 'x-amz-id-2': '46krbqV0CUNv8zqc8j4uZFTvTm+irs6P+1FoMNT75BTNnVFE/AEMP9EI634HfLqwFj/cLsgTdbM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:28 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,506 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BAY5RVDDXR54J6JB', 'x-amz-id-2': 'O52ykVgMI80SFEASo8w32EwS8rP3rAgJ8bkkuo2aSNyKW7MXe8UOcDNIAIL078aK8PjuNdFFA5o=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:29,508 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:29,509 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:29,509 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,509 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:29,510 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:29,510 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:29,511 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,511 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,512 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,511 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:29,511 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:29,511 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:29,512 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:29,512 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:29,516 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:29,517 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:29,517 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:29,517 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:29,518 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:29,518 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:29,518 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:29,519 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:29,521 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:29,521 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:29,521 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:29,521 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:29,522 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,523 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:29,523 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:29,523 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:29,524 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,529 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,528 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:29,529 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,527 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:29,529 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,529 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:29,529 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,529 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:29,530 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:29,530 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:29,530 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,530 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:29,530 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:29,530 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,531 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,533 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:29,535 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:29,535 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,535 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,537 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:29,537 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:29,537 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:29,536 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:29,537 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,537 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:29,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:29,539 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:29,539 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,539 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:29,540 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:29,540 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:29,540 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'B0sS5nt7r9iMdSqG874dtg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:29,540 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,540 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:29,540 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:29,541 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,541 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,541 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:29,541 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:29,541 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:29,541 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:29,541 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:29,542 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:29,542 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:29,542 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:29,542 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:29,542 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:29,543 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:29,543 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:29,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:29,543 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:29,543 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:29,543 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:29,544 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:29,544 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:29,544 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:29,544 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,544 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:29,544 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_3_3/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:29,544 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,544 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:29,544 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,544 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,544 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,545 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,545 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:29,545 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224029Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:29,545 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/us-east-1/s3/aws4_request
3d83ef7f4579ca4d2edc8563b004c866706f96875be60b0279b290471a56acbe
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,545 botocore.auth DEBUG    Signature:
7454df63540b94981b6c24ff90d3c4e4992904934b4e853687edd1836392014d
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,545 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,545 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:29,546 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:29,546 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,546 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,546 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:29,546 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,546 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:29,546 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,546 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,546 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:29,547 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:29,547 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:29,547 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:29,547 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:29,547 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:29,547 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:29,547 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:29,547 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,547 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224029Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:29,547 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/us-east-1/s3/aws4_request
45b17c00f64b59fab42c8ef4e1c79383ec707f0a017e7eaebb7cd84c7f2a4202
2022-05-12 22:40:29,547 botocore.auth DEBUG    Signature:
a678c3ff4c2e217a0c3e00cc3056e33628ba2ee79040b413ccae8bc9398ca722
2022-05-12 22:40:29,547 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,547 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,547 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,547 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,548 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,548 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:29,548 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:29,548 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:29,548 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,548 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,548 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:29,548 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,548 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:29,548 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:29,548 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:29,548 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:29,548 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:29,548 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:29,548 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy
2022-05-12 22:40:29,548 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy
2022-05-12 22:40:29,549 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,549 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224029Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:29,549 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/us-east-1/s3/aws4_request
6de5f339badd94c659539b18edcb3fa14fa0e8b98401bb2cc99653b3893d7d75
2022-05-12 22:40:29,549 botocore.auth DEBUG    Signature:
0ae6a416e0b5b766eb2eb749c258d7d70277e06261a973b67b0881fc4bf81e28
2022-05-12 22:40:29,549 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,549 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,549 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,550 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,550 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:29,553 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,553 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:29,553 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:29,553 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,553 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:29,553 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'S/Wz7xyo6r7KThbY4TUDPg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:29,554 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,554 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:29,554 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:29,554 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:29,554 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:29,554 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:29,554 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:29,554 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy
2022-05-12 22:40:29,554 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy
2022-05-12 22:40:29,554 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:29,554 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224029Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:29,554 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224029Z
20220512/us-east-1/s3/aws4_request
1ee83d0d5ab9a51577bd637fa2f93565e079e8021401b81c256cb714b06b2f1b
2022-05-12 22:40:29,554 botocore.auth DEBUG    Signature:
707f5ab9ab6e836dd72561638267cb4fb3f1ed50b73de8ea14b9349c1b0a122b
2022-05-12 22:40:29,554 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,554 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:29,554 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:29,554 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:29,555 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,481 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:30,484 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:30,491 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:30,492 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:30,555 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:30,556 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 400 None
2022-05-12 22:40:30,556 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTH7XHT04ARPRZR', 'x-amz-id-2': '7mIpavn5rVwAMal6+p5g68l6hRzgvDRU5U5pbjiANA8/ArY8osjXzb2m7obJYMLjCYuemQP7WvE=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:30,557 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1EXTH7XHT04ARPRZR7mIpavn5rVwAMal6+p5g68l6hRzgvDRU5U5pbjiANA8/ArY8osjXzb2m7obJYMLjCYuemQP7WvE='
2022-05-12 22:40:30,560 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:30,560 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,560 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:30,560 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,561 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,561 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,561 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:30,561 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:30,562 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy HTTP/1.1" 400 None
2022-05-12 22:40:30,562 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,563 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,563 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,563 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTRK0Y69K272ADH', 'x-amz-id-2': 'hkmfuFTClgabHXCrzh/hWVBKWIs6nFAK5pFov+/eWBPR89VSHdCdm9NUzDlsrlOq5UpJ3aZ55y4=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:30,563 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,564 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1EXTRK0Y69K272ADHhkmfuFTClgabHXCrzh/hWVBKWIs6nFAK5pFov+/eWBPR89VSHdCdm9NUzDlsrlOq5UpJ3aZ55y4='
2022-05-12 22:40:30,564 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,566 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:30,566 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,566 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,566 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,566 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:30,566 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,566 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,566 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,567 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,567 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,567 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,567 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
9d76ecd945a4a7b21716dff9a0c56de2dfd3992fc1afd436864eb900d2e9f3ab
2022-05-12 22:40:30,567 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:30,567 botocore.auth DEBUG    Signature:
2ce347f3963cd301385598be933e8ba66883d7909c8ee1da3890de59afabbe95
2022-05-12 22:40:30,567 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,567 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,567 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,567 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,567 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,567 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,567 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,567 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,568 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,568 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:30,568 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,568 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:30,568 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,568 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_3/data_timeless/DISTANCE.npy HTTP/1.1" 400 None
2022-05-12 22:40:30,568 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,568 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,568 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,568 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTJ63BHX10DCQB9', 'x-amz-id-2': 'kNQNNjOsIsmORNM8RHYjviH/WE84Ts0rw7b53+Jb1W1eyIldglNOZMymUGVduEffi7BUW6lLyfY=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:30,569 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
437c4f44e3cb1bb329ce13931b0eb184e6ab893b7eec81a6f2c47d1c9a6af95a
2022-05-12 22:40:30,569 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1EXTJ63BHX10DCQB9kNQNNjOsIsmORNM8RHYjviH/WE84Ts0rw7b53+Jb1W1eyIldglNOZMymUGVduEffi7BUW6lLyfY='
2022-05-12 22:40:30,569 botocore.auth DEBUG    Signature:
a74ef0108afc824253bd8f8c8a4f47b00dacd757c67fcf23f427a03e26c21eaf
2022-05-12 22:40:30,570 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:30,570 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,570 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,570 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,570 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:30,570 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,570 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,570 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,570 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,571 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:30,571 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,571 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:30,571 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:30,571 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,571 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_3_3/mask_timeless/EXTENT.npy HTTP/1.1" 400 None
2022-05-12 22:40:30,571 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,571 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,571 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,571 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,571 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,571 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,571 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,571 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,571 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_3/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,571 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
fdc5c3eac17a91598b459e5438827a581667b7cf6e07dd480ad8bd0d6c2f5217
2022-05-12 22:40:30,572 botocore.auth DEBUG    Signature:
791a6d62736737e342c30f6fdb7834fb67f91cd1e4ec5340cab39924ccc69c57
2022-05-12 22:40:30,572 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,572 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,572 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,572 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,572 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:30,572 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTNH7CNMJNV9SW8', 'x-amz-id-2': 'U/WkK7Cuj9WFD2Otiz4UbKh4BVSs4NueYiMtzcg5fzUF7oGJrpAgxjAQj0O6iqamYfwZCpyzkg0=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:30,572 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1EXTNH7CNMJNV9SW8U/WkK7Cuj9WFD2Otiz4UbKh4BVSs4NueYiMtzcg5fzUF7oGJrpAgxjAQj0O6iqamYfwZCpyzkg0='
2022-05-12 22:40:30,573 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:30,573 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,573 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:30,573 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,573 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,573 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,573 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:30,573 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,574 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,574 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,574 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,574 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,574 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,574 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,574 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,574 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,574 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_3_3/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,574 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
891504accd24e1b8ca48a25132389cf322c0087ae25a248d90b220659cefc049
2022-05-12 22:40:30,574 botocore.auth DEBUG    Signature:
b7061b6c40ec1946b87e43f9d9140aafc57274f0f03bad7b6bfeb7653c1d446b
2022-05-12 22:40:30,574 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,574 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,574 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,574 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,574 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:34,543 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,551 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,557 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,565 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,633 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,641 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,647 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,659 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,738 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_3/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 200 0
2022-05-12 22:40:34,738 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'gXrvNGJY0yVh5wadQAFoTm4o+lYq16Zf5mz/aI8L0l6w/+3aaU8x5ImFY9nlEdUcWMHqEer9SJc=', 'x-amz-request-id': '789BTW3M0JR5YDR6', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"074b12e67b7bafd88c752a86f3be1db6"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:34,739 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:34,739 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:34,739 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:34,739 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:34,739 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:34,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:04,274 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_3/mask_timeless/BOUNDARY.npy HTTP/1.1" 200 0
2022-05-12 22:41:04,275 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'FwN1pTYgkFoWqbNSucEL+XvKTHaNjjsZNtsE7WF42p32WuqAHy1CoGJuFJY0v3zk1J1hOOFl4Ls=', 'x-amz-request-id': '7898QKAK9YMXMZYM', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:04,275 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:04,276 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:04,276 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:04,276 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:04,276 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:04,277 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:09,297 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_3/mask_timeless/EXTENT.npy HTTP/1.1" 200 0
2022-05-12 22:41:09,298 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'C4LaylvJEtB70YyFSCSYCYotwzq9KWk7JqRnBPUYDsj10UabkNq8MnDNyoSGh4YFUyV+lUJp4wg=', 'x-amz-request-id': '7890KSAX5EVYA3YR', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:09,298 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:09,298 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:09,298 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:09,299 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:09,299 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:09,299 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:48,084 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_3_3/data_timeless/DISTANCE.npy HTTP/1.1" 200 0
2022-05-12 22:41:48,085 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hE9ZZg+RFPzod5pZyCXVz6nvUvqYtgiHcU5nJ+PVI864RkRVPHMuKR+aU6YaHoqJ9ea/HZ8Mchg=', 'x-amz-request-id': '789DFBKGPSWE4QYD', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"4bf5b3ef1ca8eabeca4e16d8e135033e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:48,085 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:48,086 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:48,086 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:48,086 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:48,086 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:48,088 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:48,103 eolearn.core.eoworkflow DEBUG    Removing intermediate result for SaveTask
2022-05-12 22:41:48,105 eolearn.core.eoworkflow DEBUG    Workflow finished with WorkflowResults(
  Dependency(SaveTask):
    EOPatch(
      data: {
        BANDS: numpy.ndarray(shape=(22, 1100, 1100, 4), dtype=uint16)
        CLP: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
      }
      mask: {
        CLM: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=int8)
        IS_DATA: numpy.ndarray(shape=(22, 1100, 1100, 1), dtype=uint8)
      }
      scalar: {}
      label: {}
      vector: {}
      data_timeless: {
        DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
      }
      mask_timeless: {
        BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
        EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
      }
      scalar_timeless: {}
      label_timeless: {}
      vector_timeless: {
        GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
      }
      meta_info: {}
      bbox: BBox(((229500.0, 1359500.0), (240500.0, 1370500.0)), crs=CRS('32630'))
      timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=22
    )
)
2022-05-12 22:41:48,105 root         DEBUG    EOWorkflow execution finished

Execution 8

Statistics
2022-05-12 22:21:52,333 eolearn.core.eoworkflow DEBUG    Computing LoadTask(*[], **{'eopatch_folder': '30PTU_1_1'})
2022-05-12 22:21:52,334 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:52,336 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,336 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:52,336 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:52,339 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:52,341 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:52,346 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,346 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,346 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,346 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:52,346 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:52,347 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,347 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:52,347 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,347 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:52,347 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_1_1/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:52,348 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:52,348 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,348 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:52,348 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:52,348 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:52,348 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:52,348 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,349 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:52,349 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:52,349 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_1_1%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222152Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:52,349 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222152Z
20220512/us-east-1/s3/aws4_request
b971bb2f5b2632de96da2a5cbbacbdbcc7042f961b36df372a6616934fa10276
2022-05-12 22:21:52,349 botocore.auth DEBUG    Signature:
93cd63c72143485e00ea1c74f48e15c8ce49f5149a1241022beb63a1ae58d4b7
2022-05-12 22:21:52,349 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:52,349 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:52,350 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:52,350 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:53,697 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:21:53,697 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'W6EV56VYM0YT3YCS', 'x-amz-id-2': 'xnS5vLAX21lY5j1gKYO7sRgO8jZs1HKclPlpCl7VsEae5XsnL6wbgWW+EjniOqXr3iP7LEkoZMo=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:21:53 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:53,697 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1W6EV56VYM0YT3YCSxnS5vLAX21lY5j1gKYO7sRgO8jZs1HKclPlpCl7VsEae5XsnL6wbgWW+EjniOqXr3iP7LEkoZMo='
2022-05-12 22:21:53,701 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:53,701 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:53,701 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:53,701 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:53,701 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,701 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:53,703 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:53,703 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,703 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:53,704 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:53,704 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:53,704 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,704 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:53,704 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:53,704 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_1_1%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222153Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:53,704 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222153Z
20220512/eu-central-1/s3/aws4_request
31ae65a998f3d8a03588e8cc7256a1e28d9454b8f631c2a72b7310a5405c7202
2022-05-12 22:21:53,704 botocore.auth DEBUG    Signature:
a9335a4bbc7f1511675c4dddc4ead821b43fe8d8930a34f07faf29c36fb0f975
2022-05-12 22:21:53,704 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:53,704 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:53,704 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:53,705 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:54,657 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,658 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'u/n5/ioDwBTzpBttJsEijMuBkBDQLCtUmdW2RNHDTOL3O4gUvNoOccGz4fzkW4TIKXrAUb1KsA4=', 'x-amz-request-id': 'XNTSW67RQDFGP58D', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,658 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_1_1/1000/urlfalseeopatches/30PTU_1_1/2022-05-12T11:07:25.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/bbox.pkl2022-05-12T11:07:44.000Z"f4f4c4487660f2147fbc3c06ce99ea68"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/timestamp.pkl2022-05-12T11:07:43.000Z"d20f57f9b0299badcdaec2f120421aa8"2089e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/data/eopatches/30PTU_1_1/mask/'
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,659 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,659 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:54,659 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,660 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,660 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_1_1/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,660 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,661 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,661 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,661 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,661 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,661 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,661 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,661 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_1_1%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,661 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
86c03c017327ca3b748c7e66bad16ee2afe8c1a46195de3f1dd38d331a3a8fc9
2022-05-12 22:21:54,661 botocore.auth DEBUG    Signature:
aac09170b44f8401853cb55e57049b2579cf38a59b41949452688f63c8c012a5
2022-05-12 22:21:54,661 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,661 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,662 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,751 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,753 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'K8mZ74L2UnX7OHgqkGYYyiuizXCUx/C6Qm3MF7Ff4oQqoH05qtTh3rx4AgprKC+jhOFwVFj4h9M=', 'x-amz-request-id': 'XNTPZBDSDF8NNRV6', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,753 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_1_1/data/1000/urlfalseeopatches/30PTU_1_1/data/2022-05-12T11:07:36.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/data/BANDS.npy2022-05-12T11:07:44.000Z"4665ae86d913ce4091293e967914b979-29"242000128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/data/CLP.npy2022-05-12T11:07:44.000Z"4a01d3a8abcabaca30f76b8a5ed19fff-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,754 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,754 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,754 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,754 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,754 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,754 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,754 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,754 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:21:54,754 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:21:54,754 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,754 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:21:54,754 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,755 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,755 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,755 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_1_1/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:54,755 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:21:54,755 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,755 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:21:54,755 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:21:54,755 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:21:54,755 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,755 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:21:54,755 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,755 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_1_1%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,755 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/eu-central-1/s3/aws4_request
f81b82fc45b8db7e692ead80f4d1d45c370a883002ed1304c529eee9c3e5a661
2022-05-12 22:21:54,755 botocore.auth DEBUG    Signature:
5bef1bb386d30f7fc693caed528de780c1aa210c6acd2424b55c78891aeccaca
2022-05-12 22:21:54,755 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:21:54,756 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,756 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,845 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:21:54,846 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '8xSNaqQgDQdVtjZUF0pc1QtW6gm64kR1ADGnkUWVzZ9vEiKS8fYKNTctjLkgRGZJDisED8n6MpQ=', 'x-amz-request-id': 'XNTN4C1K9MDA2V08', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:21:54,846 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_1_1/mask/1000/urlfalseeopatches/30PTU_1_1/mask/2022-05-12T11:07:32.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/mask/CLM.npy2022-05-12T11:07:44.000Z"78cf4f75cffa7122c15f66470abde744-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/mask/IS_DATA.npy2022-05-12T11:07:44.000Z"16d79d874d644706e316e5866084ae78-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:21:54,847 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:21:54,847 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:54,847 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:21:54,847 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:21:54,848 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,848 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,853 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,856 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,860 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,861 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,861 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,864 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,861 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,863 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,864 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,867 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,867 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,865 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,867 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:21:54,867 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,870 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,866 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,874 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,874 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,876 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,877 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,870 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,878 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,869 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,861 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,872 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,883 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,885 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,883 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,868 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,885 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,889 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,890 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,890 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,891 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,892 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,892 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,892 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:54,892 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:54,881 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:21:54,893 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:21:54,894 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,895 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,896 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,889 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,888 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:21:54,899 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:21:54,900 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,892 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,897 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,901 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,888 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,886 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,901 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,901 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,901 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,903 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,904 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,904 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,904 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:54,904 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:54,904 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,904 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,905 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
8b1211e7dbb020f465b5d85b643a8f54f9e4a19caa816c8633b5a006b4147887
2022-05-12 22:21:54,905 botocore.auth DEBUG    Signature:
aaf4e9688843ef5659463389fbbaa2da48cf0e974ed4f3ad6cbc54c93ed6025d
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,905 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,905 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,901 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask/CLM.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,898 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:54,901 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,902 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,905 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,908 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,909 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
a6a49aa7a321c0df32f41b7af6c58154afb63541634a5dae1c33d4cf91e17b3a
2022-05-12 22:21:54,909 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:21:54,909 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,909 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,909 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,909 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,909 botocore.auth DEBUG    Signature:
498493167691fc366a75ca0f66b40edba3b1805a0b60c5b68066fd1c04f829b4
2022-05-12 22:21:54,909 s3transfer.tasks DEBUG    DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,910 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,911 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,911 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,910 s3transfer.tasks DEBUG    Executing task DownloadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': , 'io_executor': }
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,913 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,914 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,912 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,914 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:21:54,914 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,914 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,914 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/bbox.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,915 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:21:54,916 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,916 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,916 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/timestamp.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,916 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:54,917 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,917 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,918 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,918 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,919 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,920 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,920 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:54,921 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,921 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/bbox.pkl
2022-05-12 22:21:54,921 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,921 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:21:54,921 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:54,921 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/bbox.pkl
2022-05-12 22:21:54,921 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/timestamp.pkl
2022-05-12 22:21:54,921 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:54,921 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:54,921 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,921 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/timestamp.pkl
2022-05-12 22:21:54,921 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:54,922 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,922 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/bbox.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,922 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,922 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:54,922 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data/CLP.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,922 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
7fc46943f9f33885f1d4e21aa5d68a940d5d27c0fdc0ad27a151064e5120f2ee
2022-05-12 22:21:54,922 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/timestamp.pkl

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,922 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask/IS_DATA.npy

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222154Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:54,922 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
595c3c42ac75a5a70470ca1489b2242f9bdc191f2c9d344b795d39f4c7c2a493
2022-05-12 22:21:54,922 botocore.auth DEBUG    Signature:
55123473b1a9587987edac308ad4117d7690ab31b50a63fcc23390246e3d7122
2022-05-12 22:21:54,923 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
9d2a8ba0643822d40c25f59d4717705d6f143accddb91e98140b2e6719a8774b
2022-05-12 22:21:54,923 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222154Z
20220512/us-east-1/s3/aws4_request
82926862a8aa5d7e5e9b95a4c63911a1c434cfb48b0045b66b451e587693ec45
2022-05-12 22:21:54,923 botocore.auth DEBUG    Signature:
1b8eff7ad2abb67e466918044e81459a66b9da84ec188e3adb85e46e9b3f2ee7
2022-05-12 22:21:54,923 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,923 botocore.auth DEBUG    Signature:
7b0b5ecde4e6a48023d3d2382077c63c10c95b2f067041b141f08bbbaf80ac6e
2022-05-12 22:21:54,923 botocore.auth DEBUG    Signature:
391fca2a9d67b9716ee62669aafae3ceff8963912a8343e924f64c1d85f87912
2022-05-12 22:21:54,923 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,923 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,923 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,923 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,923 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,923 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,923 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,924 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:54,924 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,924 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,924 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,924 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:54,925 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,925 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,926 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,926 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:54,926 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,926 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:54,926 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:21:55,592 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask/CLM.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,593 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KAJ71QY079ZT93', 'x-amz-id-2': 'ZyOSfo7m7KT3dy3xz2qFVNTamq6hWxhJEfmx2CGOYGhPzZ3whHx3qVrqB7ABD0NQrAOYBdO8DeI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,593 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,594 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,594 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,594 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,594 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,594 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,594 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,594 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,595 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,595 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,595 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,595 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,595 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,595 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,595 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,595 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,595 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,596 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,596 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,610 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/bbox.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,610 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K5MYCZK8057N3J', 'x-amz-id-2': 'C787zUAtxXOGkozWd9TgBBUXrjjtNSOeA/E3kBDJm5N+0Zx+T84mU2+bsBfznFRNy5DVrgV85FA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,610 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,612 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,613 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,613 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,613 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,613 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,613 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,613 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,613 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,614 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,614 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,614 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,614 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,614 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,614 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,614 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,614 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,614 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,614 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,615 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,615 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,615 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,615 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,615 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,615 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,615 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,615 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,616 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,616 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,618 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,618 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K2MDHVC2XXCGWR', 'x-amz-id-2': 'vqBne+9Fz5HA7WERGhAQKbzYhFjUStl2+r5okDqXI0KPuPGPmJbozr9r230MRespeONpef8YlRU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,618 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,620 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,620 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,621 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,621 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,622 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,622 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,622 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,622 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,622 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,622 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,622 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,622 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,622 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,622 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,622 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,623 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/timestamp.pkl HTTP/1.1" 400 0
2022-05-12 22:21:55,623 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6KAETEXJ565J51W', 'x-amz-id-2': 'amlW/hJbycit1OLrRYUkQ1v5FRgL94TTY0X7sG9xeGgtPNu7M+BrwETT4BCM5Hce81JIdXouyyI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,623 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,625 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,625 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,626 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,627 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,627 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,627 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,626 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask/IS_DATA.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,628 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K3Y6XFYK6X3T84', 'x-amz-id-2': 'SnortCzbCaY0E+I8ANhKfxTOXgIxkExix2qJfH2xg3Y/daABuF9hqz+wVTbGu9MNGIS97FUeHJc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,628 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,630 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,630 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,627 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,631 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,631 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,631 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,632 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,632 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,632 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,631 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,632 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,633 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,633 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,633 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,633 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,633 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,633 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,633 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,633 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,633 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,633 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:55,645 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data/CLP.npy HTTP/1.1" 400 0
2022-05-12 22:21:55,645 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'S6K6M2GN2AC7DVT2', 'x-amz-id-2': 'Shznfxh5J+HtIEBrhhHxIUQRPlHHXiM11jNn51PV+QNWIxuD6K1UEyapFq5r1I/+KHq8DAjXhNE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:54 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:55,646 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:55,648 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:55,648 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,649 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,649 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:21:55,650 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,650 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,650 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,650 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,650 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,650 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:55,650 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:21:55,650 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:21:55,650 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:55,651 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222155Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:55,651 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222155Z
20220512/us-east-1/s3/aws4_request
4037ab8950af8b713aed2e97894db535f1979b542906ea676685a275a9a52998
2022-05-12 22:21:55,651 botocore.auth DEBUG    Signature:
999c02a9765922182eefed611865436520110e45c781c27ea5b82b0a7939bcb7
2022-05-12 22:21:55,651 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,651 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:55,651 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:55,651 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:55,652 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:21:56,609 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,610 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JZVVWBBJWHZ46N', 'x-amz-id-2': 'SVxITjypTNdh1jo5IVD/Z9bUdrlVc/jT/hvdhF0xKDP8mHcpktzj85rngy5RtPNlMfJD0Mp0cHA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,610 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,611 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,611 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,611 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,611 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,611 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,611 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,611 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,612 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,612 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,612 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,612 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,612 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,612 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,612 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,612 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,613 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,613 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,613 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,613 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,613 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,613 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,636 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,637 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JMPC19A3HSHG9Y', 'x-amz-id-2': 'hxpPQqVAsJWLb2VJAjM8c+1GUlQwx3iRSyniiCrsV8DhxGcJ6kS0hPBVIbS68IUVzzgrPWZvY1s=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,637 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,637 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,637 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,637 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,638 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,638 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,638 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,638 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,638 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,638 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,638 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,638 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,638 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,639 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,639 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,639 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,647 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,648 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JXC9YSVP3RRMXD', 'x-amz-id-2': 'ccmb/ogCFs/bQ3f3j5uGcXlYDxBEysGQv3DCj1aoXj+hOeJ9fD7W6jScGIC1jSRhe6/YUDPRmHI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,648 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,648 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,648 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,648 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,648 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,648 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,648 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,648 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,648 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,648 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,648 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,648 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,648 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,649 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,649 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,649 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,649 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,649 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,649 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,649 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,649 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,649 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,649 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,652 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,653 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JWCJNK1NF3N0ZS', 'x-amz-id-2': 'gddEWt5xjF1E19RgXhrKNfdufrzkDyI3YLA6pgpC2oPfOVi85CMrJ0duqn6CABKtKs4XxhySeV8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:55 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,653 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,653 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,653 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,653 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,654 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,654 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,654 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,654 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,654 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,654 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,654 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,654 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,654 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,655 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,655 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,655 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,655 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,661 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,661 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JS2780KYEYW0V1', 'x-amz-id-2': 'xI7XhLWMngBLtjVuKQ2GhKemRFNCVk2FbBigZe385q5Fqf6KhrLGZqbOyUCkn1Xbg71bALV5OxA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,661 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,662 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,662 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,662 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,662 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,662 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,662 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,662 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,663 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,663 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,663 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,663 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:21:56,663 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,664 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,664 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,664 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,664 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:56,663 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'X1JR7KVRTAWZYP4P', 'x-amz-id-2': 'HprvXRI7zR55FDGhZzfXNF7Ai9iEpk4MjQpyoSDB8fUt/4i52aE6A/5KVIha04eIYTDQ6dEc+J8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:21:56 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:21:56,669 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,669 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,669 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:56,669 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,669 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,669 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:21:56,669 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:21:56,670 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:21:56,670 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:56,670 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222156Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:56,670 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222156Z
20220512/eu-central-1/s3/aws4_request
91e0a24d9f6a491396b5181406c576ff0dae882977e21959684af7026e060f3b
2022-05-12 22:21:56,670 botocore.auth DEBUG    Signature:
3e98f5d56a5e5c6efd2f76c9252bf049a90b8fbd6b7a30ecbb134783a8bffccb
2022-05-12 22:21:56,670 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,670 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:21:56,670 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:56,670 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:56,670 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,580 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,580 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1MM5GmKVRLAOr4N6sL3BnSiSCSt0r0sU1dTEUf/XC+i/FTWPuHriLsOAEn/TfsjSb9eN1mnSiXw=', 'x-amz-request-id': '4P7VDX0042Z3312A', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,581 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,581 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,581 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,581 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,581 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,581 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,582 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,582 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,582 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,582 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,582 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,582 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,582 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,582 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,583 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,583 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,583 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,583 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,583 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
1a929ab171ab2a86ee4dcd3de075113573b5fae554f592902797944907522e64
2022-05-12 22:21:57,583 botocore.auth DEBUG    Signature:
6ae8d7831ca73a1ece32f7f6bd76c8d5a0f42003667fec902f8a017c0639948a
2022-05-12 22:21:57,583 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,583 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,583 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,584 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,597 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,597 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'QeCazHLcIWdG0OBWnvkp3DlYQewK2Lr9uAouJCh+HSj0OGMal5vovqIyxGwlVyhDBAKdaPrrUvk=', 'x-amz-request-id': '4P7QQE9DXVCBPWPY', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,597 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,598 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,598 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,598 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,598 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,598 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,598 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,599 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,599 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,599 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,599 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,599 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,599 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,599 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
2575a663993f8f3d4477ea03a434a6e1f5c81abefe5b51709bacd47a2d9a9e03
2022-05-12 22:21:57,599 botocore.auth DEBUG    Signature:
43dd703f7e46f4a50a959d70d15cb308b538330f8aa59b1b0c85bfb0acf96611
2022-05-12 22:21:57,599 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,599 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,599 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,600 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,600 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,600 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'dZ6Ty7Cnw+2ZdZWjraCUR7bseonRX1sqpsFKUfmy+VQBQiS1fRufzSA6aO2BbRnW14OKa8VfFH8=', 'x-amz-request-id': '4P7KHP66Z81A15Q2', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,600 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,600 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,601 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,601 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,601 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,601 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/timestamp.pkl
2022-05-12 22:21:57,601 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,601 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,602 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/timestamp.pkl
2022-05-12 22:21:57,602 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/timestamp.pkl
2022-05-12 22:21:57,602 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,602 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,602 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
362c59ccf77184e437c1b62364ea4ec180462c8e19475105b2e8a3b5f6d438bb
2022-05-12 22:21:57,602 botocore.auth DEBUG    Signature:
7dedd395d62ea9189391132ae1adc543390fe79e6d215e59af51d4665509b97e
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,602 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,602 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,602 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,616 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,617 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'kk11C+tFlbsE+WNno0xTnVA5rTqSMZKNFk1w9CpEgAddTDUlKLi2R4gHekEV/rjva5AkoztZLNQ=', 'x-amz-request-id': '4P7KTEMXT6NY690K', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,617 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,617 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,617 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,617 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,617 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,617 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/bbox.pkl
2022-05-12 22:21:57,618 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,618 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/bbox.pkl
2022-05-12 22:21:57,618 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/bbox.pkl
2022-05-12 22:21:57,618 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,618 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,618 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
881d6ce4e17774a576fd6e1797265f7ccf51e323f321dc79bf9583f5e64a1391
2022-05-12 22:21:57,618 botocore.auth DEBUG    Signature:
22b5e8ab13a82e65c2d3333d981b6b5279982ba1d337fa4a91cb8dc1c09b12c0
2022-05-12 22:21:57,618 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,619 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,619 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,619 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,619 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,620 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '/2DPwpSGNl6uLcau3EUAduEJo7iFMROa2GFf89PfD92FgMZPHcwqcD8fUtc2yc5QJowREA5Ljok=', 'x-amz-request-id': '4P7M34FS6BGSDCED', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,620 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,620 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,620 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,620 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,620 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,620 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,620 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,621 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,621 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,621 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,621 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,621 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
e8105bff143414d936dc5fa72ae2f14c0360e7c8874f17aff3a7a0c2248062db
2022-05-12 22:21:57,621 botocore.auth DEBUG    Signature:
48356f56bb2c32f82dfdbe4fbf8402c81035a6d26be686cff0c3e5ccf193dd56
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,621 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,621 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,622 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,622 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:21:57,622 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'DPpcLvrsHiS1XQuo3As4O40ntNj9mieQSSezag7jRXaf0SRV77XnkUuY3VHZKI708I2K1yEJIgo=', 'x-amz-request-id': '4P7GK03WZWENMSY8', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:21:57,622 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,622 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:21:57,623 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,623 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:21:57,623 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,623 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:21:57,623 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,623 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:21:57,623 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,623 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:21:57,624 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,624 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,624 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,624 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,624 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
7c27ca2dbb2122f4dc416a2b6a35e38023b13de13ebf3345e6d5b86c594c8792
2022-05-12 22:21:57,624 botocore.auth DEBUG    Signature:
028c6f6ab3a9beddfd9fa7f8918b1126ec2dede1c1faaf167798b256f84348bc
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,624 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:21:57,624 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,625 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,665 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,665 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '4Zv5hmZVQB3pZdljj7j4DjOGlka8025ceH5vlVqN6kYRMvn4ngCe8rGFa+QOglRZyOrHvSE/4vc=', 'x-amz-request-id': '4P7GX5GH3V4TZPRE', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '242000128'}
2022-05-12 22:21:57,665 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,665 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,665 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,665 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,666 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,666 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,666 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,666 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,666 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,666 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,666 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,666 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,666 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,667 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,667 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,667 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,667 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,667 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,667 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,668 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,668 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,668 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,668 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) about to wait for the following futures []
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,669 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,669 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) done waiting for dependent futures
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,669 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) about to wait for the following futures []
2022-05-12 22:21:57,669 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,669 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,669 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=25165824-33554431'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=25165824-33554431'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,670 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,670 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) done waiting for dependent futures
2022-05-12 22:21:57,670 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,670 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=33554432-41943039'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=33554432-41943039'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 33554432, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,670 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) about to wait for the following futures []
2022-05-12 22:21:57,670 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,670 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,671 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,671 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) done waiting for dependent futures
2022-05-12 22:21:57,671 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,671 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,671 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,671 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,671 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,671 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,671 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=41943040-50331647'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=41943040-50331647'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 41943040, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,671 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) about to wait for the following futures []
2022-05-12 22:21:57,671 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,672 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,672 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) done waiting for dependent futures
2022-05-12 22:21:57,672 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,673 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,673 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=50331648-58720255'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=50331648-58720255'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 50331648, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,673 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,673 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) about to wait for the following futures []
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,673 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,673 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,674 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) done waiting for dependent futures
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,674 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,674 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,675 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=58720256-67108863'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=58720256-67108863'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 58720256, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,675 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,675 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,676 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) about to wait for the following futures []
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,676 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,675 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,676 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,677 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) done waiting for dependent futures
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,677 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,677 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,677 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,678 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=67108864-75497471'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=67108864-75497471'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 67108864, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,678 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,678 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) about to wait for the following futures []
2022-05-12 22:21:57,678 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,678 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,678 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,678 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,678 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,678 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,678 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,678 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-33554431', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,679 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) done waiting for dependent futures
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,679 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,680 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,680 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=75497472-83886079'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=75497472-83886079'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 75497472, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,680 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=33554432-41943039', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,680 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,680 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,681 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=41943040-50331647', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,681 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,682 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
9eb3ef62fd8188085a7cd8538fdd4d8caf6799764649fa40860cd8b48ddd74c5
2022-05-12 22:21:57,683 botocore.auth DEBUG    Signature:
d45e0a0dd6d4a0b10b60e00399092effc84a08c85122b79648d52d7dae26c604
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,682 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,682 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,683 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,683 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,683 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,684 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,684 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
c49fbb20198484e70952e1d2fa5b8642cff938eda07f2523df2d52597bf3ed72
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,684 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,684 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,684 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,683 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,685 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=50331648-58720255', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,685 botocore.auth DEBUG    Signature:
12ff371d8f31dad82d9f907d9c06beb5bf50b08745b547a20f305f11176b8067
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,685 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,685 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,685 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,685 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/timestamp.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,686 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,686 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,686 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=58720256-67108863', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,686 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
bb51d0afd9da54432036f7f8eb53a2a679aa468121309a2b564c24fcb8164370
2022-05-12 22:21:57,686 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,687 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'AlCxo9CzLX3bZRGJYfQ8FYW+8my13zSbAiDfsw4TqPpYuWnmgBQaUWB4lSlLOQD/Qu8L+SYKo1o=', 'x-amz-request-id': '4P7JWD2XRYNJPGAP', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:43 GMT', 'ETag': '"d20f57f9b0299badcdaec2f120421aa8"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '2089'}
2022-05-12 22:21:57,687 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,687 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,689 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,689 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,689 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=33554432-41943039
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,688 botocore.auth DEBUG    Signature:
87302824a967e4ccf234527984d19cf7e580268371564dbdc4e9f26358e3856d
2022-05-12 22:21:57,688 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,689 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,689 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=67108864-75497471', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,688 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,689 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data/CLP.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,689 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
d9ab522c054989747981bdf59511c6ecc56a9a1d90f68c9538c4b883e4f71e4d
2022-05-12 22:21:57,691 botocore.auth DEBUG    Signature:
1631806001a2b44792411b530caf6b7478d1a336522954b00739990c9eff9f4c
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,689 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-33554431
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,688 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,690 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,690 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,692 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,690 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '71sJUqwE+ScH51rc+5nCJJrI2CtMnuiWqWZTUB6Ivh2/RqQPxYoaJSYCiQj6vS78WQBNeBYU69o=', 'x-amz-request-id': '4P7VZ371VGYBY7V4', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4a01d3a8abcabaca30f76b8a5ed19fff-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,692 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,692 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,691 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
61d16b89ec0fd783b6b42d318363e5134feb03812722bfdda18d09367d43fd2c
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,690 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,692 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,693 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,690 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,692 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,692 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,689 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=75497472-83886079', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,692 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,691 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,695 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,693 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,694 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,693 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,695 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,694 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,696 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,696 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,696 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,694 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,697 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,693 botocore.auth DEBUG    Signature:
4c8caa8102717b39eba3a4688653ff42cc4f10ae8d5452c9d65f428c6410c89d
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,697 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,697 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,695 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,698 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,697 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,698 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,698 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,698 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,698 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,696 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,694 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,698 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/timestamp.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,695 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=41943040-50331647
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,699 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
8646d00f3f29e4500de4a7ffd3aa77e8a5d5ec25c3eea5c576a4302eaa4ce2c5
2022-05-12 22:21:57,699 botocore.auth DEBUG    Signature:
c7fc478c35042a175a8e4defe207bfe98f7bfb525dd47eec4c7ef397288cce72
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,699 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,699 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,700 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,699 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,698 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,700 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,700 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=67108864-75497471
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,700 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
bdb6ebdc8a551c44ade07c138a6dd75d4cdfd798972b079fc0e06e75e22b2c73
2022-05-12 22:21:57,700 botocore.auth DEBUG    Signature:
771599c679bc8566a0e2cd43cdbd8deed85fac22425b73d6783d6a4a611bdfff
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,700 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,701 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,700 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,701 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=75497472-83886079
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,696 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,698 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,697 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,698 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:21:57,702 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,702 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=50331648-58720255
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,702 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
55019468ca944e3caffeb61ec2f047117b2ec0a463f0a334a1d277a1582924cd
2022-05-12 22:21:57,701 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,701 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
91065afb78bec6bcf0fcda14909f31ed4096a5f27af371f58f9a98e9e9d63b50
2022-05-12 22:21:57,702 botocore.auth DEBUG    Signature:
ba81804629d58c908ec903d4d18e8405d02e4dc9cef1c663d8215f71436f29d3
2022-05-12 22:21:57,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,701 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,703 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,703 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,703 urllib3.connectionpool DEBUG    Starting new HTTPS connection (7): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,702 botocore.auth DEBUG    Signature:
0f0736163865ddb63218d715a910baf2fd33846ca49f97302b898b4e0eceef43
2022-05-12 22:21:57,704 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,704 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,704 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,704 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,704 urllib3.connectionpool DEBUG    Starting new HTTPS connection (8): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,702 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,705 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,705 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,705 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,706 urllib3.connectionpool DEBUG    Starting new HTTPS connection (9): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,703 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,706 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,706 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,706 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,698 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=58720256-67108863
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,709 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
e993d00693ad0efeb680e27b2508f03f675e2976fcb0025935c3dea13789e721
2022-05-12 22:21:57,700 urllib3.connectionpool DEBUG    Starting new HTTPS connection (5): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,705 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/bbox.pkl HTTP/1.1" 200 0
2022-05-12 22:21:57,708 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,708 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask/CLM.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,708 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,708 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,709 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask/IS_DATA.npy HTTP/1.1" 200 0
2022-05-12 22:21:57,711 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'v8Eh7e8AEAQrTqrhm4S700WTlyTkCN+i8w0lqFXkgYP9qGhO88efi1Z3U3C7pbOpIvPHLzSrKVU=', 'x-amz-request-id': '4P7JW2CAMBN96JGB', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"16d79d874d644706e316e5866084ae78-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,711 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,710 botocore.auth DEBUG    Signature:
a0bd6270c8611efa971c4f4f70c6951447792362bc8dee4d857be60a9de3ac28
2022-05-12 22:21:57,710 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/timestamp.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,710 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,710 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,711 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'DtzYqdh61CWG3i5x/06jL/JZ8m9JRhwF6YXJ4/Nn1nIjmsR8i5/nx+Tadm15kfisGUwiTvfM5Ug=', 'x-amz-request-id': '4P7RPGCPK6Z1P23S', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"78cf4f75cffa7122c15f66470abde744-4"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '30250128'}
2022-05-12 22:21:57,714 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,711 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,702 urllib3.connectionpool DEBUG    Starting new HTTPS connection (6): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,710 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'fjeH1Lp22UyN9ZVKGvxSjE+J33o8FdUW4i2aa2UOGqrAqa3Ssot0xG14ApVzRTxlOaNTCRE1qcE=', 'x-amz-request-id': '4P7K0X1X123QA04E', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"f4f4c4487660f2147fbc3c06ce99ea68"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,715 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:21:57,713 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/timestamp.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,714 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,716 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,716 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,716 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,711 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,717 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,717 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,717 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,717 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,717 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,717 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,718 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,718 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,718 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,715 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,718 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,718 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,718 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,718 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,716 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:21:57,719 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,719 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:21:57,714 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=37>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,720 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/timestamp.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/timestamp.pkl', 'fileobj': <_io.BufferedRandom name=41>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,712 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,719 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,716 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,721 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,722 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,722 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,722 s3transfer.futures DEBUG    Submitting task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/bbox.pkl', 'extra_args': {}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,722 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,723 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,721 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,727 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,727 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=37>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,721 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,723 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,729 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,722 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) about to wait for the following futures []
2022-05-12 22:21:57,729 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,725 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,722 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,729 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=37>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,723 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,730 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,731 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=39>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,728 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) done waiting for dependent futures
2022-05-12 22:21:57,728 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,728 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,724 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/bbox.pkl', 'extra_args': {}}) about to wait for the following futures []
2022-05-12 22:21:57,733 s3transfer.tasks DEBUG    ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/bbox.pkl', 'extra_args': {}}) done waiting for dependent futures
2022-05-12 22:21:57,729 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,724 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,727 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,722 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,735 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,733 s3transfer.tasks DEBUG    Executing task ImmediatelyWriteIOGetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/bbox.pkl', 'extra_args': {}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/bbox.pkl', 'fileobj': <_io.BufferedRandom name=40>, 'extra_args': {}, 'callbacks': [], 'max_attempts': 5, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,727 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,734 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,725 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) about to wait for the following futures []
2022-05-12 22:21:57,731 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,735 urllib3.connectionpool DEBUG    Starting new HTTPS connection (10): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,731 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=39>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,729 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=0-8388607'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=38>, 'extra_args': {'Range': 'bytes=0-8388607'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 0, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,729 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,736 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) about to wait for the following futures []
2022-05-12 22:21:57,736 s3transfer.futures DEBUG    Submitting task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) to executor  for transfer request: 0.
2022-05-12 22:21:57,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:57,737 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) done waiting for dependent futures
2022-05-12 22:21:57,739 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=8388608-16777215'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=38>, 'extra_args': {'Range': 'bytes=8388608-16777215'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 8388608, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,740 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,740 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,739 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,737 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,739 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,731 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,738 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,741 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/CLP.npy', 'fileobj': <_io.BufferedRandom name=37>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,736 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,743 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,742 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,745 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,748 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,748 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,748 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
87ed4d2e44cce4896874eaff4496e6e7f2810c80f6bc1978b7cb30a31f17f75d
2022-05-12 22:21:57,748 botocore.auth DEBUG    Signature:
4d763431b5f42ca9c70cedfb4f06da730aef05d0c7a5089e66c38d579e7bbe1e
2022-05-12 22:21:57,748 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,734 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) done waiting for dependent futures
2022-05-12 22:21:57,749 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=39>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,741 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=16777216-25165823'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=38>, 'extra_args': {'Range': 'bytes=16777216-25165823'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 16777216, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,746 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,750 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,749 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/bbox.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/bbox.pkl
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,747 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,745 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,751 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/CLM.npy', 'fileobj': <_io.BufferedRandom name=38>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,749 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,753 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,753 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,753 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,750 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,753 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,733 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) about to wait for the following futures []
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,749 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,754 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,746 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,755 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,755 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,755 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=0-8388607', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,756 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,756 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,756 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,752 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/bbox.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/bbox.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,753 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
885795daa20b90900978978735255ee39a75c05e3607e96f39b88bf7d0de407c
2022-05-12 22:21:57,757 botocore.auth DEBUG    Signature:
700b8a52177c0c95c4d9182f3179075839d74b0813a4ac61323e453ed53e9af6
2022-05-12 22:21:57,751 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,750 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,754 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,747 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/timestamp.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/timestamp.pkl
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,754 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) done waiting for dependent futures
2022-05-12 22:21:57,759 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'extra_args': {'Range': 'bytes=25165824-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask/IS_DATA.npy', 'fileobj': <_io.BufferedRandom name=39>, 'extra_args': {'Range': 'bytes=25165824-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 25165824, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,759 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,757 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,756 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,759 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=8388608-16777215', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,752 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,758 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,761 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,755 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,760 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=0-8388607
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,760 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
c07fba92284f581a0d9762dbeb2e7fc936bc3caac75db1984fe9e8c66025803b
2022-05-12 22:21:57,761 botocore.auth DEBUG    Signature:
9cb6dd50d0fbc6a7729708c5effe02325130e01d046939f4509f16423ceb45d5
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,758 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,758 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,762 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,762 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
b27f8c546e071a25d80f565eb95fc8b822fd0d929bbcaeb2bdcc1d9f28943d9f
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,759 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,762 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,763 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,763 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,761 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.auth DEBUG    Signature:
88ec38d3d4a9950e9ca6ac20a9fa5f418996073e0ebd05c18020b88f5eda9900
2022-05-12 22:21:57,761 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,757 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,761 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
f1843547f395b7bd63fdf2371f78fa436fc95b5b06bb00e92964687780047907
2022-05-12 22:21:57,763 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,760 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,764 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,765 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,763 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=8388608-16777215
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,764 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/timestamp.pkl', 'query_string': {}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/timestamp.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,766 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,766 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,764 botocore.auth DEBUG    Signature:
961fb08a6e1d7c28e811c4627d7371c88d411c538bbefa6ac39d54791094bf24
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/bbox.pkl
2022-05-12 22:21:57,767 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/bbox.pkl
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,765 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,768 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,769 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,769 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,769 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,769 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,769 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
239085e56306bf7d2622b2772958bf69caaafa3c25a90c5a761703129465ebec
2022-05-12 22:21:57,769 botocore.auth DEBUG    Signature:
ac2316aaa5243e461a8339545a1fe51bf40ea07c48bbc79190ebcb1e2f70bef5
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,769 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,769 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,769 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,768 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,770 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,770 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,767 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,770 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,771 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,771 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,771 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,771 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,771 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
25a1e2cd73a57e93c84d0632a68cc94dd94d43b7d12af80cf10bcfe15eaccfa1
2022-05-12 22:21:57,771 botocore.auth DEBUG    Signature:
28242998b663dbf73b878fac6dcd7144344cec0efae58ef4a2464545888b417e
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,771 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,771 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,767 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,772 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,772 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,764 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,773 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,773 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,773 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,773 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
11b4c531c2f583a8cf32a9126687754d57cdb798932533934b1ed58252e06acc
2022-05-12 22:21:57,773 botocore.auth DEBUG    Signature:
f7cf65a9e953240a489bf0984b514392f63e7bb9e4a711dc81f2d0d985283226
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,773 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,772 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,767 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,774 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/bbox.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,765 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
3b16fe882cdf187bb4e928a32b403a8555c2ceffae4c96eaf2c7387e814c1da0
2022-05-12 22:21:57,774 botocore.auth DEBUG    Signature:
36ac41a4bd293db2201b8fe0226753aea0492cd9a95a8de80a40b75150ee3163
2022-05-12 22:21:57,768 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/timestamp.pkl
2022-05-12 22:21:57,774 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/timestamp.pkl
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,773 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,775 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,774 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
a50ffb03b7780fd4ebf60cb1126bb19d6f9e98392e02e27f2e39d613b0f11bd7
2022-05-12 22:21:57,775 botocore.auth DEBUG    Signature:
ace358987db92f56c1ac09b559d9b1f78a2b7e57b7064a6840aaa7973151511d
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,775 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,775 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,777 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,777 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,777 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/CLP.npy
2022-05-12 22:21:57,778 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,764 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,765 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=16777216-25165823', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:21:57,774 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,778 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/CLP.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,778 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
16e879755eaa2eb3aa3db2bfc15413ecf751aa8b4a02e5cc8f2a556ace5f120a
2022-05-12 22:21:57,778 botocore.auth DEBUG    Signature:
e6bf15ed81e22ec5ed5761dfa9fe27593602df7452188376a9762e4305f0fcc8
2022-05-12 22:21:57,762 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,778 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,778 urllib3.connectionpool DEBUG    Starting new HTTPS connection (2): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,775 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,778 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/timestamp.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,779 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
0cd2ad215ec5e1242bcc356cd919e2bf0ec7b2b62e09bab38d1a6380654ec79a
2022-05-12 22:21:57,779 botocore.auth DEBUG    Signature:
cc4dbcba5e3d6cec80b3b6b8a08b53b2556cd06e01d9a1adad905d0b35b9b7c5
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,779 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,779 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,774 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,780 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,780 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,780 urllib3.connectionpool DEBUG    Starting new HTTPS connection (3): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,776 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,778 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask/CLM.npy
2022-05-12 22:21:57,781 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,781 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/mask/CLM.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,781 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
ca8bd60933eac757ba4b7d26af9489390cdccadeb614e789b4eaea55d9d59485
2022-05-12 22:21:57,781 botocore.auth DEBUG    Signature:
7d872ff60f83dcb9ddf3b5f2acb60dba60d6c6ecd9c9984097413a40ea7f9b6a
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,781 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,781 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,782 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,782 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:21:57,782 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:21:57,782 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,782 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask/IS_DATA.npy
2022-05-12 22:21:57,783 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:21:57,783 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/mask/IS_DATA.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=16777216-25165823
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222157Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:21:57,783 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222157Z
20220512/eu-central-1/s3/aws4_request
a23144d29eaaaeb623348f39d2090f1998f1662217894a711448bf00ff53c578
2022-05-12 22:21:57,783 botocore.auth DEBUG    Signature:
52c0704a068d84ae46f4630d23b4ad050027c97b2a4523d1ded79710e58487d6
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,783 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,783 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,778 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,783 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:21:57,784 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:21:57,784 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:21:57,784 urllib3.connectionpool DEBUG    Starting new HTTPS connection (4): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:21:57,884 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,885 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'BexZ2tp2TFnL1c3MXnvXjfZoQ3l3mr/pbUpGEHZLvOul0x3BMtEQfkrHIbSth4MF6e35tW578UI=', 'x-amz-request-id': '4P7WNT9CS6GG0JAY', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,885 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,886 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,886 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,886 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,888 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/timestamp.pkl HTTP/1.1" 200 2089
2022-05-12 22:21:57,888 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'I0aVeIEumDHEdCv1jx9L746Ynw743KljOzRWB1gx1j63jrIwjVeuSuwBSNmhda8rNVBaRtb1PqQ=', 'x-amz-request-id': '4P7JPNY3HMYF93FR', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:43 GMT', 'ETag': '"d20f57f9b0299badcdaec2f120421aa8"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '2089'}
2022-05-12 22:21:57,888 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,890 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,890 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,890 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,891 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=41>, 'offset': 0}
2022-05-12 22:21:57,892 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,892 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,892 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,909 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/bbox.pkl HTTP/1.1" 200 184
2022-05-12 22:21:57,909 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+1pR5roE9AvYC1jr+cHkygiw2I4fEuXLn5xGApVX0DAU6tP27e4Mtqun1YcqW2+lU7MfCcE+EwM=', 'x-amz-request-id': '4P7HTMBSDWGG59SG', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"f4f4c4487660f2147fbc3c06ce99ea68"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '184'}
2022-05-12 22:21:57,909 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,910 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,910 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,910 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:21:57,911 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:21:57,911 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=40>, 'offset': 0}
2022-05-12 22:21:57,911 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:21:57,911 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:21:57,911 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:21:57,911 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:21:57,919 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,919 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'v1zTNrDoJSdJG4UBiVNrkqKgItN2tVFBOidCeP2ixXeqZSCXyfYFVmcTzcEJbr0oVV0ZYUgo9Hk=', 'x-amz-request-id': '4P7P8APVB2DYR2FJ', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4a01d3a8abcabaca30f76b8a5ed19fff-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,919 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,920 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,920 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,920 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,955 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/mask/IS_DATA.npy HTTP/1.1" 206 5084304
2022-05-12 22:21:57,955 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Ia/LcMeS6oKfVKpSUGl0S62+YuTAAXtw6TPh6rFu/nLSnYBfNuzZ5EoM6IBNAdI2ufVQnsojMG0=', 'x-amz-request-id': '4P7PXWXBZA5AT1RE', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"16d79d874d644706e316e5866084ae78-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:21:57,956 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,956 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,956 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,957 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:57,986 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:21:57,986 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'XHRa23hZqumkNlMqh+ho6B91Jua9uGEI+CqZbVwtiRNkPgjBRvgFVw2DZWN4ZZrpUfLJsuhkL/0=', 'x-amz-request-id': '4P7HA6C3909C11FM', 'Date': 'Thu, 12 May 2022 22:21:58 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"78cf4f75cffa7122c15f66470abde744-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:21:57,986 botocore.parsers DEBUG    Response body:

2022-05-12 22:21:57,987 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:21:57,987 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:21:57,987 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:21:59,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:21:59,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:21:59,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:21:59,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:21:59,993 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 8388608}
2022-05-12 22:21:59,993 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:02,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:02,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:02,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:02,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:02,157 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 8650752}
2022-05-12 22:22:02,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:03,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:03,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:03,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:03,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:03,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 0}
2022-05-12 22:22:03,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:04,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:04,116 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:04,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:04,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:04,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 0}
2022-05-12 22:22:04,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:06,143 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:06,143 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:06,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:06,144 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:06,144 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 262144}
2022-05-12 22:22:06,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,170 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:07,170 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:07,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:07,171 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 8912896}
2022-05-12 22:22:07,171 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:07,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:07,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:07,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:07,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:07,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 524288}
2022-05-12 22:22:07,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,449 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:08,449 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:08,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:08,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:08,456 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 262144}
2022-05-12 22:22:08,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:08,795 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,796 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Zi9UyVa75DvaosVLTdiNri/QFClN81hCeKfOP81EtH1ykqQlAn+s56Zf+GNYgPQesWIVK5BYRUU=', 'x-amz-request-id': '8ZJH61YDEKFD0FVG', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 58720256-67108863/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,796 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,797 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,797 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,797 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,919 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,919 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'VaqUYFWEhIP/3xO3rYp3+qdb+zR6alXVEgPQ6ZwwxEYRcevnXbfs7UJ7XMHYU0nbq9XxYF/AAbU=', 'x-amz-request-id': '8ZJMB35N2XJ3WRHX', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 75497472-83886079/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,919 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,919 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,919 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,919 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,927 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,927 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'tPbzu8Uy38RTB2QNfMnnbifuQw9foEr1JOkrhgy9Lzfu1rW/Y3EuTeIDSO0M3Kex+K8ured0H7c=', 'x-amz-request-id': '8ZJK42BP4XR4WNGT', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"78cf4f75cffa7122c15f66470abde744-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,927 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,927 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,927 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,927 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:08,971 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:08,971 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'B44cpAugGjYysv0RYY1V0WdSJpIIFR7um6DADOp3COK/6iKLnRkkUZ3mM21edUX2e3s3VOkpmNA=', 'x-amz-request-id': '8ZJSRJG77WQ36NP5', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:08,971 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:08,972 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:08,973 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:08,973 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,013 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,013 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'SS/h2LIEwJ4DIIXu4wyPi40Pg0/LL/bMr869368QNW1ENZrrSBxu2dPwCELJXgYUwT/4u5DALWc=', 'x-amz-request-id': '8ZJNCYWAD4ZBSC20', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"16d79d874d644706e316e5866084ae78-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,013 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,014 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,014 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,014 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,206 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,206 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'bL87kSrFrDUO/92PskRx65CVp4aqsLkZSK6NHfFf9P3Gplc1owpmuDMDxzOwOEjzzoCZszEJy8s=', 'x-amz-request-id': 'MCAN53XN4KYNGXWB', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-33554431/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,206 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,207 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,207 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,207 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,233 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,233 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'bjTut7odF9uAiQUkLuD/Edi5G8uGQS2VYPhL19sh506+tF1W3MejJrk4PZi4ktgHk43pfE9Ndjo=', 'x-amz-request-id': 'MCAT5FPTCWR0286Z', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"16d79d874d644706e316e5866084ae78-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,233 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,234 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,234 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,234 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,259 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,260 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'BNbgL8MZeP4dDccguF8PC++E+QJc9ZfK3VEuu7M7rda6A+KDZwP/bc45mgYHo8ghnB/CN4awzBI=', 'x-amz-request-id': 'MCAJXA6Y4AR7B9J1', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4a01d3a8abcabaca30f76b8a5ed19fff-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,260 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,261 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,261 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,261 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,266 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/CLP.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,266 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '//3DKdcP1AmcXOY+DiNs9TjCAegX7ZX7YpiTXIahMZmyQCfATjt+4MgD2ThiD4vRAxuTKNYSG1c=', 'x-amz-request-id': 'MCAJZVYCQ6NH25CA', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4a01d3a8abcabaca30f76b8a5ed19fff-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 8388608-16777215/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,266 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,267 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,267 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,267 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,267 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/mask/IS_DATA.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,267 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Q/Scqp+VDHAk4jXkELlEX0fqXZ3OStUkRg7DNnDLjVfZnXHS0gIzfGBQ89EM7kUepy4sztItWO8=', 'x-amz-request-id': 'MCAGE5TD8CEPEJ1Z', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"16d79d874d644706e316e5866084ae78-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,268 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,268 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,268 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,268 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,286 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,286 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '7aCwYlW31tO12k91tbizR6WyJq2pHDsTAt5z+iqgi2my4iBxTsiTJBgMvqNgScBFvCkQsKKuihA=', 'x-amz-request-id': 'MCAZJ76XSR0AQAZK', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 50331648-58720255/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,286 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,286 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,286 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,286 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,310 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/CLP.npy HTTP/1.1" 206 5084304
2022-05-12 22:22:09,311 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'IGLFI97HEZ+8N+rrEM30Q2DCP1kepuIxTaxRvRsVlp2nq0ZgqMc0Fp0FN4XjAwgpniMaqlmPHYc=', 'x-amz-request-id': 'MCAV4FM40CJSF8HS', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4a01d3a8abcabaca30f76b8a5ed19fff-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:22:09,311 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,311 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,312 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,312 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,366 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,366 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '37RaaVP7jKOw7NbN8S55C+36cNETGPtVCZx2Q0CanTD/zz1Av8OawYMv/bzs4Xe7TWfHW6l7U2k=', 'x-amz-request-id': 'MCAZ7W67MEGJYZ2G', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 33554432-41943039/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,366 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,367 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,367 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,367 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,389 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,389 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'VcQflRnoV3EVkzeMAuQoIZW4a7D17oQM+aUKbIWkdyU1jVPIrQKv/FUJ3M8f3WynoGz5jn9UOVo=', 'x-amz-request-id': 'MCANWRT18CTHPGWG', 'Date': 'Thu, 12 May 2022 22:22:09 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 16777216-25165823/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,389 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,390 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,390 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,390 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,505 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:09,505 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'xIPr4USwnC6d+Lz91znVIO+YXt4kTHwbgnRt47b2ZJmrpDIEwfd4bga96DzCeezS/Fa2sGiLJZY=', 'x-amz-request-id': 'MCAZHZ4KZ3S1XCY7', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 67108864-75497471/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:09,505 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,505 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,505 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,505 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:09,729 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/mask/CLM.npy HTTP/1.1" 206 5084304
2022-05-12 22:22:09,730 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '0pqqWlYn8A/gr4R/z858SMeY54/fabiAgHaN/l6BDtcry1eDADum+xoifMVXZ2Yr+GjmIYejipg=', 'x-amz-request-id': 'MCAVEZVFDVYSD6E7', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"78cf4f75cffa7122c15f66470abde744-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-30250127/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '5084304'}
2022-05-12 22:22:09,730 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:09,730 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:09,731 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:09,731 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:10,887 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/mask/CLM.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:10,887 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1K3sTgdUKgROhhTawY9DpCnCwMJsvtVoQ0Igwu+aQfZRLXfbgogFmgdrlDPQgLjpgrLfBuv5Z9g=', 'x-amz-request-id': 'MCAJG6YZBMZEBQ64', 'Date': 'Thu, 12 May 2022 22:22:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"78cf4f75cffa7122c15f66470abde744-4"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 0-8388607/30250128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:10,887 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:10,888 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:10,888 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:10,888 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:10,936 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:22:10,936 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'm2AOFL6dk2RU4j6EYaS7jt3Q5M73dsAO8fG+vZclu/pWIsUEeuOh0N3jYVMCk5aX3HvRrZuhiK4=', 'x-amz-request-id': 'YV0W4QCN0XASGXA5', 'Date': 'Thu, 12 May 2022 22:22:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 41943040-50331647/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:22:10,936 botocore.parsers DEBUG    Response body:

2022-05-12 22:22:10,937 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:22:10,937 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:22:10,937 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:22:17,446 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58720256}) to executor  for transfer request: 0.
2022-05-12 22:22:17,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:17,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) about to wait for the following futures []
2022-05-12 22:22:17,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58720256}) done waiting for dependent futures
2022-05-12 22:22:17,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58720256}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 58720256}
2022-05-12 22:22:17,446 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:20,112 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:20,113 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:20,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:20,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:20,113 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 25165824}
2022-05-12 22:22:20,114 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:20,958 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:22:20,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:20,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:22:20,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:22:20,960 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 786432}
2022-05-12 22:22:20,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:21,863 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:22:21,863 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:21,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:22:21,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:22:21,864 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 9175040}
2022-05-12 22:22:21,865 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:22,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:22,147 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:22,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:22,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:22,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 16777216}
2022-05-12 22:22:22,148 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:23,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:23,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:23,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:23,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:23,912 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 0}
2022-05-12 22:22:23,912 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:25,612 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:25,612 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:25,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:25,613 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:25,613 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 25165824}
2022-05-12 22:22:25,614 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:25,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50331648}) to executor  for transfer request: 0.
2022-05-12 22:22:25,774 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:25,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) about to wait for the following futures []
2022-05-12 22:22:25,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50331648}) done waiting for dependent futures
2022-05-12 22:22:25,775 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50331648}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 50331648}
2022-05-12 22:22:25,775 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:26,331 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75497472}) to executor  for transfer request: 0.
2022-05-12 22:22:26,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:26,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) about to wait for the following futures []
2022-05-12 22:22:26,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75497472}) done waiting for dependent futures
2022-05-12 22:22:26,332 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75497472}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 75497472}
2022-05-12 22:22:26,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,106 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:27,106 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:27,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:27,107 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 8388608}
2022-05-12 22:22:27,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41943040}) to executor  for transfer request: 0.
2022-05-12 22:22:27,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) about to wait for the following futures []
2022-05-12 22:22:27,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41943040}) done waiting for dependent futures
2022-05-12 22:22:27,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41943040}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 41943040}
2022-05-12 22:22:27,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:27,856 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:27,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:27,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 8388608}
2022-05-12 22:22:27,857 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:27,936 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67108864}) to executor  for transfer request: 0.
2022-05-12 22:22:27,936 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:27,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) about to wait for the following futures []
2022-05-12 22:22:27,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67108864}) done waiting for dependent futures
2022-05-12 22:22:27,936 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67108864}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 67108864}
2022-05-12 22:22:27,937 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:28,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:28,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:28,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:28,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:28,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 16777216}
2022-05-12 22:22:28,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:29,413 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:22:29,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:29,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:22:29,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:22:29,414 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 25165824}
2022-05-12 22:22:29,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:29,492 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33554432}) to executor  for transfer request: 0.
2022-05-12 22:22:29,492 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:29,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) about to wait for the following futures []
2022-05-12 22:22:29,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33554432}) done waiting for dependent futures
2022-05-12 22:22:29,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33554432}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 33554432}
2022-05-12 22:22:29,494 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:29,906 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:29,906 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:29,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:29,907 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:29,907 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 524288}
2022-05-12 22:22:29,907 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:31,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8388608}) to executor  for transfer request: 0.
2022-05-12 22:22:31,332 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:31,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) about to wait for the following futures []
2022-05-12 22:22:31,332 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8388608}) done waiting for dependent futures
2022-05-12 22:22:31,332 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8388608}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 8388608}
2022-05-12 22:22:31,333 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:31,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58982400}) to executor  for transfer request: 0.
2022-05-12 22:22:31,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:31,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) about to wait for the following futures []
2022-05-12 22:22:31,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58982400}) done waiting for dependent futures
2022-05-12 22:22:31,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58982400}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 58982400}
2022-05-12 22:22:31,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:31,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:31,548 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:31,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:31,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:31,549 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 16777216}
2022-05-12 22:22:31,549 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:32,709 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 0}) to executor  for transfer request: 0.
2022-05-12 22:22:32,709 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:32,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) about to wait for the following futures []
2022-05-12 22:22:32,710 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 0}) done waiting for dependent futures
2022-05-12 22:22:32,710 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 0}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 0}
2022-05-12 22:22:32,711 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:33,405 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16777216}) to executor  for transfer request: 0.
2022-05-12 22:22:33,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:33,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) about to wait for the following futures []
2022-05-12 22:22:33,406 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16777216}) done waiting for dependent futures
2022-05-12 22:22:33,406 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16777216}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 16777216}
2022-05-12 22:22:33,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:37,318 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:37,318 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:37,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:37,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:37,319 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 262144}
2022-05-12 22:22:37,320 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:38,575 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:22:38,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:38,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:22:38,576 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:22:38,576 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 1048576}
2022-05-12 22:22:38,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:38,656 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50593792}) to executor  for transfer request: 0.
2022-05-12 22:22:38,657 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:38,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) about to wait for the following futures []
2022-05-12 22:22:38,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50593792}) done waiting for dependent futures
2022-05-12 22:22:38,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50593792}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 50593792}
2022-05-12 22:22:38,658 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:40,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:40,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:40,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:40,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:40,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 25427968}
2022-05-12 22:22:40,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:40,142 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:40,143 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:40,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:40,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:40,143 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 25427968}
2022-05-12 22:22:40,144 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:40,183 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:40,183 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:40,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:40,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:40,184 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 17039360}
2022-05-12 22:22:40,184 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:41,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33816576}) to executor  for transfer request: 0.
2022-05-12 22:22:41,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:41,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) about to wait for the following futures []
2022-05-12 22:22:41,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33816576}) done waiting for dependent futures
2022-05-12 22:22:41,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33816576}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 33816576}
2022-05-12 22:22:41,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:42,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59244544}) to executor  for transfer request: 0.
2022-05-12 22:22:42,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:42,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) about to wait for the following futures []
2022-05-12 22:22:42,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59244544}) done waiting for dependent futures
2022-05-12 22:22:42,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59244544}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 59244544}
2022-05-12 22:22:42,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:43,631 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67371008}) to executor  for transfer request: 0.
2022-05-12 22:22:43,632 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:43,632 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) about to wait for the following futures []
2022-05-12 22:22:43,632 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67371008}) done waiting for dependent futures
2022-05-12 22:22:43,632 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67371008}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 67371008}
2022-05-12 22:22:43,632 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:43,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:43,876 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:43,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:43,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:43,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 8650752}
2022-05-12 22:22:43,876 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:43,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:22:43,920 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:43,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:22:43,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:22:43,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 9437184}
2022-05-12 22:22:43,921 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:45,084 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:45,084 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:45,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:45,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:45,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 8650752}
2022-05-12 22:22:45,085 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:45,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42205184}) to executor  for transfer request: 0.
2022-05-12 22:22:45,397 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:45,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) about to wait for the following futures []
2022-05-12 22:22:45,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42205184}) done waiting for dependent futures
2022-05-12 22:22:45,397 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42205184}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 42205184}
2022-05-12 22:22:45,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:22:47,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:22:47,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:22:47,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 25427968}
2022-05-12 22:22:47,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:47,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:47,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:47,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:47,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:47,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 17039360}
2022-05-12 22:22:47,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:50,097 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 262144}) to executor  for transfer request: 0.
2022-05-12 22:22:50,097 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:50,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) about to wait for the following futures []
2022-05-12 22:22:50,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 262144}) done waiting for dependent futures
2022-05-12 22:22:50,097 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 262144}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 262144}
2022-05-12 22:22:50,097 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:52,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:52,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:52,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 8912896}
2022-05-12 22:22:52,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:52,469 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8650752}) to executor  for transfer request: 0.
2022-05-12 22:22:52,469 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:52,469 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) about to wait for the following futures []
2022-05-12 22:22:52,469 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8650752}) done waiting for dependent futures
2022-05-12 22:22:52,469 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8650752}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 8650752}
2022-05-12 22:22:52,470 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:22:53,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:22:53,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:22:53,293 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 17301504}
2022-05-12 22:22:53,293 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,897 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:22:53,897 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:22:53,897 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:22:53,897 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 524288}
2022-05-12 22:22:53,898 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:53,917 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:22:53,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:53,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:22:53,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:22:53,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 1310720}
2022-05-12 22:22:53,919 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:54,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67633152}) to executor  for transfer request: 0.
2022-05-12 22:22:54,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:54,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) about to wait for the following futures []
2022-05-12 22:22:54,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67633152}) done waiting for dependent futures
2022-05-12 22:22:54,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67633152}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 67633152}
2022-05-12 22:22:54,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:54,459 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:22:54,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:54,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:22:54,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:22:54,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 25690112}
2022-05-12 22:22:54,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:57,092 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59506688}) to executor  for transfer request: 0.
2022-05-12 22:22:57,092 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:57,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) about to wait for the following futures []
2022-05-12 22:22:57,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59506688}) done waiting for dependent futures
2022-05-12 22:22:57,093 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59506688}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 59506688}
2022-05-12 22:22:57,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:57,488 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:22:57,488 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:57,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:22:57,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:22:57,489 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 17039360}
2022-05-12 22:22:57,489 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:57,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:22:57,743 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:57,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:22:57,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:22:57,743 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 8912896}
2022-05-12 22:22:57,744 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:22:59,179 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34078720}) to executor  for transfer request: 0.
2022-05-12 22:22:59,180 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:22:59,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) about to wait for the following futures []
2022-05-12 22:22:59,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34078720}) done waiting for dependent futures
2022-05-12 22:22:59,180 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34078720}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 34078720}
2022-05-12 22:22:59,181 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,637 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:00,637 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:00,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:00,638 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 25690112}
2022-05-12 22:23:00,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:00,938 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:00,938 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:00,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:00,938 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:00,938 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 17301504}
2022-05-12 22:23:00,939 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:01,842 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:01,842 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:01,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:01,843 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:01,843 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 9699328}
2022-05-12 22:23:01,843 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:04,603 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:04,603 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:04,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:04,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:04,604 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 9175040}
2022-05-12 22:23:04,604 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:05,026 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:05,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:05,026 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 25952256}
2022-05-12 22:23:05,027 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,367 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:05,367 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:05,367 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:05,368 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 786432}
2022-05-12 22:23:05,368 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:05,502 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:05,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:05,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:05,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:05,503 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 17563648}
2022-05-12 22:23:05,503 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:06,562 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17039360}) to executor  for transfer request: 0.
2022-05-12 22:23:06,563 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:06,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) about to wait for the following futures []
2022-05-12 22:23:06,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17039360}) done waiting for dependent futures
2022-05-12 22:23:06,563 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17039360}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 17039360}
2022-05-12 22:23:06,564 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,097 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42467328}) to executor  for transfer request: 0.
2022-05-12 22:23:08,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) about to wait for the following futures []
2022-05-12 22:23:08,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42467328}) done waiting for dependent futures
2022-05-12 22:23:08,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42467328}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 42467328}
2022-05-12 22:23:08,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:08,348 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:08,348 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:08,348 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:08,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:08,349 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 25690112}
2022-05-12 22:23:08,349 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:11,222 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:23:11,223 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:11,223 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:23:11,223 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:23:11,223 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 9175040}
2022-05-12 22:23:11,223 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:11,668 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:11,668 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:11,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:11,668 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:11,669 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 786432}
2022-05-12 22:23:11,669 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,118 s3transfer.download DEBUG    Retrying exception caught (Read timeout on endpoint URL: "None"), retrying request, (attempt 0 / 5)
Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 436, in _error_catcher
    yield
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 518, in read
    data = self._fp.read(amt) if not fp_closed else b""
  File "/usr/lib/python3.8/http/client.py", line 459, in read
    n = self.readinto(b)
  File "/usr/lib/python3.8/http/client.py", line 503, in readinto
    n = self.fp.readinto(b)
  File "/usr/lib/python3.8/socket.py", line 669, in readinto
    return self._sock.recv_into(b)
  File "/usr/lib/python3.8/ssl.py", line 1241, in recv_into
    return self.read(nbytes, buffer)
  File "/usr/lib/python3.8/ssl.py", line 1099, in read
    return self._sslobj.read(len, buffer)
socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 99, in read
    chunk = self._raw_stream.read(amt)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 540, in read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__
    self.gen.throw(type, value, traceback)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 441, in _error_catcher
    raise ReadTimeoutError(self._pool, None, "Read timed out.")
urllib3.exceptions.ReadTimeoutError: AWSHTTPSConnectionPool(host='plot-delineation.s3.eu-central-1.amazonaws.com', port=443): Read timed out.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 583, in _main
    for chunk in chunks:
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 728, in __next__
    chunk = self._body.read(self._chunksize)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/utils.py", line 599, in read
    value = self._stream.read(*args, **kwargs)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 102, in read
    raise ReadTimeoutError(endpoint_url=e.url, error=e)
botocore.exceptions.ReadTimeoutError: Read timeout on endpoint URL: "None"
2022-05-12 22:23:12,121 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:23:12,121 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:23:12,121 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:23:12,121 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:23:12,121 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:23:12,122 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:23:12,122 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:23:12,122 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:23:12,122 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:23:12,122 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:23:12,122 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=25165824-33554431', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:23:12,122 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:23:12,123 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:23:12,123 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:23:12,123 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:23:12,123 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:23:12,123 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:23:12,123 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:23:12,123 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:23:12,124 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:23:12,124 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=25165824-33554431
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222312Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:23:12,124 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222312Z
20220512/eu-central-1/s3/aws4_request
6eea6f53f08c02119845e3279842b73e3508b70d979f85aca0d6cf9671fe2355
2022-05-12 22:23:12,124 botocore.auth DEBUG    Signature:
ff0ca1c3188f2475f4f4a5a38bde69762b56ee898dd94265e54f45ab15588524
2022-05-12 22:23:12,124 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:23:12,124 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:23:12,124 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:23:12,125 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:23:12,125 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:23:12,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50855936}) to executor  for transfer request: 0.
2022-05-12 22:23:12,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) about to wait for the following futures []
2022-05-12 22:23:12,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50855936}) done waiting for dependent futures
2022-05-12 22:23:12,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50855936}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 50855936}
2022-05-12 22:23:12,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,670 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:12,670 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:12,671 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:12,671 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:12,671 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 25952256}
2022-05-12 22:23:12,671 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:12,740 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:23:12,740 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'KBaeMRMFuTbMhM9D9hYSRcJTd20BY9P/FfpMGrenHoi5dxajIupXmudaox+fh7ikYK3e9E23WSg=', 'x-amz-request-id': 'NRCPDAQ71N4WR3D3', 'Date': 'Thu, 12 May 2022 22:23:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 25165824-33554431/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:23:12,741 botocore.parsers DEBUG    Response body:

2022-05-12 22:23:12,741 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:23:12,742 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:23:12,742 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:23:13,159 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34340864}) to executor  for transfer request: 0.
2022-05-12 22:23:13,159 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:13,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) about to wait for the following futures []
2022-05-12 22:23:13,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34340864}) done waiting for dependent futures
2022-05-12 22:23:13,159 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34340864}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 34340864}
2022-05-12 22:23:13,160 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:13,448 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:23:13,448 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:13,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:23:13,449 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:23:13,449 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 1572864}
2022-05-12 22:23:13,450 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:13,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 67895296}) to executor  for transfer request: 0.
2022-05-12 22:23:13,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:13,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) about to wait for the following futures []
2022-05-12 22:23:13,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 67895296}) done waiting for dependent futures
2022-05-12 22:23:13,953 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 67895296}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 67895296}
2022-05-12 22:23:13,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:14,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 524288}) to executor  for transfer request: 0.
2022-05-12 22:23:14,903 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:14,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) about to wait for the following futures []
2022-05-12 22:23:14,903 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 524288}) done waiting for dependent futures
2022-05-12 22:23:14,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 524288}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 524288}
2022-05-12 22:23:14,904 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:15,561 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 59768832}) to executor  for transfer request: 0.
2022-05-12 22:23:15,561 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:15,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) about to wait for the following futures []
2022-05-12 22:23:15,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 59768832}) done waiting for dependent futures
2022-05-12 22:23:15,562 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 59768832}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 59768832}
2022-05-12 22:23:15,562 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:15,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:15,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:15,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:15,617 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:15,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 9437184}
2022-05-12 22:23:15,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:18,202 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:18,202 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:18,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:18,203 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:18,203 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 26214400}
2022-05-12 22:23:18,203 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:19,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:19,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:19,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:19,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:19,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 17825792}
2022-05-12 22:23:19,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:21,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:21,395 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:21,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:21,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:21,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 17301504}
2022-05-12 22:23:21,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,092 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:23,093 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:23,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:23,094 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 17563648}
2022-05-12 22:23:23,094 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,599 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75759616}) to executor  for transfer request: 0.
2022-05-12 22:23:23,600 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) about to wait for the following futures []
2022-05-12 22:23:23,600 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75759616}) done waiting for dependent futures
2022-05-12 22:23:23,600 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75759616}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 75759616}
2022-05-12 22:23:23,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,824 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:23:23,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:23:23,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:23:23,824 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 9437184}
2022-05-12 22:23:23,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:23,979 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34603008}) to executor  for transfer request: 0.
2022-05-12 22:23:23,979 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:23,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) about to wait for the following futures []
2022-05-12 22:23:23,979 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34603008}) done waiting for dependent futures
2022-05-12 22:23:23,979 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34603008}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 34603008}
2022-05-12 22:23:23,980 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:24,888 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:23:24,888 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:24,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:23:24,889 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:23:24,889 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 1835008}
2022-05-12 22:23:24,889 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:25,768 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:23:25,768 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:25,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:23:25,769 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:23:25,769 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 25952256}
2022-05-12 22:23:25,769 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:26,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8912896}) to executor  for transfer request: 0.
2022-05-12 22:23:26,771 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:26,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) about to wait for the following futures []
2022-05-12 22:23:26,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8912896}) done waiting for dependent futures
2022-05-12 22:23:26,772 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8912896}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 8912896}
2022-05-12 22:23:26,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68157440}) to executor  for transfer request: 0.
2022-05-12 22:23:27,047 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) about to wait for the following futures []
2022-05-12 22:23:27,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68157440}) done waiting for dependent futures
2022-05-12 22:23:27,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68157440}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 68157440}
2022-05-12 22:23:27,048 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:27,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:27,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:27,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 9699328}
2022-05-12 22:23:27,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:27,767 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42729472}) to executor  for transfer request: 0.
2022-05-12 22:23:27,767 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:27,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) about to wait for the following futures []
2022-05-12 22:23:27,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42729472}) done waiting for dependent futures
2022-05-12 22:23:27,768 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42729472}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 42729472}
2022-05-12 22:23:27,768 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:28,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:28,856 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:28,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:28,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:28,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 1048576}
2022-05-12 22:23:28,857 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:29,351 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:29,351 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:29,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:29,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:29,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 26214400}
2022-05-12 22:23:29,353 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:29,992 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:29,992 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:29,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:29,992 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:29,992 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 26476544}
2022-05-12 22:23:29,993 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:30,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 786432}) to executor  for transfer request: 0.
2022-05-12 22:23:30,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:30,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) about to wait for the following futures []
2022-05-12 22:23:30,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 786432}) done waiting for dependent futures
2022-05-12 22:23:30,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 786432}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 786432}
2022-05-12 22:23:30,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:33,142 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25165824}) to executor  for transfer request: 0.
2022-05-12 22:23:33,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:33,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) about to wait for the following futures []
2022-05-12 22:23:33,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25165824}) done waiting for dependent futures
2022-05-12 22:23:33,143 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25165824}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 25165824}
2022-05-12 22:23:33,143 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:33,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60030976}) to executor  for transfer request: 0.
2022-05-12 22:23:33,397 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:33,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) about to wait for the following futures []
2022-05-12 22:23:33,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60030976}) done waiting for dependent futures
2022-05-12 22:23:33,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60030976}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 60030976}
2022-05-12 22:23:33,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:23:35,076 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:23:35,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:23:35,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 2097152}
2022-05-12 22:23:35,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:23:35,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:23:35,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:23:35,381 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 9699328}
2022-05-12 22:23:35,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,595 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:35,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:35,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:35,596 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 9961472}
2022-05-12 22:23:35,596 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17301504}) to executor  for transfer request: 0.
2022-05-12 22:23:35,678 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) about to wait for the following futures []
2022-05-12 22:23:35,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17301504}) done waiting for dependent futures
2022-05-12 22:23:35,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17301504}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 17301504}
2022-05-12 22:23:35,680 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,859 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:23:35,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:23:35,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:23:35,860 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 17825792}
2022-05-12 22:23:35,860 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:35,891 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:35,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:35,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:35,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:35,891 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 18087936}
2022-05-12 22:23:35,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:36,941 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 34865152}) to executor  for transfer request: 0.
2022-05-12 22:23:36,941 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:36,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) about to wait for the following futures []
2022-05-12 22:23:36,941 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 34865152}) done waiting for dependent futures
2022-05-12 22:23:36,941 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 34865152}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 34865152}
2022-05-12 22:23:36,942 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:39,860 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:23:39,860 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:39,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:23:39,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:23:39,861 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 26214400}
2022-05-12 22:23:39,861 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:40,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 42991616}) to executor  for transfer request: 0.
2022-05-12 22:23:40,927 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:40,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) about to wait for the following futures []
2022-05-12 22:23:40,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 42991616}) done waiting for dependent futures
2022-05-12 22:23:40,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 42991616}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 42991616}
2022-05-12 22:23:40,928 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,151 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:42,151 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:42,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:42,151 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 9961472}
2022-05-12 22:23:42,152 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:42,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:23:42,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:42,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:23:42,373 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:23:42,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 17563648}
2022-05-12 22:23:42,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:43,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:43,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:43,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:43,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:43,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 1048576}
2022-05-12 22:23:43,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:43,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76021760}) to executor  for transfer request: 0.
2022-05-12 22:23:43,787 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:43,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) about to wait for the following futures []
2022-05-12 22:23:43,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76021760}) done waiting for dependent futures
2022-05-12 22:23:43,787 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76021760}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 76021760}
2022-05-12 22:23:43,788 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:44,652 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60293120}) to executor  for transfer request: 0.
2022-05-12 22:23:44,652 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:44,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) about to wait for the following futures []
2022-05-12 22:23:44,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60293120}) done waiting for dependent futures
2022-05-12 22:23:44,653 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60293120}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 60293120}
2022-05-12 22:23:44,653 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:45,454 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:23:45,455 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:45,455 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:23:45,455 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:23:45,455 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 2359296}
2022-05-12 22:23:45,456 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:46,772 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:23:46,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:46,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:23:46,773 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:23:46,773 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 18087936}
2022-05-12 22:23:46,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:47,445 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1048576}) to executor  for transfer request: 0.
2022-05-12 22:23:47,445 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:47,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) about to wait for the following futures []
2022-05-12 22:23:47,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1048576}) done waiting for dependent futures
2022-05-12 22:23:47,445 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1048576}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 1048576}
2022-05-12 22:23:47,445 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:48,037 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:23:48,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:48,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:23:48,038 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:23:48,038 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 9961472}
2022-05-12 22:23:48,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:48,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:48,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:48,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:48,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:48,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 18350080}
2022-05-12 22:23:48,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:49,097 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51118080}) to executor  for transfer request: 0.
2022-05-12 22:23:49,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:49,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) about to wait for the following futures []
2022-05-12 22:23:49,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51118080}) done waiting for dependent futures
2022-05-12 22:23:49,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51118080}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 51118080}
2022-05-12 22:23:49,098 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:49,197 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68419584}) to executor  for transfer request: 0.
2022-05-12 22:23:49,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:49,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) about to wait for the following futures []
2022-05-12 22:23:49,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68419584}) done waiting for dependent futures
2022-05-12 22:23:49,198 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68419584}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 68419584}
2022-05-12 22:23:49,198 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:23:50,310 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:23:50,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:23:50,311 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 26738688}
2022-05-12 22:23:50,311 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,632 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25427968}) to executor  for transfer request: 0.
2022-05-12 22:23:50,632 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) about to wait for the following futures []
2022-05-12 22:23:50,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25427968}) done waiting for dependent futures
2022-05-12 22:23:50,633 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25427968}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 25427968}
2022-05-12 22:23:50,633 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:50,868 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:50,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:50,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:50,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:50,869 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 26476544}
2022-05-12 22:23:50,869 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:53,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:53,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:53,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:53,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:53,597 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 10223616}
2022-05-12 22:23:53,598 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,296 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60555264}) to executor  for transfer request: 0.
2022-05-12 22:23:55,296 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) about to wait for the following futures []
2022-05-12 22:23:55,296 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60555264}) done waiting for dependent futures
2022-05-12 22:23:55,297 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60555264}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 60555264}
2022-05-12 22:23:55,297 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:55,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:23:55,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:55,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:23:55,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:23:55,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 26476544}
2022-05-12 22:23:55,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:56,831 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:23:56,831 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:56,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:23:56,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:23:56,831 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 2621440}
2022-05-12 22:23:56,832 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:56,863 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43253760}) to executor  for transfer request: 0.
2022-05-12 22:23:56,863 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:56,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) about to wait for the following futures []
2022-05-12 22:23:56,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43253760}) done waiting for dependent futures
2022-05-12 22:23:56,864 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43253760}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 43253760}
2022-05-12 22:23:56,864 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:56,881 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:23:56,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:56,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:23:56,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:23:56,882 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 27000832}
2022-05-12 22:23:56,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35127296}) to executor  for transfer request: 0.
2022-05-12 22:23:58,147 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) about to wait for the following futures []
2022-05-12 22:23:58,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35127296}) done waiting for dependent futures
2022-05-12 22:23:58,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35127296}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 35127296}
2022-05-12 22:23:58,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25690112}) to executor  for transfer request: 0.
2022-05-12 22:23:58,149 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) about to wait for the following futures []
2022-05-12 22:23:58,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25690112}) done waiting for dependent futures
2022-05-12 22:23:58,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25690112}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 25690112}
2022-05-12 22:23:58,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:23:58,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:23:58,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:23:58,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 10223616}
2022-05-12 22:23:58,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,651 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:23:58,652 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:23:58,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:23:58,652 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 18612224}
2022-05-12 22:23:58,652 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:23:58,817 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:23:58,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:23:58,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:23:58,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:23:58,818 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 18350080}
2022-05-12 22:23:58,819 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:01,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:24:01,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:01,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:24:01,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:24:01,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 1310720}
2022-05-12 22:24:01,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:01,735 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:24:01,735 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:01,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:24:01,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:24:01,736 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 17825792}
2022-05-12 22:24:01,736 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:03,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:24:03,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:03,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:24:03,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:24:03,724 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 10223616}
2022-05-12 22:24:03,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:05,126 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:05,127 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:05,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:05,127 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:05,127 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 10485760}
2022-05-12 22:24:05,128 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:07,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76283904}) to executor  for transfer request: 0.
2022-05-12 22:24:07,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:07,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) about to wait for the following futures []
2022-05-12 22:24:07,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76283904}) done waiting for dependent futures
2022-05-12 22:24:07,859 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76283904}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 76283904}
2022-05-12 22:24:07,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:08,360 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 60817408}) to executor  for transfer request: 0.
2022-05-12 22:24:08,360 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:08,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) about to wait for the following futures []
2022-05-12 22:24:08,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 60817408}) done waiting for dependent futures
2022-05-12 22:24:08,361 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 60817408}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 60817408}
2022-05-12 22:24:08,361 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:08,818 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:24:08,819 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:08,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:24:08,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:24:08,819 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 26738688}
2022-05-12 22:24:08,819 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,636 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:24:09,637 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:24:09,637 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:24:09,637 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 2883584}
2022-05-12 22:24:09,638 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:09,731 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:09,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:09,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:09,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:09,732 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 18874368}
2022-05-12 22:24:09,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:10,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:24:10,132 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:10,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:24:10,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:24:10,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 1572864}
2022-05-12 22:24:10,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:10,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 25952256}) to executor  for transfer request: 0.
2022-05-12 22:24:10,971 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:10,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) about to wait for the following futures []
2022-05-12 22:24:10,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 25952256}) done waiting for dependent futures
2022-05-12 22:24:10,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 25952256}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 25952256}
2022-05-12 22:24:10,973 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:11,028 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17563648}) to executor  for transfer request: 0.
2022-05-12 22:24:11,028 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:11,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) about to wait for the following futures []
2022-05-12 22:24:11,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17563648}) done waiting for dependent futures
2022-05-12 22:24:11,029 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17563648}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 17563648}
2022-05-12 22:24:11,029 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:11,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:24:11,076 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:11,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:24:11,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:24:11,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 27262976}
2022-05-12 22:24:11,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:11,581 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43515904}) to executor  for transfer request: 0.
2022-05-12 22:24:11,581 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:11,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) about to wait for the following futures []
2022-05-12 22:24:11,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43515904}) done waiting for dependent futures
2022-05-12 22:24:11,582 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43515904}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 43515904}
2022-05-12 22:24:11,582 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,523 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35389440}) to executor  for transfer request: 0.
2022-05-12 22:24:12,523 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) about to wait for the following futures []
2022-05-12 22:24:12,523 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35389440}) done waiting for dependent futures
2022-05-12 22:24:12,523 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35389440}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 35389440}
2022-05-12 22:24:12,524 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:12,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:24:12,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:12,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:24:12,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:24:12,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 18612224}
2022-05-12 22:24:12,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:15,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:24:15,036 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:15,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:24:15,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:24:15,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 1310720}
2022-05-12 22:24:15,037 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:15,369 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9175040}) to executor  for transfer request: 0.
2022-05-12 22:24:15,369 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:15,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) about to wait for the following futures []
2022-05-12 22:24:15,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9175040}) done waiting for dependent futures
2022-05-12 22:24:15,369 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9175040}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 9175040}
2022-05-12 22:24:15,370 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:15,617 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:15,617 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:15,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:15,618 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:15,618 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 10485760}
2022-05-12 22:24:15,618 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:16,857 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:16,857 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:16,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:16,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:16,858 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 10747904}
2022-05-12 22:24:16,858 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:17,007 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68681728}) to executor  for transfer request: 0.
2022-05-12 22:24:17,007 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:17,008 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) about to wait for the following futures []
2022-05-12 22:24:17,008 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68681728}) done waiting for dependent futures
2022-05-12 22:24:17,008 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68681728}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 68681728}
2022-05-12 22:24:17,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:17,165 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1310720}) to executor  for transfer request: 0.
2022-05-12 22:24:17,165 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:17,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) about to wait for the following futures []
2022-05-12 22:24:17,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1310720}) done waiting for dependent futures
2022-05-12 22:24:17,166 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1310720}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 1310720}
2022-05-12 22:24:17,166 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:19,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61079552}) to executor  for transfer request: 0.
2022-05-12 22:24:19,804 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:19,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) about to wait for the following futures []
2022-05-12 22:24:19,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61079552}) done waiting for dependent futures
2022-05-12 22:24:19,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61079552}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 61079552}
2022-05-12 22:24:19,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,456 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:24:20,457 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:24:20,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:24:20,457 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 1835008}
2022-05-12 22:24:20,458 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:20,696 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:24:20,696 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:20,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:24:20,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:24:20,696 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 27000832}
2022-05-12 22:24:20,697 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:21,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51380224}) to executor  for transfer request: 0.
2022-05-12 22:24:21,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:21,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) about to wait for the following futures []
2022-05-12 22:24:21,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51380224}) done waiting for dependent futures
2022-05-12 22:24:21,496 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51380224}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 51380224}
2022-05-12 22:24:21,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:21,715 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:24:21,716 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:21,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:24:21,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:24:21,716 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 18087936}
2022-05-12 22:24:21,717 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:24:24,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:24:24,532 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:24:24,532 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 26738688}
2022-05-12 22:24:24,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:24,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:24:24,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:24,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:24:24,927 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:24:24,927 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 3145728}
2022-05-12 22:24:24,927 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,346 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26214400}) to executor  for transfer request: 0.
2022-05-12 22:24:26,346 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) about to wait for the following futures []
2022-05-12 22:24:26,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26214400}) done waiting for dependent futures
2022-05-12 22:24:26,347 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26214400}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 26214400}
2022-05-12 22:24:26,347 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:24:26,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:24:26,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:24:26,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 10485760}
2022-05-12 22:24:26,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:26,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:24:26,796 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:26,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:24:26,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:24:26,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 27525120}
2022-05-12 22:24:26,797 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:28,690 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:28,690 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:28,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:28,691 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:28,691 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 11010048}
2022-05-12 22:24:28,691 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:29,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:29,020 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:29,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:29,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:29,022 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 19136512}
2022-05-12 22:24:29,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:29,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76546048}) to executor  for transfer request: 0.
2022-05-12 22:24:29,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 43778048}) to executor  for transfer request: 0.
2022-05-12 22:24:29,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:29,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:29,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) about to wait for the following futures []
2022-05-12 22:24:29,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76546048}) done waiting for dependent futures
2022-05-12 22:24:29,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76546048}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 76546048}
2022-05-12 22:24:29,210 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:29,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) about to wait for the following futures []
2022-05-12 22:24:29,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 43778048}) done waiting for dependent futures
2022-05-12 22:24:29,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 43778048}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 43778048}
2022-05-12 22:24:29,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:29,737 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:24:29,738 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:29,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:24:29,738 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:24:29,738 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 18874368}
2022-05-12 22:24:29,739 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:32,424 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35651584}) to executor  for transfer request: 0.
2022-05-12 22:24:32,424 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:32,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) about to wait for the following futures []
2022-05-12 22:24:32,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35651584}) done waiting for dependent futures
2022-05-12 22:24:32,425 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35651584}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 35651584}
2022-05-12 22:24:32,426 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:34,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 17825792}) to executor  for transfer request: 0.
2022-05-12 22:24:34,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:34,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) about to wait for the following futures []
2022-05-12 22:24:34,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 17825792}) done waiting for dependent futures
2022-05-12 22:24:34,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 17825792}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 17825792}
2022-05-12 22:24:34,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:36,555 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:24:36,555 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:36,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:24:36,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:24:36,556 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 2097152}
2022-05-12 22:24:36,556 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:37,239 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61341696}) to executor  for transfer request: 0.
2022-05-12 22:24:37,239 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:37,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) about to wait for the following futures []
2022-05-12 22:24:37,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61341696}) done waiting for dependent futures
2022-05-12 22:24:37,239 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61341696}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 61341696}
2022-05-12 22:24:37,239 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:39,076 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:24:39,076 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:39,076 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:24:39,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:24:39,077 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 27262976}
2022-05-12 22:24:39,077 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:39,287 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:24:39,287 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:39,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:24:39,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:24:39,288 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 3407872}
2022-05-12 22:24:39,288 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:39,400 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 68943872}) to executor  for transfer request: 0.
2022-05-12 22:24:39,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:39,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) about to wait for the following futures []
2022-05-12 22:24:39,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 68943872}) done waiting for dependent futures
2022-05-12 22:24:39,401 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 68943872}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 68943872}
2022-05-12 22:24:39,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:40,058 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:40,058 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:40,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:40,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:40,059 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 10747904}
2022-05-12 22:24:40,059 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:40,870 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:24:40,870 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:40,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:24:40,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:24:40,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 11272192}
2022-05-12 22:24:40,871 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:41,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:24:41,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:41,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:24:41,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:24:41,649 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 19136512}
2022-05-12 22:24:41,650 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,021 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:24:42,021 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:24:42,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:24:42,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 18350080}
2022-05-12 22:24:42,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,656 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:24:42,656 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:24:42,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:24:42,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 27787264}
2022-05-12 22:24:42,657 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:42,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:42,971 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:42,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:42,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:42,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 19398656}
2022-05-12 22:24:42,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:44,019 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44040192}) to executor  for transfer request: 0.
2022-05-12 22:24:44,019 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:44,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) about to wait for the following futures []
2022-05-12 22:24:44,020 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44040192}) done waiting for dependent futures
2022-05-12 22:24:44,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44040192}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 44040192}
2022-05-12 22:24:44,021 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:47,506 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:24:47,506 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:47,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:24:47,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:24:47,507 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 2359296}
2022-05-12 22:24:47,507 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:48,764 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 35913728}) to executor  for transfer request: 0.
2022-05-12 22:24:48,764 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:48,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) about to wait for the following futures []
2022-05-12 22:24:48,764 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 35913728}) done waiting for dependent futures
2022-05-12 22:24:48,764 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 35913728}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 35913728}
2022-05-12 22:24:48,764 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:49,139 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61603840}) to executor  for transfer request: 0.
2022-05-12 22:24:49,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:49,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) about to wait for the following futures []
2022-05-12 22:24:49,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61603840}) done waiting for dependent futures
2022-05-12 22:24:49,140 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61603840}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 61603840}
2022-05-12 22:24:49,141 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:49,878 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26476544}) to executor  for transfer request: 0.
2022-05-12 22:24:49,878 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:49,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) about to wait for the following futures []
2022-05-12 22:24:49,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26476544}) done waiting for dependent futures
2022-05-12 22:24:49,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26476544}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 26476544}
2022-05-12 22:24:49,879 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:50,856 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:24:50,857 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:50,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:24:50,857 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:24:50,857 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 11010048}
2022-05-12 22:24:50,858 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:51,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:24:51,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:51,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:24:51,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:24:51,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 11534336}
2022-05-12 22:24:51,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,477 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:24:52,478 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:24:52,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:24:52,479 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 19398656}
2022-05-12 22:24:52,479 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:52,521 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:24:52,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:52,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:24:52,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:24:52,521 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 27000832}
2022-05-12 22:24:52,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:55,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44302336}) to executor  for transfer request: 0.
2022-05-12 22:24:55,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:55,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) about to wait for the following futures []
2022-05-12 22:24:55,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44302336}) done waiting for dependent futures
2022-05-12 22:24:55,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44302336}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 44302336}
2022-05-12 22:24:55,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:55,632 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:24:55,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:55,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:24:55,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:24:55,633 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 10747904}
2022-05-12 22:24:55,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:55,795 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:24:55,795 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:55,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:24:55,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:24:55,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 1572864}
2022-05-12 22:24:55,796 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:55,884 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51642368}) to executor  for transfer request: 0.
2022-05-12 22:24:55,884 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:55,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) about to wait for the following futures []
2022-05-12 22:24:55,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51642368}) done waiting for dependent futures
2022-05-12 22:24:55,885 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51642368}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 51642368}
2022-05-12 22:24:55,885 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:57,332 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:24:57,333 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:57,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:24:57,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:24:57,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 28049408}
2022-05-12 22:24:57,334 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:57,828 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:24:57,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:57,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:24:57,828 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:24:57,829 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 3670016}
2022-05-12 22:24:57,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:59,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:24:59,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:59,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:24:59,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:24:59,682 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 27525120}
2022-05-12 22:24:59,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:59,917 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:24:59,917 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:59,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:24:59,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:24:59,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 11796480}
2022-05-12 22:24:59,918 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:24:59,923 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:24:59,923 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:24:59,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:24:59,924 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:24:59,924 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 19660800}
2022-05-12 22:24:59,924 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:01,020 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36175872}) to executor  for transfer request: 0.
2022-05-12 22:25:01,021 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:01,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) about to wait for the following futures []
2022-05-12 22:25:01,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36175872}) done waiting for dependent futures
2022-05-12 22:25:01,021 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36175872}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 36175872}
2022-05-12 22:25:01,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:01,950 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18087936}) to executor  for transfer request: 0.
2022-05-12 22:25:01,951 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:01,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) about to wait for the following futures []
2022-05-12 22:25:01,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18087936}) done waiting for dependent futures
2022-05-12 22:25:01,951 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18087936}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 18087936}
2022-05-12 22:25:01,951 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:02,292 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:25:02,293 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:02,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:25:02,293 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:25:02,293 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 11272192}
2022-05-12 22:25:02,294 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:03,581 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69206016}) to executor  for transfer request: 0.
2022-05-12 22:25:03,582 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:03,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) about to wait for the following futures []
2022-05-12 22:25:03,582 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69206016}) done waiting for dependent futures
2022-05-12 22:25:03,582 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69206016}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 69206016}
2022-05-12 22:25:03,583 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:03,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:25:03,922 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:03,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:25:03,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:25:03,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 2621440}
2022-05-12 22:25:03,923 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,539 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 26738688}) to executor  for transfer request: 0.
2022-05-12 22:25:04,540 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) about to wait for the following futures []
2022-05-12 22:25:04,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 26738688}) done waiting for dependent futures
2022-05-12 22:25:04,540 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 26738688}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 26738688}
2022-05-12 22:25:04,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:04,983 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:25:04,983 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:04,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:25:04,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:25:04,984 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 19660800}
2022-05-12 22:25:04,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:06,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:25:06,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:06,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:25:06,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:25:06,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 27787264}
2022-05-12 22:25:06,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:07,520 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 61865984}) to executor  for transfer request: 0.
2022-05-12 22:25:07,521 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:07,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) about to wait for the following futures []
2022-05-12 22:25:07,521 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 61865984}) done waiting for dependent futures
2022-05-12 22:25:07,521 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 61865984}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 61865984}
2022-05-12 22:25:07,522 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:08,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:25:08,026 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:08,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:25:08,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:25:08,027 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 18612224}
2022-05-12 22:25:08,027 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44564480}) to executor  for transfer request: 0.
2022-05-12 22:25:09,029 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) about to wait for the following futures []
2022-05-12 22:25:09,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44564480}) done waiting for dependent futures
2022-05-12 22:25:09,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44564480}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 44564480}
2022-05-12 22:25:09,030 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:09,185 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:09,185 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:09,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:09,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:09,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 12058624}
2022-05-12 22:25:09,186 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:11,288 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36438016}) to executor  for transfer request: 0.
2022-05-12 22:25:11,288 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:11,288 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) about to wait for the following futures []
2022-05-12 22:25:11,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36438016}) done waiting for dependent futures
2022-05-12 22:25:11,289 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36438016}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 36438016}
2022-05-12 22:25:11,289 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:12,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9437184}) to executor  for transfer request: 0.
2022-05-12 22:25:12,259 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:12,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) about to wait for the following futures []
2022-05-12 22:25:12,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9437184}) done waiting for dependent futures
2022-05-12 22:25:12,259 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9437184}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 9437184}
2022-05-12 22:25:12,260 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:13,084 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:25:13,084 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:13,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:25:13,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:25:13,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 11534336}
2022-05-12 22:25:13,085 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:13,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:25:13,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:13,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:25:13,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:25:13,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 19922944}
2022-05-12 22:25:13,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:15,206 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:25:15,207 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:15,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:25:15,208 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:25:15,208 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 28311552}
2022-05-12 22:25:15,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:16,626 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:25:16,626 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:16,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:25:16,627 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:25:16,627 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 3932160}
2022-05-12 22:25:16,627 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:17,062 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62128128}) to executor  for transfer request: 0.
2022-05-12 22:25:17,062 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:17,063 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) about to wait for the following futures []
2022-05-12 22:25:17,063 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62128128}) done waiting for dependent futures
2022-05-12 22:25:17,063 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62128128}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 62128128}
2022-05-12 22:25:17,063 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:19,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27000832}) to executor  for transfer request: 0.
2022-05-12 22:25:19,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:19,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) about to wait for the following futures []
2022-05-12 22:25:19,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27000832}) done waiting for dependent futures
2022-05-12 22:25:19,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27000832}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 27000832}
2022-05-12 22:25:19,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:19,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:25:19,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:19,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:25:19,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:25:19,673 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 19922944}
2022-05-12 22:25:19,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:20,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:25:20,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:20,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:25:20,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:25:20,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 27262976}
2022-05-12 22:25:20,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:20,868 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:20,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:20,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:20,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:20,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 12320768}
2022-05-12 22:25:20,869 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:21,948 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:25:21,948 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:21,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:25:21,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:25:21,949 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 28049408}
2022-05-12 22:25:21,949 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:22,400 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36700160}) to executor  for transfer request: 0.
2022-05-12 22:25:22,400 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:22,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) about to wait for the following futures []
2022-05-12 22:25:22,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36700160}) done waiting for dependent futures
2022-05-12 22:25:22,401 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36700160}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 36700160}
2022-05-12 22:25:22,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:22,988 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:25:22,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:22,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:25:22,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:25:22,988 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 11796480}
2022-05-12 22:25:22,989 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 44826624}) to executor  for transfer request: 0.
2022-05-12 22:25:24,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) about to wait for the following futures []
2022-05-12 22:25:24,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 44826624}) done waiting for dependent futures
2022-05-12 22:25:24,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 44826624}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 44826624}
2022-05-12 22:25:24,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:24,274 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 51904512}) to executor  for transfer request: 0.
2022-05-12 22:25:24,275 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:24,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) about to wait for the following futures []
2022-05-12 22:25:24,275 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 51904512}) done waiting for dependent futures
2022-05-12 22:25:24,275 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 51904512}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 51904512}
2022-05-12 22:25:24,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:25,047 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69468160}) to executor  for transfer request: 0.
2022-05-12 22:25:25,047 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:25,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) about to wait for the following futures []
2022-05-12 22:25:25,047 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69468160}) done waiting for dependent futures
2022-05-12 22:25:25,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69468160}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 69468160}
2022-05-12 22:25:25,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:26,589 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 76808192}) to executor  for transfer request: 0.
2022-05-12 22:25:26,589 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:26,590 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) about to wait for the following futures []
2022-05-12 22:25:26,590 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 76808192}) done waiting for dependent futures
2022-05-12 22:25:26,590 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 76808192}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 76808192}
2022-05-12 22:25:26,590 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:26,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:25:26,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:26,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:25:26,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:25:26,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 28573696}
2022-05-12 22:25:26,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:29,095 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:25:29,095 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:29,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:25:29,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:25:29,096 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 1835008}
2022-05-12 22:25:29,096 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:30,013 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:25:30,013 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:30,013 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:25:30,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:25:30,014 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 20185088}
2022-05-12 22:25:30,014 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:30,088 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:25:30,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:30,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:25:30,089 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:25:30,089 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 11010048}
2022-05-12 22:25:30,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:30,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:30,791 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:30,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:30,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:30,791 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 12582912}
2022-05-12 22:25:30,792 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:30,995 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62390272}) to executor  for transfer request: 0.
2022-05-12 22:25:30,996 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:30,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) about to wait for the following futures []
2022-05-12 22:25:30,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62390272}) done waiting for dependent futures
2022-05-12 22:25:30,996 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62390272}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 62390272}
2022-05-12 22:25:30,997 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:31,385 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:25:31,386 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:31,386 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:25:31,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:25:31,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 4194304}
2022-05-12 22:25:31,387 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:32,228 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:25:32,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:32,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:25:32,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:25:32,229 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 20185088}
2022-05-12 22:25:32,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:32,413 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27262976}) to executor  for transfer request: 0.
2022-05-12 22:25:32,413 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:32,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) about to wait for the following futures []
2022-05-12 22:25:32,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27262976}) done waiting for dependent futures
2022-05-12 22:25:32,413 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27262976}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 27262976}
2022-05-12 22:25:32,414 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:33,110 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:25:33,110 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:33,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:25:33,111 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:25:33,111 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 12058624}
2022-05-12 22:25:33,111 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:33,358 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:25:33,358 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:33,358 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:25:33,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:25:33,359 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 28311552}
2022-05-12 22:25:33,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,461 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1572864}) to executor  for transfer request: 0.
2022-05-12 22:25:36,461 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) about to wait for the following futures []
2022-05-12 22:25:36,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1572864}) done waiting for dependent futures
2022-05-12 22:25:36,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1572864}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 1572864}
2022-05-12 22:25:36,462 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,836 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:25:36,836 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:25:36,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:25:36,837 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 2883584}
2022-05-12 22:25:36,837 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:36,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 36962304}) to executor  for transfer request: 0.
2022-05-12 22:25:36,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:36,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) about to wait for the following futures []
2022-05-12 22:25:36,856 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 36962304}) done waiting for dependent futures
2022-05-12 22:25:36,856 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 36962304}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 36962304}
2022-05-12 22:25:36,857 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:37,775 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45088768}) to executor  for transfer request: 0.
2022-05-12 22:25:37,776 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:37,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) about to wait for the following futures []
2022-05-12 22:25:37,776 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45088768}) done waiting for dependent futures
2022-05-12 22:25:37,776 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45088768}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 45088768}
2022-05-12 22:25:37,776 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:42,542 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:25:42,542 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:42,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:25:42,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:25:42,543 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 12320768}
2022-05-12 22:25:42,543 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:43,011 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:43,011 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:43,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:43,012 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:43,012 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 20447232}
2022-05-12 22:25:43,012 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:43,305 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:25:43,305 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:43,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:25:43,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:25:43,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 20447232}
2022-05-12 22:25:43,306 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:44,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18350080}) to executor  for transfer request: 0.
2022-05-12 22:25:44,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:44,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) about to wait for the following futures []
2022-05-12 22:25:44,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18350080}) done waiting for dependent futures
2022-05-12 22:25:44,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18350080}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 18350080}
2022-05-12 22:25:44,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:45,492 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:25:45,492 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:45,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:25:45,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:25:45,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 4456448}
2022-05-12 22:25:45,493 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:46,655 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:25:46,655 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:46,655 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:25:46,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:25:46,656 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 12845056}
2022-05-12 22:25:46,656 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:46,715 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:25:46,715 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:46,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:25:46,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:25:46,716 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 27525120}
2022-05-12 22:25:46,716 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:47,550 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45350912}) to executor  for transfer request: 0.
2022-05-12 22:25:47,550 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:47,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) about to wait for the following futures []
2022-05-12 22:25:47,551 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45350912}) done waiting for dependent futures
2022-05-12 22:25:47,551 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45350912}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 45350912}
2022-05-12 22:25:47,551 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:47,566 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:25:47,567 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:47,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:25:47,569 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:25:47,570 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 28835840}
2022-05-12 22:25:47,570 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:48,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:25:48,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:48,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:25:48,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:25:48,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 28573696}
2022-05-12 22:25:48,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:48,045 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62652416}) to executor  for transfer request: 0.
2022-05-12 22:25:48,045 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:48,045 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) about to wait for the following futures []
2022-05-12 22:25:48,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62652416}) done waiting for dependent futures
2022-05-12 22:25:48,046 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62652416}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 62652416}
2022-05-12 22:25:48,046 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:50,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27525120}) to executor  for transfer request: 0.
2022-05-12 22:25:50,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:50,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) about to wait for the following futures []
2022-05-12 22:25:50,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27525120}) done waiting for dependent futures
2022-05-12 22:25:50,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27525120}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 27525120}
2022-05-12 22:25:50,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:51,520 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:25:51,520 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:51,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:25:51,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:25:51,520 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 18874368}
2022-05-12 22:25:51,521 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:52,245 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:25:52,245 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:52,246 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:25:52,246 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:25:52,246 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 12582912}
2022-05-12 22:25:52,246 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:54,806 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:25:54,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:54,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:25:54,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:25:54,807 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 11272192}
2022-05-12 22:25:54,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:55,742 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:25:55,742 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:55,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:25:55,742 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:25:55,742 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 20709376}
2022-05-12 22:25:55,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:56,755 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69730304}) to executor  for transfer request: 0.
2022-05-12 22:25:56,755 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:56,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) about to wait for the following futures []
2022-05-12 22:25:56,755 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69730304}) done waiting for dependent futures
2022-05-12 22:25:56,755 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69730304}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 69730304}
2022-05-12 22:25:56,756 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:58,788 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:25:58,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:58,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:25:58,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:25:58,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 20709376}
2022-05-12 22:25:58,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:25:59,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:25:59,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:25:59,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:25:59,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:25:59,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 2097152}
2022-05-12 22:25:59,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:00,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37224448}) to executor  for transfer request: 0.
2022-05-12 22:26:00,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:00,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) about to wait for the following futures []
2022-05-12 22:26:00,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37224448}) done waiting for dependent futures
2022-05-12 22:26:00,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37224448}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 37224448}
2022-05-12 22:26:00,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:00,667 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:26:00,667 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:00,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:26:00,667 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:26:00,667 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 28835840}
2022-05-12 22:26:00,668 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:01,261 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:26:01,261 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:01,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:26:01,261 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:26:01,261 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 13107200}
2022-05-12 22:26:01,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:01,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:26:01,920 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:01,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:26:01,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:26:01,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 29097984}
2022-05-12 22:26:01,921 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:02,319 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:26:02,319 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:02,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:26:02,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:26:02,320 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 4718592}
2022-05-12 22:26:02,320 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:02,578 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:26:02,578 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:02,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:26:02,579 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:26:02,579 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 12845056}
2022-05-12 22:26:02,579 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:03,445 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:26:03,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:03,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:26:03,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:26:03,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 27787264}
2022-05-12 22:26:03,447 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:04,240 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 62914560}) to executor  for transfer request: 0.
2022-05-12 22:26:04,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:04,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) about to wait for the following futures []
2022-05-12 22:26:04,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 62914560}) done waiting for dependent futures
2022-05-12 22:26:04,241 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 62914560}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 62914560}
2022-05-12 22:26:04,241 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:05,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45613056}) to executor  for transfer request: 0.
2022-05-12 22:26:05,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:05,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) about to wait for the following futures []
2022-05-12 22:26:05,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45613056}) done waiting for dependent futures
2022-05-12 22:26:05,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45613056}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 45613056}
2022-05-12 22:26:05,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:09,616 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:26:09,616 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:09,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:26:09,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:26:09,617 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 13107200}
2022-05-12 22:26:09,617 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,123 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:26:10,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:10,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:26:10,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:26:10,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 20971520}
2022-05-12 22:26:10,124 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:10,653 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 27787264}) to executor  for transfer request: 0.
2022-05-12 22:26:10,654 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:10,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) about to wait for the following futures []
2022-05-12 22:26:10,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 27787264}) done waiting for dependent futures
2022-05-12 22:26:10,654 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 27787264}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 27787264}
2022-05-12 22:26:10,654 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:11,247 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:26:11,247 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:11,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:26:11,247 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:26:11,248 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 29097984}
2022-05-12 22:26:11,248 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:11,368 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:26:11,368 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:11,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:26:11,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:26:11,368 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 20971520}
2022-05-12 22:26:11,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:12,341 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52166656}) to executor  for transfer request: 0.
2022-05-12 22:26:12,341 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:12,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) about to wait for the following futures []
2022-05-12 22:26:12,341 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52166656}) done waiting for dependent futures
2022-05-12 22:26:12,341 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52166656}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 52166656}
2022-05-12 22:26:12,342 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:13,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:26:13,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:13,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:26:13,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:26:13,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 29360128}
2022-05-12 22:26:13,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:15,458 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:26:15,458 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:15,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:26:15,459 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:26:15,459 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 4980736}
2022-05-12 22:26:15,459 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:16,626 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63176704}) to executor  for transfer request: 0.
2022-05-12 22:26:16,627 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:16,627 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) about to wait for the following futures []
2022-05-12 22:26:16,627 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63176704}) done waiting for dependent futures
2022-05-12 22:26:16,627 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63176704}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 63176704}
2022-05-12 22:26:16,628 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:17,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:17,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:17,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:17,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:17,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 13369344}
2022-05-12 22:26:17,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:17,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:26:17,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:17,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:26:17,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:26:17,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 11534336}
2022-05-12 22:26:17,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:18,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 69992448}) to executor  for transfer request: 0.
2022-05-12 22:26:18,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:18,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) about to wait for the following futures []
2022-05-12 22:26:18,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 69992448}) done waiting for dependent futures
2022-05-12 22:26:18,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 69992448}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 69992448}
2022-05-12 22:26:18,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:20,539 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 45875200}) to executor  for transfer request: 0.
2022-05-12 22:26:20,539 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:20,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) about to wait for the following futures []
2022-05-12 22:26:20,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 45875200}) done waiting for dependent futures
2022-05-12 22:26:20,540 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 45875200}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 45875200}
2022-05-12 22:26:20,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:21,046 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:26:21,046 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:21,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:26:21,046 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:26:21,047 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 3145728}
2022-05-12 22:26:21,047 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:21,460 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:26:21,460 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:21,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:26:21,461 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:26:21,461 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 13369344}
2022-05-12 22:26:21,461 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:25,528 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:26:25,528 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:25,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:26:25,528 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:26:25,528 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 21233664}
2022-05-12 22:26:25,529 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:26,121 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:26:26,121 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:26,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:26:26,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:26:26,122 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 29360128}
2022-05-12 22:26:26,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:27,226 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:26:27,226 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:27,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:26:27,226 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:26:27,227 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 28049408}
2022-05-12 22:26:27,227 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:28,324 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28049408}) to executor  for transfer request: 0.
2022-05-12 22:26:28,325 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:28,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) about to wait for the following futures []
2022-05-12 22:26:28,325 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28049408}) done waiting for dependent futures
2022-05-12 22:26:28,325 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28049408}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 28049408}
2022-05-12 22:26:28,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:28,364 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:26:28,365 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:28,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:26:28,365 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:26:28,365 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 21233664}
2022-05-12 22:26:28,366 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:28,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63438848}) to executor  for transfer request: 0.
2022-05-12 22:26:28,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:28,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) about to wait for the following futures []
2022-05-12 22:26:28,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63438848}) done waiting for dependent futures
2022-05-12 22:26:28,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63438848}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 63438848}
2022-05-12 22:26:28,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:28,859 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37486592}) to executor  for transfer request: 0.
2022-05-12 22:26:28,859 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:28,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) about to wait for the following futures []
2022-05-12 22:26:28,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37486592}) done waiting for dependent futures
2022-05-12 22:26:28,859 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37486592}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 37486592}
2022-05-12 22:26:28,860 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,252 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:26:31,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:26:31,253 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:26:31,253 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 29622272}
2022-05-12 22:26:31,254 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:31,613 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:31,614 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:31,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:31,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:31,614 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 13631488}
2022-05-12 22:26:31,615 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,018 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:26:32,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:26:32,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:26:32,019 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 5242880}
2022-05-12 22:26:32,020 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:26:32,252 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:26:32,252 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:26:32,252 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 13631488}
2022-05-12 22:26:32,253 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,347 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:26:32,347 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:26:32,347 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:26:32,347 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 2359296}
2022-05-12 22:26:32,347 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:32,443 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52428800}) to executor  for transfer request: 0.
2022-05-12 22:26:32,443 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:32,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) about to wait for the following futures []
2022-05-12 22:26:32,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52428800}) done waiting for dependent futures
2022-05-12 22:26:32,444 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52428800}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 52428800}
2022-05-12 22:26:32,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:35,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63700992}) to executor  for transfer request: 0.
2022-05-12 22:26:35,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:35,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) about to wait for the following futures []
2022-05-12 22:26:35,767 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63700992}) done waiting for dependent futures
2022-05-12 22:26:35,767 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63700992}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 63700992}
2022-05-12 22:26:35,768 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:35,945 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46137344}) to executor  for transfer request: 0.
2022-05-12 22:26:35,945 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:35,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) about to wait for the following futures []
2022-05-12 22:26:35,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46137344}) done waiting for dependent futures
2022-05-12 22:26:35,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46137344}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 46137344}
2022-05-12 22:26:35,946 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:40,640 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:26:40,640 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:40,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:26:40,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:26:40,641 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 21495808}
2022-05-12 22:26:40,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:41,115 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:41,115 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:41,115 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:41,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:41,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 13893632}
2022-05-12 22:26:41,116 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:42,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:26:42,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:42,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:26:42,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:26:42,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 21495808}
2022-05-12 22:26:42,602 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:43,152 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:26:43,152 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:43,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:26:43,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:26:43,153 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 11796480}
2022-05-12 22:26:43,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:43,656 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:26:43,656 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:43,656 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:26:43,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:26:43,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 29622272}
2022-05-12 22:26:43,657 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:43,798 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70254592}) to executor  for transfer request: 0.
2022-05-12 22:26:43,798 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:43,798 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) about to wait for the following futures []
2022-05-12 22:26:43,798 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70254592}) done waiting for dependent futures
2022-05-12 22:26:43,798 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70254592}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 70254592}
2022-05-12 22:26:43,799 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:43,863 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:26:43,863 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:43,863 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:26:43,864 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:26:43,864 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 29884416}
2022-05-12 22:26:43,864 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:44,874 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:26:44,874 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:44,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:26:44,874 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:26:44,874 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 13893632}
2022-05-12 22:26:44,875 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:44,954 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 63963136}) to executor  for transfer request: 0.
2022-05-12 22:26:44,954 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:44,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) about to wait for the following futures []
2022-05-12 22:26:44,955 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 63963136}) done waiting for dependent futures
2022-05-12 22:26:44,955 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 63963136}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 63963136}
2022-05-12 22:26:44,955 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:44,984 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:26:44,984 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:44,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:26:44,984 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:26:44,984 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 5505024}
2022-05-12 22:26:44,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:47,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:26:47,537 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:47,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:26:47,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:26:47,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 28311552}
2022-05-12 22:26:47,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:49,303 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:26:49,304 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:49,304 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:49,304 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:26:49,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:26:49,305 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 30146560}
2022-05-12 22:26:49,305 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:50,015 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46399488}) to executor  for transfer request: 0.
2022-05-12 22:26:50,015 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:50,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) about to wait for the following futures []
2022-05-12 22:26:50,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46399488}) done waiting for dependent futures
2022-05-12 22:26:50,016 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46399488}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 46399488}
2022-05-12 22:26:50,016 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:50,263 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:26:50,263 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:50,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:26:50,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:26:50,264 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 21757952}
2022-05-12 22:26:50,264 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:51,789 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:26:51,789 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:51,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:26:51,789 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:26:51,789 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 14155776}
2022-05-12 22:26:51,790 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:52,505 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28311552}) to executor  for transfer request: 0.
2022-05-12 22:26:52,506 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:52,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) about to wait for the following futures []
2022-05-12 22:26:52,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28311552}) done waiting for dependent futures
2022-05-12 22:26:52,506 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28311552}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 28311552}
2022-05-12 22:26:52,507 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:53,555 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 37748736}) to executor  for transfer request: 0.
2022-05-12 22:26:53,555 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:53,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) about to wait for the following futures []
2022-05-12 22:26:53,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 37748736}) done waiting for dependent futures
2022-05-12 22:26:53,556 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 37748736}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 37748736}
2022-05-12 22:26:53,556 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:53,657 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64225280}) to executor  for transfer request: 0.
2022-05-12 22:26:53,657 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:53,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) about to wait for the following futures []
2022-05-12 22:26:53,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64225280}) done waiting for dependent futures
2022-05-12 22:26:53,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64225280}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 64225280}
2022-05-12 22:26:53,658 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:54,608 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77070336}) to executor  for transfer request: 0.
2022-05-12 22:26:54,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:54,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) about to wait for the following futures []
2022-05-12 22:26:54,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77070336}) done waiting for dependent futures
2022-05-12 22:26:54,609 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77070336}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 77070336}
2022-05-12 22:26:54,610 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:55,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18612224}) to executor  for transfer request: 0.
2022-05-12 22:26:55,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:55,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) about to wait for the following futures []
2022-05-12 22:26:55,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18612224}) done waiting for dependent futures
2022-05-12 22:26:55,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18612224}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 18612224}
2022-05-12 22:26:55,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:55,339 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:26:55,340 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:55,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:26:55,340 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:26:55,340 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 14155776}
2022-05-12 22:26:55,341 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:55,783 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:26:55,784 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:55,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:26:55,784 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:26:55,784 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 29884416}
2022-05-12 22:26:55,785 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:56,466 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:26:56,466 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:56,467 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:26:56,467 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:26:56,467 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 21757952}
2022-05-12 22:26:56,467 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:58,179 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52690944}) to executor  for transfer request: 0.
2022-05-12 22:26:58,179 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:58,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) about to wait for the following futures []
2022-05-12 22:26:58,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52690944}) done waiting for dependent futures
2022-05-12 22:26:58,179 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52690944}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 52690944}
2022-05-12 22:26:58,180 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:26:59,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:26:59,470 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:26:59,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:26:59,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:26:59,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 5767168}
2022-05-12 22:26:59,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:00,130 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 1835008}) to executor  for transfer request: 0.
2022-05-12 22:27:00,130 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:00,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) about to wait for the following futures []
2022-05-12 22:27:00,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 1835008}) done waiting for dependent futures
2022-05-12 22:27:00,131 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 1835008}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 1835008}
2022-05-12 22:27:00,131 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:00,446 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:27:00,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:00,446 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:00,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:27:00,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:27:00,447 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 30146560}
2022-05-12 22:27:00,447 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:00,913 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64487424}) to executor  for transfer request: 0.
2022-05-12 22:27:00,914 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:00,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) about to wait for the following futures []
2022-05-12 22:27:00,914 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64487424}) done waiting for dependent futures
2022-05-12 22:27:00,914 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64487424}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 64487424}
2022-05-12 22:27:00,915 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,747 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:27:01,747 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,747 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:27:01,748 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:27:01,748 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 14417920}
2022-05-12 22:27:01,748 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:01,893 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:27:01,893 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:01,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:27:01,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:27:01,894 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 3407872}
2022-05-12 22:27:01,895 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:02,337 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:27:02,337 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:02,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:27:02,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:27:02,338 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 28573696}
2022-05-12 22:27:02,338 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:03,464 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:27:03,464 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:03,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:27:03,465 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:27:03,465 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 12058624}
2022-05-12 22:27:03,465 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:03,765 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77332480}) to executor  for transfer request: 0.
2022-05-12 22:27:03,765 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:03,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) about to wait for the following futures []
2022-05-12 22:27:03,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77332480}) done waiting for dependent futures
2022-05-12 22:27:03,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77332480}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 77332480}
2022-05-12 22:27:03,766 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:04,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:27:04,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:04,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:27:04,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:27:04,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 22020096}
2022-05-12 22:27:04,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:05,188 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:27:05,189 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:05,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:27:05,189 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:27:05,189 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 14417920}
2022-05-12 22:27:05,190 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:05,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46661632}) to executor  for transfer request: 0.
2022-05-12 22:27:05,289 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:05,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) about to wait for the following futures []
2022-05-12 22:27:05,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46661632}) done waiting for dependent futures
2022-05-12 22:27:05,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46661632}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 46661632}
2022-05-12 22:27:05,290 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:10,808 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 18874368}) to executor  for transfer request: 0.
2022-05-12 22:27:10,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:10,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) about to wait for the following futures []
2022-05-12 22:27:10,809 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 18874368}) done waiting for dependent futures
2022-05-12 22:27:10,809 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 18874368}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 18874368}
2022-05-12 22:27:10,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:10,851 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:27:10,851 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:10,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:27:10,851 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:27:10,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 14680064}
2022-05-12 22:27:10,852 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:12,570 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 64749568}) to executor  for transfer request: 0.
2022-05-12 22:27:12,570 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:12,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) about to wait for the following futures []
2022-05-12 22:27:12,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 64749568}) done waiting for dependent futures
2022-05-12 22:27:12,571 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 64749568}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 64749568}
2022-05-12 22:27:12,571 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,038 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:27:14,038 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:14,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:27:14,039 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:27:14,039 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 22282240}
2022-05-12 22:27:14,039 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:14,649 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:27:14,649 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:14,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:27:14,649 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:27:14,649 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 6029312}
2022-05-12 22:27:14,650 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:15,431 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 52953088}) to executor  for transfer request: 0.
2022-05-12 22:27:15,431 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:15,431 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) about to wait for the following futures []
2022-05-12 22:27:15,431 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 52953088}) done waiting for dependent futures
2022-05-12 22:27:15,431 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 52953088}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 52953088}
2022-05-12 22:27:15,431 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:15,894 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70516736}) to executor  for transfer request: 0.
2022-05-12 22:27:15,894 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:15,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) about to wait for the following futures []
2022-05-12 22:27:15,895 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70516736}) done waiting for dependent futures
2022-05-12 22:27:15,895 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70516736}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 70516736}
2022-05-12 22:27:15,895 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:27:16,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:27:16,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:27:16,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 14680064}
2022-05-12 22:27:16,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,312 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:27:16,312 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:27:16,313 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:27:16,313 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 28835840}
2022-05-12 22:27:16,313 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:16,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:27:16,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:16,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:27:16,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:27:16,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 3670016}
2022-05-12 22:27:16,946 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,824 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:27:17,824 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:27:17,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:27:17,824 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 14942208}
2022-05-12 22:27:17,825 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,835 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 46923776}) to executor  for transfer request: 0.
2022-05-12 22:27:17,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) about to wait for the following futures []
2022-05-12 22:27:17,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 46923776}) done waiting for dependent futures
2022-05-12 22:27:17,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 46923776}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 46923776}
2022-05-12 22:27:17,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:17,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:27:17,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:17,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:27:17,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:27:17,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 22020096}
2022-05-12 22:27:17,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:18,529 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9699328}) to executor  for transfer request: 0.
2022-05-12 22:27:18,529 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:18,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) about to wait for the following futures []
2022-05-12 22:27:18,529 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9699328}) done waiting for dependent futures
2022-05-12 22:27:18,529 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9699328}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 9699328}
2022-05-12 22:27:18,530 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:18,979 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77594624}) to executor  for transfer request: 0.
2022-05-12 22:27:18,979 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:18,980 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) about to wait for the following futures []
2022-05-12 22:27:18,980 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77594624}) done waiting for dependent futures
2022-05-12 22:27:18,980 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77594624}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 77594624}
2022-05-12 22:27:18,980 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:19,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2097152}) to executor  for transfer request: 0.
2022-05-12 22:27:19,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:19,495 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) about to wait for the following futures []
2022-05-12 22:27:19,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2097152}) done waiting for dependent futures
2022-05-12 22:27:19,496 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2097152}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 2097152}
2022-05-12 22:27:19,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:20,279 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:27:20,279 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:20,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:27:20,280 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:27:20,280 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 19136512}
2022-05-12 22:27:20,280 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:23,541 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38010880}) to executor  for transfer request: 0.
2022-05-12 22:27:23,541 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:23,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) about to wait for the following futures []
2022-05-12 22:27:23,541 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38010880}) done waiting for dependent futures
2022-05-12 22:27:23,541 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38010880}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 38010880}
2022-05-12 22:27:23,542 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28573696}) to executor  for transfer request: 0.
2022-05-12 22:27:24,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:24,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) about to wait for the following futures []
2022-05-12 22:27:24,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28573696}) done waiting for dependent futures
2022-05-12 22:27:24,331 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28573696}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 28573696}
2022-05-12 22:27:24,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,580 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:27:24,580 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:24,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:27:24,581 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:27:24,581 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 22544384}
2022-05-12 22:27:24,582 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:24,885 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65011712}) to executor  for transfer request: 0.
2022-05-12 22:27:24,885 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:24,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) about to wait for the following futures []
2022-05-12 22:27:24,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65011712}) done waiting for dependent futures
2022-05-12 22:27:24,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65011712}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 65011712}
2022-05-12 22:27:24,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:27,926 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:27:27,926 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:27,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:27:27,926 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:27:27,926 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 15204352}
2022-05-12 22:27:27,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:28,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:27:28,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:28,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:27:28,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:27:28,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 6291456}
2022-05-12 22:27:28,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:29,317 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:27:29,317 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:29,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:27:29,318 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:27:29,318 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 29097984}
2022-05-12 22:27:29,318 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:29,648 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:27:29,648 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:29,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:27:29,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:27:29,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 2621440}
2022-05-12 22:27:29,649 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:30,493 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47185920}) to executor  for transfer request: 0.
2022-05-12 22:27:30,493 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:30,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) about to wait for the following futures []
2022-05-12 22:27:30,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47185920}) done waiting for dependent futures
2022-05-12 22:27:30,494 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47185920}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 47185920}
2022-05-12 22:27:30,494 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:32,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:27:32,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:32,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:27:32,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:27:32,140 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 12320768}
2022-05-12 22:27:32,141 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:32,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 77856768}) to executor  for transfer request: 0.
2022-05-12 22:27:32,509 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:32,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) about to wait for the following futures []
2022-05-12 22:27:32,509 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 77856768}) done waiting for dependent futures
2022-05-12 22:27:32,509 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 77856768}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 77856768}
2022-05-12 22:27:32,510 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:33,789 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19136512}) to executor  for transfer request: 0.
2022-05-12 22:27:33,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:33,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) about to wait for the following futures []
2022-05-12 22:27:33,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19136512}) done waiting for dependent futures
2022-05-12 22:27:33,790 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19136512}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 19136512}
2022-05-12 22:27:33,791 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:34,510 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2359296}) to executor  for transfer request: 0.
2022-05-12 22:27:34,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:34,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) about to wait for the following futures []
2022-05-12 22:27:34,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2359296}) done waiting for dependent futures
2022-05-12 22:27:34,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2359296}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 2359296}
2022-05-12 22:27:34,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:35,615 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:27:35,615 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:35,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:27:35,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:27:35,616 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 3932160}
2022-05-12 22:27:35,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:36,056 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:27:36,056 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:36,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:27:36,056 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:27:36,056 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 15466496}
2022-05-12 22:27:36,056 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:36,477 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:27:36,477 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:36,477 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:27:36,478 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:27:36,478 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 22282240}
2022-05-12 22:27:36,478 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:36,786 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53215232}) to executor  for transfer request: 0.
2022-05-12 22:27:36,786 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:36,786 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) about to wait for the following futures []
2022-05-12 22:27:36,787 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53215232}) done waiting for dependent futures
2022-05-12 22:27:36,787 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53215232}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 53215232}
2022-05-12 22:27:36,787 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:37,820 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:27:37,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:37,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:27:37,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:27:37,821 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 22806528}
2022-05-12 22:27:37,821 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:38,148 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:27:38,148 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:38,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:27:38,149 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:27:38,149 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 19398656}
2022-05-12 22:27:38,150 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:38,177 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 70778880}) to executor  for transfer request: 0.
2022-05-12 22:27:38,178 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:38,178 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) about to wait for the following futures []
2022-05-12 22:27:38,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 70778880}) done waiting for dependent futures
2022-05-12 22:27:38,179 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 70778880}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 70778880}
2022-05-12 22:27:38,179 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:39,961 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47448064}) to executor  for transfer request: 0.
2022-05-12 22:27:39,962 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:39,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) about to wait for the following futures []
2022-05-12 22:27:39,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47448064}) done waiting for dependent futures
2022-05-12 22:27:39,962 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47448064}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 47448064}
2022-05-12 22:27:39,962 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,130 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65273856}) to executor  for transfer request: 0.
2022-05-12 22:27:40,130 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) about to wait for the following futures []
2022-05-12 22:27:40,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65273856}) done waiting for dependent futures
2022-05-12 22:27:40,130 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65273856}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 65273856}
2022-05-12 22:27:40,131 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:40,506 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:27:40,506 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:40,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:27:40,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:27:40,507 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 14942208}
2022-05-12 22:27:40,507 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:41,696 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 28835840}) to executor  for transfer request: 0.
2022-05-12 22:27:41,696 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:41,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) about to wait for the following futures []
2022-05-12 22:27:41,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 28835840}) done waiting for dependent futures
2022-05-12 22:27:41,696 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 28835840}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 28835840}
2022-05-12 22:27:41,697 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:42,401 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:27:42,401 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:42,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:27:42,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:27:42,402 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 15728640}
2022-05-12 22:27:42,402 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:43,482 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:27:43,482 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:43,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:27:43,483 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:27:43,483 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 6553600}
2022-05-12 22:27:43,483 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:44,432 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:27:44,432 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:44,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:27:44,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:27:44,433 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 29360128}
2022-05-12 22:27:44,433 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:45,609 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78118912}) to executor  for transfer request: 0.
2022-05-12 22:27:45,609 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:45,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) about to wait for the following futures []
2022-05-12 22:27:45,609 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78118912}) done waiting for dependent futures
2022-05-12 22:27:45,609 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78118912}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 78118912}
2022-05-12 22:27:45,609 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:46,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:27:46,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:46,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:27:46,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:27:46,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 23068672}
2022-05-12 22:27:46,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:46,582 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38273024}) to executor  for transfer request: 0.
2022-05-12 22:27:46,582 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:46,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) about to wait for the following futures []
2022-05-12 22:27:46,583 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38273024}) done waiting for dependent futures
2022-05-12 22:27:46,583 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38273024}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 38273024}
2022-05-12 22:27:46,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:49,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2621440}) to executor  for transfer request: 0.
2022-05-12 22:27:49,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:49,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) about to wait for the following futures []
2022-05-12 22:27:49,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2621440}) done waiting for dependent futures
2022-05-12 22:27:49,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2621440}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 2621440}
2022-05-12 22:27:49,879 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:51,250 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:27:51,250 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:51,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:27:51,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:27:51,250 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 22544384}
2022-05-12 22:27:51,251 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:52,060 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:27:52,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:52,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:27:52,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:27:52,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 15990784}
2022-05-12 22:27:52,061 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:53,761 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47710208}) to executor  for transfer request: 0.
2022-05-12 22:27:53,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:53,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) about to wait for the following futures []
2022-05-12 22:27:53,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47710208}) done waiting for dependent futures
2022-05-12 22:27:53,762 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47710208}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 47710208}
2022-05-12 22:27:53,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:54,179 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:27:54,179 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:54,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:27:54,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:27:54,179 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 23330816}
2022-05-12 22:27:54,180 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:55,449 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53477376}) to executor  for transfer request: 0.
2022-05-12 22:27:55,449 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:55,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) about to wait for the following futures []
2022-05-12 22:27:55,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53477376}) done waiting for dependent futures
2022-05-12 22:27:55,450 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53477376}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 53477376}
2022-05-12 22:27:55,451 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:57,282 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:27:57,282 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:57,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:27:57,282 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:27:57,282 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 6815744}
2022-05-12 22:27:57,283 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:27:59,292 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:27:59,292 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:27:59,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:27:59,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:27:59,292 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 4194304}
2022-05-12 22:27:59,292 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:00,411 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:28:00,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:00,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:28:00,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:28:00,412 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 12582912}
2022-05-12 22:28:00,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:01,736 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:28:01,736 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:01,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:28:01,736 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:28:01,737 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 22806528}
2022-05-12 22:28:01,737 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:02,694 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:28:02,694 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:02,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:28:02,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:28:02,695 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 15204352}
2022-05-12 22:28:02,695 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:03,773 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:28:03,773 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:03,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:28:03,774 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:28:03,774 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 19660800}
2022-05-12 22:28:03,774 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:03,787 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:28:03,788 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:03,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:28:03,788 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:28:03,788 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 16252928}
2022-05-12 22:28:03,789 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:04,248 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78381056}) to executor  for transfer request: 0.
2022-05-12 22:28:04,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:04,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) about to wait for the following futures []
2022-05-12 22:28:04,249 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78381056}) done waiting for dependent futures
2022-05-12 22:28:04,249 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78381056}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 78381056}
2022-05-12 22:28:04,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:04,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:28:04,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:04,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:28:04,391 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:28:04,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 29622272}
2022-05-12 22:28:04,392 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:05,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:28:05,297 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:05,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:28:05,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:28:05,298 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 2883584}
2022-05-12 22:28:05,298 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:06,277 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:28:06,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:06,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:28:06,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:28:06,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 23592960}
2022-05-12 22:28:06,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:06,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65536000}) to executor  for transfer request: 0.
2022-05-12 22:28:06,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:06,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) about to wait for the following futures []
2022-05-12 22:28:06,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65536000}) done waiting for dependent futures
2022-05-12 22:28:06,418 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65536000}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 65536000}
2022-05-12 22:28:06,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,007 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 47972352}) to executor  for transfer request: 0.
2022-05-12 22:28:08,007 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:08,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) about to wait for the following futures []
2022-05-12 22:28:08,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 47972352}) done waiting for dependent futures
2022-05-12 22:28:08,007 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 47972352}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 47972352}
2022-05-12 22:28:08,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:08,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38535168}) to executor  for transfer request: 0.
2022-05-12 22:28:08,584 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:08,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) about to wait for the following futures []
2022-05-12 22:28:08,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38535168}) done waiting for dependent futures
2022-05-12 22:28:08,584 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38535168}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 38535168}
2022-05-12 22:28:08,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:10,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 53739520}) to executor  for transfer request: 0.
2022-05-12 22:28:10,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:10,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) about to wait for the following futures []
2022-05-12 22:28:10,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 53739520}) done waiting for dependent futures
2022-05-12 22:28:10,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 53739520}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 53739520}
2022-05-12 22:28:10,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:28:12,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:12,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:12,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:28:12,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:28:12,389 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 16515072}
2022-05-12 22:28:12,390 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:14,272 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71041024}) to executor  for transfer request: 0.
2022-05-12 22:28:14,272 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:14,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) about to wait for the following futures []
2022-05-12 22:28:14,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71041024}) done waiting for dependent futures
2022-05-12 22:28:14,273 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71041024}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 71041024}
2022-05-12 22:28:14,274 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:14,601 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:28:14,602 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:14,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:28:14,602 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:28:14,602 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 7077888}
2022-05-12 22:28:14,603 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,013 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:28:16,013 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:28:16,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:28:16,014 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 23068672}
2022-05-12 22:28:16,014 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:16,880 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:28:16,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:16,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:28:16,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:28:16,881 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 23855104}
2022-05-12 22:28:16,881 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:18,475 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 2883584}) to executor  for transfer request: 0.
2022-05-12 22:28:18,475 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:18,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) about to wait for the following futures []
2022-05-12 22:28:18,475 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 2883584}) done waiting for dependent futures
2022-05-12 22:28:18,475 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 2883584}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 2883584}
2022-05-12 22:28:18,476 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:19,511 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:28:19,511 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:19,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:28:19,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:28:19,512 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 3145728}
2022-05-12 22:28:19,512 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:20,958 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:28:20,958 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:20,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:28:20,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:28:20,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 19922944}
2022-05-12 22:28:20,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:21,291 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:28:21,292 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:21,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:28:21,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:28:21,292 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 29884416}
2022-05-12 22:28:21,293 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,350 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 65798144}) to executor  for transfer request: 0.
2022-05-12 22:28:22,351 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:22,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) about to wait for the following futures []
2022-05-12 22:28:22,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 65798144}) done waiting for dependent futures
2022-05-12 22:28:22,351 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 65798144}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 65798144}
2022-05-12 22:28:22,352 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:28:22,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:22,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:28:22,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:28:22,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 12845056}
2022-05-12 22:28:22,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:22,695 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48234496}) to executor  for transfer request: 0.
2022-05-12 22:28:22,695 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:22,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) about to wait for the following futures []
2022-05-12 22:28:22,695 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48234496}) done waiting for dependent futures
2022-05-12 22:28:22,695 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48234496}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 48234496}
2022-05-12 22:28:22,696 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:23,255 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:28:23,255 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:23,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:28:23,255 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:28:23,255 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 4456448}
2022-05-12 22:28:23,256 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,030 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:28:25,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:28:25,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:28:25,031 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 15466496}
2022-05-12 22:28:25,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:25,480 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:28:25,481 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:25,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:28:25,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:28:25,481 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 23330816}
2022-05-12 22:28:25,482 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:27,470 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 38797312}) to executor  for transfer request: 0.
2022-05-12 22:28:27,470 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:27,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) about to wait for the following futures []
2022-05-12 22:28:27,471 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 38797312}) done waiting for dependent futures
2022-05-12 22:28:27,471 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 38797312}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 38797312}
2022-05-12 22:28:27,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:27,835 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:28:27,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:27,836 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:28:27,836 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:28:27,836 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 7340032}
2022-05-12 22:28:27,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:27,871 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54001664}) to executor  for transfer request: 0.
2022-05-12 22:28:27,871 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:27,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) about to wait for the following futures []
2022-05-12 22:28:27,871 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54001664}) done waiting for dependent futures
2022-05-12 22:28:27,872 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54001664}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 54001664}
2022-05-12 22:28:27,872 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:28,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:28:28,413 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:28,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:28:28,413 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:28:28,414 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 24117248}
2022-05-12 22:28:28,414 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:31,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78643200}) to executor  for transfer request: 0.
2022-05-12 22:28:31,968 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:31,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) about to wait for the following futures []
2022-05-12 22:28:31,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78643200}) done waiting for dependent futures
2022-05-12 22:28:31,968 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78643200}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 78643200}
2022-05-12 22:28:31,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,199 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:28:34,200 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:28:34,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:28:34,201 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 23592960}
2022-05-12 22:28:34,201 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:34,927 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:28:34,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:34,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:28:34,928 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:28:34,928 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 20185088}
2022-05-12 22:28:34,929 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:35,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:28:35,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:35,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:28:35,887 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:28:35,887 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 24379392}
2022-05-12 22:28:35,887 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:36,946 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66060288}) to executor  for transfer request: 0.
2022-05-12 22:28:36,946 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:36,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) about to wait for the following futures []
2022-05-12 22:28:36,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66060288}) done waiting for dependent futures
2022-05-12 22:28:36,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66060288}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 66060288}
2022-05-12 22:28:36,947 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:37,817 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71303168}) to executor  for transfer request: 0.
2022-05-12 22:28:37,817 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:37,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) about to wait for the following futures []
2022-05-12 22:28:37,818 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71303168}) done waiting for dependent futures
2022-05-12 22:28:37,818 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71303168}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 71303168}
2022-05-12 22:28:37,818 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:38,368 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:28:38,368 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:38,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:28:38,369 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:28:38,369 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 30146560}
2022-05-12 22:28:38,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:41,576 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:28:41,576 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:41,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:28:41,577 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:28:41,577 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 7602176}
2022-05-12 22:28:41,577 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:42,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:28:42,147 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:42,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:28:42,148 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:28:42,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 4718592}
2022-05-12 22:28:42,149 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:42,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29097984}) to executor  for transfer request: 0.
2022-05-12 22:28:42,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:42,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) about to wait for the following futures []
2022-05-12 22:28:42,374 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29097984}) done waiting for dependent futures
2022-05-12 22:28:42,374 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29097984}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 29097984}
2022-05-12 22:28:42,375 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:43,036 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:28:43,037 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:43,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:28:43,037 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:28:43,037 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 24641536}
2022-05-12 22:28:43,038 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:43,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48496640}) to executor  for transfer request: 0.
2022-05-12 22:28:43,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:43,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) about to wait for the following futures []
2022-05-12 22:28:43,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48496640}) done waiting for dependent futures
2022-05-12 22:28:43,682 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48496640}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 48496640}
2022-05-12 22:28:43,682 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,121 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:28:44,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:28:44,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:28:44,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 3407872}
2022-05-12 22:28:44,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:44,759 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:28:44,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:44,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:28:44,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:28:44,760 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 15728640}
2022-05-12 22:28:44,760 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:45,485 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54263808}) to executor  for transfer request: 0.
2022-05-12 22:28:45,486 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:45,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) about to wait for the following futures []
2022-05-12 22:28:45,486 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54263808}) done waiting for dependent futures
2022-05-12 22:28:45,486 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54263808}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 54263808}
2022-05-12 22:28:45,486 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:46,144 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:28:46,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:46,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:28:46,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:28:46,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 23855104}
2022-05-12 22:28:46,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:46,828 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:28:46,828 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:46,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:28:46,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:28:46,829 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 13107200}
2022-05-12 22:28:46,829 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:47,116 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:28:47,117 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:47,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:28:47,117 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:28:47,117 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 7864320}
2022-05-12 22:28:47,118 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 78905344}) to executor  for transfer request: 0.
2022-05-12 22:28:48,026 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:48,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) about to wait for the following futures []
2022-05-12 22:28:48,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 78905344}) done waiting for dependent futures
2022-05-12 22:28:48,027 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 78905344}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 78905344}
2022-05-12 22:28:48,027 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:48,127 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:28:48,128 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:48,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:28:48,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:28:48,128 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 20447232}
2022-05-12 22:28:48,129 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:51,272 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:28:51,272 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:51,272 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:51,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:28:51,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:28:51,273 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 24903680}
2022-05-12 22:28:51,273 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:51,570 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30408704}) to executor  for transfer request: 0.
2022-05-12 22:28:51,570 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:51,571 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) about to wait for the following futures []
2022-05-12 22:28:51,571 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30408704}) done waiting for dependent futures
2022-05-12 22:28:51,571 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30408704}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 30408704}
2022-05-12 22:28:51,571 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:51,987 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66322432}) to executor  for transfer request: 0.
2022-05-12 22:28:51,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:51,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) about to wait for the following futures []
2022-05-12 22:28:51,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66322432}) done waiting for dependent futures
2022-05-12 22:28:51,988 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66322432}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 66322432}
2022-05-12 22:28:51,988 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,722 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:28:57,722 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:28:57,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:28:57,723 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 24117248}
2022-05-12 22:28:57,723 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,944 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71565312}) to executor  for transfer request: 0.
2022-05-12 22:28:57,944 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,944 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) about to wait for the following futures []
2022-05-12 22:28:57,945 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71565312}) done waiting for dependent futures
2022-05-12 22:28:57,945 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71565312}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 71565312}
2022-05-12 22:28:57,945 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:28:57,970 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39059456}) to executor  for transfer request: 0.
2022-05-12 22:28:57,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:28:57,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) about to wait for the following futures []
2022-05-12 22:28:57,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39059456}) done waiting for dependent futures
2022-05-12 22:28:57,971 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39059456}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 39059456}
2022-05-12 22:28:57,971 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:00,262 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:29:00,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:00,262 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:00,262 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) about to wait for the following futures []
2022-05-12 22:29:00,262 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) done waiting for dependent futures
2022-05-12 22:29:00,262 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=83886080-92274687'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=83886080-92274687'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 83886080, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:00,262 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:00,262 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:00,262 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:00,263 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:00,263 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=83886080-92274687', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:00,263 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:00,263 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:29:00,263 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:29:00,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:29:00,264 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:00,264 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:29:00,264 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=83886080-92274687
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222900Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:00,264 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 8126464}
2022-05-12 22:29:00,264 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222900Z
20220512/eu-central-1/s3/aws4_request
f284dfc1696fc010f2623109668ea1115483363e829655ea9aff57a8268f4688
2022-05-12 22:29:00,264 botocore.auth DEBUG    Signature:
99db5bfa7ff8b732e5a9e941fb83d401fd86fc32cb15205f491c3f79e48becb0
2022-05-12 22:29:00,264 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:00,264 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:00,265 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:00,265 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:00,265 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:00,265 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:29:00,751 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:29:00,751 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:00,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:29:00,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:29:00,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 3670016}
2022-05-12 22:29:00,752 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:01,200 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54525952}) to executor  for transfer request: 0.
2022-05-12 22:29:01,201 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:01,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) about to wait for the following futures []
2022-05-12 22:29:01,201 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54525952}) done waiting for dependent futures
2022-05-12 22:29:01,201 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54525952}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 54525952}
2022-05-12 22:29:01,201 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:02,153 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:02,154 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'B2lMMORboymdT7SggAof+rxz071wrdqM+X22Ui8Fix95o3q/h/ILrtM8S6oI0NGyVy692Z11CgA=', 'x-amz-request-id': 'JZSZE85ATVJQ3CK6', 'Date': 'Thu, 12 May 2022 22:29:02 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 83886080-92274687/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:29:02,154 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:02,155 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:02,155 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:02,155 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:03,210 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:29:03,210 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:03,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:29:03,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:29:03,211 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 4980736}
2022-05-12 22:29:03,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:03,663 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:29:03,664 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:03,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:29:03,664 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:29:03,664 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 20709376}
2022-05-12 22:29:03,664 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:06,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:29:06,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:06,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:29:06,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:29:06,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 24379392}
2022-05-12 22:29:06,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:29:07,011 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:29:07,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:29:07,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 13369344}
2022-05-12 22:29:07,012 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,191 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66584576}) to executor  for transfer request: 0.
2022-05-12 22:29:07,191 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) about to wait for the following futures []
2022-05-12 22:29:07,192 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66584576}) done waiting for dependent futures
2022-05-12 22:29:07,192 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66584576}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 66584576}
2022-05-12 22:29:07,192 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:29:07,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:29:07,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:29:07,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 15990784}
2022-05-12 22:29:07,428 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:07,889 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30670848}) to executor  for transfer request: 0.
2022-05-12 22:29:07,889 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:07,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) about to wait for the following futures []
2022-05-12 22:29:07,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30670848}) done waiting for dependent futures
2022-05-12 22:29:07,890 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30670848}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 30670848}
2022-05-12 22:29:07,891 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,266 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3145728}) to executor  for transfer request: 0.
2022-05-12 22:29:09,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) about to wait for the following futures []
2022-05-12 22:29:09,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3145728}) done waiting for dependent futures
2022-05-12 22:29:09,267 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3145728}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 3145728}
2022-05-12 22:29:09,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 48758784}) to executor  for transfer request: 0.
2022-05-12 22:29:09,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) about to wait for the following futures []
2022-05-12 22:29:09,388 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 48758784}) done waiting for dependent futures
2022-05-12 22:29:09,388 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 48758784}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 48758784}
2022-05-12 22:29:09,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:09,487 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83886080}) to executor  for transfer request: 0.
2022-05-12 22:29:09,487 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:09,487 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) about to wait for the following futures []
2022-05-12 22:29:09,487 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83886080}) done waiting for dependent futures
2022-05-12 22:29:09,487 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83886080}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 83886080}
2022-05-12 22:29:09,488 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,215 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39321600}) to executor  for transfer request: 0.
2022-05-12 22:29:14,215 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) about to wait for the following futures []
2022-05-12 22:29:14,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39321600}) done waiting for dependent futures
2022-05-12 22:29:14,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39321600}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 39321600}
2022-05-12 22:29:14,216 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:14,674 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 54788096}) to executor  for transfer request: 0.
2022-05-12 22:29:14,675 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:14,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) about to wait for the following futures []
2022-05-12 22:29:14,675 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 54788096}) done waiting for dependent futures
2022-05-12 22:29:14,675 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 54788096}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 54788096}
2022-05-12 22:29:14,676 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:17,001 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 71827456}) to executor  for transfer request: 0.
2022-05-12 22:29:17,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:17,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) about to wait for the following futures []
2022-05-12 22:29:17,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 71827456}) done waiting for dependent futures
2022-05-12 22:29:17,002 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 71827456}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 71827456}
2022-05-12 22:29:17,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:17,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84148224}) to executor  for transfer request: 0.
2022-05-12 22:29:17,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:17,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) about to wait for the following futures []
2022-05-12 22:29:17,100 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84148224}) done waiting for dependent futures
2022-05-12 22:29:17,100 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84148224}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 84148224}
2022-05-12 22:29:17,100 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:17,399 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:29:17,400 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:17,400 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:29:17,401 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:29:17,401 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 3932160}
2022-05-12 22:29:17,401 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:17,860 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:29:17,860 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:17,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:29:17,861 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:29:17,861 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 20971520}
2022-05-12 22:29:17,861 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:18,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:29:18,796 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:18,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:29:18,796 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:29:18,796 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 24641536}
2022-05-12 22:29:18,796 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,182 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 66846720}) to executor  for transfer request: 0.
2022-05-12 22:29:21,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:21,182 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,182 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) about to wait for the following futures []
2022-05-12 22:29:21,182 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) done waiting for dependent futures
2022-05-12 22:29:21,182 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=92274688-100663295'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=92274688-100663295'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 92274688, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:29:21,182 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:21,182 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) about to wait for the following futures []
2022-05-12 22:29:21,182 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:21,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 66846720}) done waiting for dependent futures
2022-05-12 22:29:21,183 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 66846720}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 66846720}
2022-05-12 22:29:21,183 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:21,183 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:29:21,183 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,183 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:29:21,183 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:21,184 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:29:21,184 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:29:21,184 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:21,184 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:29:21,184 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=92274688-100663295', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:29:21,184 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:21,184 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:29:21,184 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:21,184 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:29:21,184 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:29:21,184 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:29:21,184 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:29:21,184 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:29:21,184 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:29:21,184 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=92274688-100663295
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T222921Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:29:21,185 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T222921Z
20220512/eu-central-1/s3/aws4_request
05f18681c6b5ae287e9a615c636e5e9c23db9d250348e31da1aa744f1e95de78
2022-05-12 22:29:21,185 botocore.auth DEBUG    Signature:
1936da6917ae892ed88613a75afc1fa8042cb245e6b1e4e46d605555139f1c9f
2022-05-12 22:29:21,185 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:21,185 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:29:21,185 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:29:21,185 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:29:21,567 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79167488}) to executor  for transfer request: 0.
2022-05-12 22:29:21,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:21,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) about to wait for the following futures []
2022-05-12 22:29:21,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79167488}) done waiting for dependent futures
2022-05-12 22:29:21,568 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79167488}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 79167488}
2022-05-12 22:29:21,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:21,680 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:29:21,681 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'gtt3K8Z7p9X9kJRhrEn5Vxs2FhpD4wT14VCsvNjFUaRdhhvu1gV/+HIB2yd7VRncKpMzpI5r+3A=', 'x-amz-request-id': '61TXYJ61Y2KQ87Q9', 'Date': 'Thu, 12 May 2022 22:29:22 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 92274688-100663295/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:29:21,681 botocore.parsers DEBUG    Response body:

2022-05-12 22:29:21,682 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:29:21,682 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:29:21,682 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:29:22,607 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:29:22,607 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:22,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:29:22,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:29:22,608 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 13631488}
2022-05-12 22:29:22,608 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:23,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:29:23,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:23,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:29:23,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:29:23,569 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 5242880}
2022-05-12 22:29:23,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:25,005 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84410368}) to executor  for transfer request: 0.
2022-05-12 22:29:25,005 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:25,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) about to wait for the following futures []
2022-05-12 22:29:25,006 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84410368}) done waiting for dependent futures
2022-05-12 22:29:25,006 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84410368}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 84410368}
2022-05-12 22:29:25,006 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,129 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:29:27,129 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:27,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:29:27,130 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:29:27,130 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 16252928}
2022-05-12 22:29:27,130 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:27,778 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55050240}) to executor  for transfer request: 0.
2022-05-12 22:29:27,778 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:27,779 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) about to wait for the following futures []
2022-05-12 22:29:27,779 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55050240}) done waiting for dependent futures
2022-05-12 22:29:27,779 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55050240}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 55050240}
2022-05-12 22:29:27,779 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:30,380 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49020928}) to executor  for transfer request: 0.
2022-05-12 22:29:30,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:30,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) about to wait for the following futures []
2022-05-12 22:29:30,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49020928}) done waiting for dependent futures
2022-05-12 22:29:30,381 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49020928}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 49020928}
2022-05-12 22:29:30,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:30,604 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72089600}) to executor  for transfer request: 0.
2022-05-12 22:29:30,604 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:30,605 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) about to wait for the following futures []
2022-05-12 22:29:30,605 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72089600}) done waiting for dependent futures
2022-05-12 22:29:30,605 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72089600}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 72089600}
2022-05-12 22:29:30,605 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:31,352 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:29:31,352 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:31,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:29:31,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:29:31,353 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 4194304}
2022-05-12 22:29:31,353 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:31,472 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:29:31,472 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:31,472 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:31,472 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:29:31,473 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:29:31,473 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 24903680}
2022-05-12 22:29:31,473 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:32,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39583744}) to executor  for transfer request: 0.
2022-05-12 22:29:32,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:32,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) about to wait for the following futures []
2022-05-12 22:29:32,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39583744}) done waiting for dependent futures
2022-05-12 22:29:32,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39583744}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 39583744}
2022-05-12 22:29:32,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:32,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84672512}) to executor  for transfer request: 0.
2022-05-12 22:29:32,512 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:32,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) about to wait for the following futures []
2022-05-12 22:29:32,512 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84672512}) done waiting for dependent futures
2022-05-12 22:29:32,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84672512}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 84672512}
2022-05-12 22:29:32,513 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:35,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:29:35,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:35,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:29:35,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:29:35,816 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 21233664}
2022-05-12 22:29:35,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:36,457 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:29:36,457 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:36,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:29:36,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:29:36,458 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 5505024}
2022-05-12 22:29:36,458 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:37,190 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92274688}) to executor  for transfer request: 0.
2022-05-12 22:29:37,190 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:37,190 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) about to wait for the following futures []
2022-05-12 22:29:37,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) done waiting for dependent futures
2022-05-12 22:29:37,191 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92274688}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 92274688}
2022-05-12 22:29:37,192 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:39,969 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30932992}) to executor  for transfer request: 0.
2022-05-12 22:29:39,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:39,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) about to wait for the following futures []
2022-05-12 22:29:39,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30932992}) done waiting for dependent futures
2022-05-12 22:29:39,970 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30932992}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 30932992}
2022-05-12 22:29:39,970 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:40,633 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:29:40,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:40,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:29:40,634 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:29:40,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 13893632}
2022-05-12 22:29:40,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:41,703 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49283072}) to executor  for transfer request: 0.
2022-05-12 22:29:41,703 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:41,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) about to wait for the following futures []
2022-05-12 22:29:41,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49283072}) done waiting for dependent futures
2022-05-12 22:29:41,704 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49283072}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 49283072}
2022-05-12 22:29:41,704 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:42,079 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55312384}) to executor  for transfer request: 0.
2022-05-12 22:29:42,079 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:42,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) about to wait for the following futures []
2022-05-12 22:29:42,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55312384}) done waiting for dependent futures
2022-05-12 22:29:42,080 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55312384}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 55312384}
2022-05-12 22:29:42,080 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:43,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 84934656}) to executor  for transfer request: 0.
2022-05-12 22:29:43,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:43,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) about to wait for the following futures []
2022-05-12 22:29:43,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 84934656}) done waiting for dependent futures
2022-05-12 22:29:43,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 84934656}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 84934656}
2022-05-12 22:29:43,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:44,335 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:29:44,335 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:44,335 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:44,335 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:29:44,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:29:44,336 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 16515072}
2022-05-12 22:29:44,336 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:44,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:29:44,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:44,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:29:44,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:29:44,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 21495808}
2022-05-12 22:29:44,642 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:47,161 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:29:47,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:47,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:29:47,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:29:47,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 4456448}
2022-05-12 22:29:47,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:47,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29360128}) to executor  for transfer request: 0.
2022-05-12 22:29:47,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:47,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) about to wait for the following futures []
2022-05-12 22:29:47,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29360128}) done waiting for dependent futures
2022-05-12 22:29:47,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29360128}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 29360128}
2022-05-12 22:29:47,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:49,075 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:29:49,075 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:49,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:29:49,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:29:49,076 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 5767168}
2022-05-12 22:29:49,076 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:49,270 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49545216}) to executor  for transfer request: 0.
2022-05-12 22:29:49,270 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:49,270 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) about to wait for the following futures []
2022-05-12 22:29:49,271 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49545216}) done waiting for dependent futures
2022-05-12 22:29:49,271 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49545216}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 49545216}
2022-05-12 22:29:49,271 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,360 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85196800}) to executor  for transfer request: 0.
2022-05-12 22:29:51,360 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) about to wait for the following futures []
2022-05-12 22:29:51,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85196800}) done waiting for dependent futures
2022-05-12 22:29:51,361 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85196800}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 85196800}
2022-05-12 22:29:51,362 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:51,848 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 39845888}) to executor  for transfer request: 0.
2022-05-12 22:29:51,848 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:51,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) about to wait for the following futures []
2022-05-12 22:29:51,848 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 39845888}) done waiting for dependent futures
2022-05-12 22:29:51,849 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 39845888}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 39845888}
2022-05-12 22:29:51,849 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:53,023 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72351744}) to executor  for transfer request: 0.
2022-05-12 22:29:53,023 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:53,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) about to wait for the following futures []
2022-05-12 22:29:53,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72351744}) done waiting for dependent futures
2022-05-12 22:29:53,024 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72351744}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 72351744}
2022-05-12 22:29:53,024 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:53,506 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92536832}) to executor  for transfer request: 0.
2022-05-12 22:29:53,506 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:53,506 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) about to wait for the following futures []
2022-05-12 22:29:53,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) done waiting for dependent futures
2022-05-12 22:29:53,507 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92536832}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 92536832}
2022-05-12 22:29:53,507 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:53,826 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:29:53,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:53,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:29:53,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:29:53,827 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 21757952}
2022-05-12 22:29:53,827 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:54,294 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:29:54,294 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:54,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:29:54,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:29:54,295 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 14155776}
2022-05-12 22:29:54,295 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55574528}) to executor  for transfer request: 0.
2022-05-12 22:29:55,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:55,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) about to wait for the following futures []
2022-05-12 22:29:55,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55574528}) done waiting for dependent futures
2022-05-12 22:29:55,673 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55574528}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 55574528}
2022-05-12 22:29:55,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:55,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 49807360}) to executor  for transfer request: 0.
2022-05-12 22:29:55,920 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:55,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) about to wait for the following futures []
2022-05-12 22:29:55,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 49807360}) done waiting for dependent futures
2022-05-12 22:29:55,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 49807360}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 49807360}
2022-05-12 22:29:55,921 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:57,891 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3407872}) to executor  for transfer request: 0.
2022-05-12 22:29:57,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:57,891 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) about to wait for the following futures []
2022-05-12 22:29:57,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3407872}) done waiting for dependent futures
2022-05-12 22:29:57,892 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3407872}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 3407872}
2022-05-12 22:29:57,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:59,255 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:29:59,256 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:59,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:29:59,256 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:29:59,256 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 4718592}
2022-05-12 22:29:59,257 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:29:59,422 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85458944}) to executor  for transfer request: 0.
2022-05-12 22:29:59,422 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:29:59,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) about to wait for the following futures []
2022-05-12 22:29:59,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85458944}) done waiting for dependent futures
2022-05-12 22:29:59,423 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85458944}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 85458944}
2022-05-12 22:29:59,423 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:30:00,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,758 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:30:00,759 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:30:00,759 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 6029312}
2022-05-12 22:30:00,759 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:00,802 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79429632}) to executor  for transfer request: 0.
2022-05-12 22:30:00,802 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:00,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) about to wait for the following futures []
2022-05-12 22:30:00,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79429632}) done waiting for dependent futures
2022-05-12 22:30:00,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79429632}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 79429632}
2022-05-12 22:30:00,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:01,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31195136}) to executor  for transfer request: 0.
2022-05-12 22:30:01,051 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:01,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) about to wait for the following futures []
2022-05-12 22:30:01,051 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31195136}) done waiting for dependent futures
2022-05-12 22:30:01,052 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31195136}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 31195136}
2022-05-12 22:30:01,052 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:02,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:30:02,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:02,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:30:02,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:30:02,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 22020096}
2022-05-12 22:30:02,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:03,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72613888}) to executor  for transfer request: 0.
2022-05-12 22:30:03,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:03,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) about to wait for the following futures []
2022-05-12 22:30:03,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72613888}) done waiting for dependent futures
2022-05-12 22:30:03,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72613888}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 72613888}
2022-05-12 22:30:03,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:05,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19398656}) to executor  for transfer request: 0.
2022-05-12 22:30:05,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:05,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) about to wait for the following futures []
2022-05-12 22:30:05,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19398656}) done waiting for dependent futures
2022-05-12 22:30:05,574 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19398656}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 19398656}
2022-05-12 22:30:05,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:06,081 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92798976}) to executor  for transfer request: 0.
2022-05-12 22:30:06,082 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:06,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) about to wait for the following futures []
2022-05-12 22:30:06,082 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) done waiting for dependent futures
2022-05-12 22:30:06,082 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92798976}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 92798976}
2022-05-12 22:30:06,082 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:07,215 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85721088}) to executor  for transfer request: 0.
2022-05-12 22:30:07,215 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:07,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) about to wait for the following futures []
2022-05-12 22:30:07,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85721088}) done waiting for dependent futures
2022-05-12 22:30:07,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85721088}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 85721088}
2022-05-12 22:30:07,216 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:07,568 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 9961472}) to executor  for transfer request: 0.
2022-05-12 22:30:07,568 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:07,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) about to wait for the following futures []
2022-05-12 22:30:07,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 9961472}) done waiting for dependent futures
2022-05-12 22:30:07,568 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 9961472}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 9961472}
2022-05-12 22:30:07,569 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:07,720 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:30:07,720 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:07,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:30:07,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:30:07,721 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 22282240}
2022-05-12 22:30:07,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:07,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 55836672}) to executor  for transfer request: 0.
2022-05-12 22:30:07,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:07,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) about to wait for the following futures []
2022-05-12 22:30:07,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 55836672}) done waiting for dependent futures
2022-05-12 22:30:07,994 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 55836672}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 55836672}
2022-05-12 22:30:07,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:09,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 50069504}) to executor  for transfer request: 0.
2022-05-12 22:30:09,217 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:09,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:09,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) about to wait for the following futures []
2022-05-12 22:30:09,217 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) about to wait for the following futures []
2022-05-12 22:30:09,217 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) done waiting for dependent futures
2022-05-12 22:30:09,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 50069504}) done waiting for dependent futures
2022-05-12 22:30:09,218 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=100663296-109051903'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=100663296-109051903'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 100663296, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:30:09,218 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 50069504}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 50069504}
2022-05-12 22:30:09,218 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:09,218 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:09,218 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:09,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:09,219 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:30:09,219 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:30:09,219 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:09,219 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:30:09,219 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:30:09,219 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:09,219 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:30:09,220 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=100663296-109051903', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:30:09,220 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:09,220 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:30:09,220 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:09,220 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:30:09,220 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:30:09,220 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:30:09,220 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:30:09,220 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:30:09,221 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:30:09,221 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=100663296-109051903
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223009Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:30:09,221 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223009Z
20220512/eu-central-1/s3/aws4_request
352da118b29aa69b31b9274f6ddea65292053f82b044309027327d6e14fa954c
2022-05-12 22:30:09,221 botocore.auth DEBUG    Signature:
c729396c536b001b9988ac98d46bb4f818efdeeb56b164d26f0e855eb854468d
2022-05-12 22:30:09,221 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:09,221 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:30:09,221 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:30:09,221 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:30:09,403 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:30:09,404 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '/zr3YqXjPmXyUZPTRcsoNx8tNI6BhbgyOA4WbUwPDDvdewoXhFGhf7Vk8jGjlhCPufZph9GwkZA=', 'x-amz-request-id': '5YH738JGDK8MBTHP', 'Date': 'Thu, 12 May 2022 22:30:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 100663296-109051903/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:30:09,404 botocore.parsers DEBUG    Response body:

2022-05-12 22:30:09,405 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:30:09,405 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:30:09,405 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:30:09,981 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40108032}) to executor  for transfer request: 0.
2022-05-12 22:30:09,981 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:09,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) about to wait for the following futures []
2022-05-12 22:30:09,981 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40108032}) done waiting for dependent futures
2022-05-12 22:30:09,981 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40108032}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 40108032}
2022-05-12 22:30:09,982 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:12,450 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:30:12,450 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:12,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:30:12,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:30:12,451 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 6291456}
2022-05-12 22:30:12,451 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:13,999 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:30:13,999 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:14,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:30:14,000 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:30:14,000 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 14417920}
2022-05-12 22:30:14,000 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:16,696 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:30:16,696 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:16,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:30:16,697 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:30:16,697 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 22544384}
2022-05-12 22:30:16,697 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:17,917 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:30:17,918 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:17,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:30:17,918 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:30:17,918 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 4980736}
2022-05-12 22:30:17,918 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:18,197 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 72876032}) to executor  for transfer request: 0.
2022-05-12 22:30:18,198 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:18,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) about to wait for the following futures []
2022-05-12 22:30:18,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 72876032}) done waiting for dependent futures
2022-05-12 22:30:18,198 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 72876032}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 72876032}
2022-05-12 22:30:18,199 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:18,408 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 85983232}) to executor  for transfer request: 0.
2022-05-12 22:30:18,408 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:18,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) about to wait for the following futures []
2022-05-12 22:30:18,408 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 85983232}) done waiting for dependent futures
2022-05-12 22:30:18,409 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 85983232}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 85983232}
2022-05-12 22:30:18,409 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:20,569 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100663296}) to executor  for transfer request: 0.
2022-05-12 22:30:20,569 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:20,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) about to wait for the following futures []
2022-05-12 22:30:20,570 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100663296}) done waiting for dependent futures
2022-05-12 22:30:20,570 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100663296}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 100663296}
2022-05-12 22:30:20,571 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:21,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93061120}) to executor  for transfer request: 0.
2022-05-12 22:30:21,059 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:21,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) about to wait for the following futures []
2022-05-12 22:30:21,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) done waiting for dependent futures
2022-05-12 22:30:21,059 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93061120}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 93061120}
2022-05-12 22:30:21,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:22,462 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31457280}) to executor  for transfer request: 0.
2022-05-12 22:30:22,462 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:22,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) about to wait for the following futures []
2022-05-12 22:30:22,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31457280}) done waiting for dependent futures
2022-05-12 22:30:22,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31457280}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 31457280}
2022-05-12 22:30:22,462 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:23,135 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56098816}) to executor  for transfer request: 0.
2022-05-12 22:30:23,135 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:23,135 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) about to wait for the following futures []
2022-05-12 22:30:23,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56098816}) done waiting for dependent futures
2022-05-12 22:30:23,136 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56098816}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 56098816}
2022-05-12 22:30:23,136 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:23,680 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:30:23,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:23,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:30:23,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:30:23,682 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 6553600}
2022-05-12 22:30:23,682 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,237 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:30:24,237 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,237 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:30:24,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:30:24,238 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 22806528}
2022-05-12 22:30:24,238 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:24,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86245376}) to executor  for transfer request: 0.
2022-05-12 22:30:24,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:24,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) about to wait for the following futures []
2022-05-12 22:30:24,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86245376}) done waiting for dependent futures
2022-05-12 22:30:24,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86245376}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 86245376}
2022-05-12 22:30:24,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:28,691 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73138176}) to executor  for transfer request: 0.
2022-05-12 22:30:28,691 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:28,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) about to wait for the following futures []
2022-05-12 22:30:28,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73138176}) done waiting for dependent futures
2022-05-12 22:30:28,692 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73138176}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 73138176}
2022-05-12 22:30:28,692 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:30,754 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40370176}) to executor  for transfer request: 0.
2022-05-12 22:30:30,754 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:30,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) about to wait for the following futures []
2022-05-12 22:30:30,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40370176}) done waiting for dependent futures
2022-05-12 22:30:30,754 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40370176}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 40370176}
2022-05-12 22:30:30,755 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:30,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100925440}) to executor  for transfer request: 0.
2022-05-12 22:30:30,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:30,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) about to wait for the following futures []
2022-05-12 22:30:30,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100925440}) done waiting for dependent futures
2022-05-12 22:30:30,887 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100925440}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 100925440}
2022-05-12 22:30:30,887 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:31,633 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79691776}) to executor  for transfer request: 0.
2022-05-12 22:30:31,633 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:31,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) about to wait for the following futures []
2022-05-12 22:30:31,633 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79691776}) done waiting for dependent futures
2022-05-12 22:30:31,634 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79691776}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 79691776}
2022-05-12 22:30:31,634 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86507520}) to executor  for transfer request: 0.
2022-05-12 22:30:36,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) about to wait for the following futures []
2022-05-12 22:30:36,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86507520}) done waiting for dependent futures
2022-05-12 22:30:36,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86507520}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 86507520}
2022-05-12 22:30:36,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:36,172 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:30:36,172 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:36,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:30:36,172 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:30:36,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 14680064}
2022-05-12 22:30:36,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:37,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56360960}) to executor  for transfer request: 0.
2022-05-12 22:30:37,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:37,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) about to wait for the following futures []
2022-05-12 22:30:37,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56360960}) done waiting for dependent futures
2022-05-12 22:30:37,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56360960}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 56360960}
2022-05-12 22:30:37,268 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:38,952 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:30:38,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:38,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:30:38,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:30:38,953 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 5242880}
2022-05-12 22:30:38,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:39,106 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93323264}) to executor  for transfer request: 0.
2022-05-12 22:30:39,106 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:39,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) about to wait for the following futures []
2022-05-12 22:30:39,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) done waiting for dependent futures
2022-05-12 22:30:39,107 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93323264}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 93323264}
2022-05-12 22:30:39,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:41,585 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:30:41,586 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:41,586 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:30:41,586 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:30:41,586 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 6815744}
2022-05-12 22:30:41,587 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:41,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101187584}) to executor  for transfer request: 0.
2022-05-12 22:30:41,853 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:41,853 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) about to wait for the following futures []
2022-05-12 22:30:41,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101187584}) done waiting for dependent futures
2022-05-12 22:30:41,854 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101187584}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 101187584}
2022-05-12 22:30:41,854 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:42,712 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:30:42,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:42,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:30:42,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:30:42,713 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 14942208}
2022-05-12 22:30:42,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:42,966 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:30:42,966 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:42,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:30:42,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:30:42,967 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 23068672}
2022-05-12 22:30:42,967 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:43,057 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:30:43,057 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:43,057 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:30:43,058 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:30:43,058 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 5505024}
2022-05-12 22:30:43,058 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:44,158 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56623104}) to executor  for transfer request: 0.
2022-05-12 22:30:44,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,158 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) about to wait for the following futures []
2022-05-12 22:30:44,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56623104}) done waiting for dependent futures
2022-05-12 22:30:44,159 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56623104}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 56623104}
2022-05-12 22:30:44,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:44,437 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29622272}) to executor  for transfer request: 0.
2022-05-12 22:30:44,437 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:44,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) about to wait for the following futures []
2022-05-12 22:30:44,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29622272}) done waiting for dependent futures
2022-05-12 22:30:44,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29622272}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 29622272}
2022-05-12 22:30:44,438 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:45,701 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 86769664}) to executor  for transfer request: 0.
2022-05-12 22:30:45,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:45,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) about to wait for the following futures []
2022-05-12 22:30:45,702 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 86769664}) done waiting for dependent futures
2022-05-12 22:30:45,702 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 86769664}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 86769664}
2022-05-12 22:30:45,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:47,079 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:30:47,079 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:47,079 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:30:47,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:30:47,080 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 15204352}
2022-05-12 22:30:47,080 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:47,204 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31719424}) to executor  for transfer request: 0.
2022-05-12 22:30:47,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:47,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) about to wait for the following futures []
2022-05-12 22:30:47,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31719424}) done waiting for dependent futures
2022-05-12 22:30:47,205 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31719424}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 31719424}
2022-05-12 22:30:47,205 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:47,499 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93585408}) to executor  for transfer request: 0.
2022-05-12 22:30:47,499 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:47,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) about to wait for the following futures []
2022-05-12 22:30:47,500 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) done waiting for dependent futures
2022-05-12 22:30:47,500 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93585408}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 93585408}
2022-05-12 22:30:47,501 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:48,292 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40632320}) to executor  for transfer request: 0.
2022-05-12 22:30:48,292 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:48,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) about to wait for the following futures []
2022-05-12 22:30:48,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40632320}) done waiting for dependent futures
2022-05-12 22:30:48,292 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40632320}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 40632320}
2022-05-12 22:30:48,293 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,000 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73400320}) to executor  for transfer request: 0.
2022-05-12 22:30:49,001 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,001 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) about to wait for the following futures []
2022-05-12 22:30:49,001 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73400320}) done waiting for dependent futures
2022-05-12 22:30:49,001 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73400320}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 73400320}
2022-05-12 22:30:49,001 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:49,316 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:30:49,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:49,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:30:49,317 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:30:49,317 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 5767168}
2022-05-12 22:30:49,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:52,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 56885248}) to executor  for transfer request: 0.
2022-05-12 22:30:52,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:52,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) about to wait for the following futures []
2022-05-12 22:30:52,014 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 56885248}) done waiting for dependent futures
2022-05-12 22:30:52,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 56885248}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 56885248}
2022-05-12 22:30:52,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:52,985 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3670016}) to executor  for transfer request: 0.
2022-05-12 22:30:52,985 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:52,985 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) about to wait for the following futures []
2022-05-12 22:30:52,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3670016}) done waiting for dependent futures
2022-05-12 22:30:52,986 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3670016}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 3670016}
2022-05-12 22:30:52,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:54,074 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87031808}) to executor  for transfer request: 0.
2022-05-12 22:30:54,074 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:54,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) about to wait for the following futures []
2022-05-12 22:30:54,075 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87031808}) done waiting for dependent futures
2022-05-12 22:30:54,075 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87031808}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 87031808}
2022-05-12 22:30:54,075 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:54,840 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:30:54,840 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:54,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:30:54,840 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:30:54,840 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 23330816}
2022-05-12 22:30:54,840 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:56,860 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 40894464}) to executor  for transfer request: 0.
2022-05-12 22:30:56,860 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:56,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) about to wait for the following futures []
2022-05-12 22:30:56,860 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 40894464}) done waiting for dependent futures
2022-05-12 22:30:56,861 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 40894464}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 40894464}
2022-05-12 22:30:56,861 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:57,374 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93847552}) to executor  for transfer request: 0.
2022-05-12 22:30:57,374 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:57,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) about to wait for the following futures []
2022-05-12 22:30:57,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) done waiting for dependent futures
2022-05-12 22:30:57,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93847552}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 93847552}
2022-05-12 22:30:57,375 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:58,375 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:30:58,375 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:58,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:30:58,375 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:30:58,375 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 6029312}
2022-05-12 22:30:58,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:30:59,199 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:30:59,199 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:30:59,199 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:30:59,199 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:30:59,199 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 7077888}
2022-05-12 22:30:59,200 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:00,823 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87293952}) to executor  for transfer request: 0.
2022-05-12 22:31:00,823 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:00,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) about to wait for the following futures []
2022-05-12 22:31:00,824 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87293952}) done waiting for dependent futures
2022-05-12 22:31:00,824 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87293952}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 87293952}
2022-05-12 22:31:00,824 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:00,965 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73662464}) to executor  for transfer request: 0.
2022-05-12 22:31:00,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:00,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) about to wait for the following futures []
2022-05-12 22:31:00,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73662464}) done waiting for dependent futures
2022-05-12 22:31:00,966 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73662464}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 73662464}
2022-05-12 22:31:00,967 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,425 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:31:03,425 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:31:03,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:31:03,426 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 23592960}
2022-05-12 22:31:03,426 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,692 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:31:03,692 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:31:03,693 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:31:03,693 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 15466496}
2022-05-12 22:31:03,693 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101449728}) to executor  for transfer request: 0.
2022-05-12 22:31:03,983 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) about to wait for the following futures []
2022-05-12 22:31:03,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101449728}) done waiting for dependent futures
2022-05-12 22:31:03,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101449728}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 101449728}
2022-05-12 22:31:03,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:03,987 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94109696}) to executor  for transfer request: 0.
2022-05-12 22:31:03,988 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:03,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) about to wait for the following futures []
2022-05-12 22:31:03,988 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) done waiting for dependent futures
2022-05-12 22:31:03,988 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94109696}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 94109696}
2022-05-12 22:31:03,988 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:04,018 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 29884416}) to executor  for transfer request: 0.
2022-05-12 22:31:04,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:04,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) about to wait for the following futures []
2022-05-12 22:31:04,019 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 29884416}) done waiting for dependent futures
2022-05-12 22:31:04,019 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 29884416}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 29884416}
2022-05-12 22:31:04,019 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:04,793 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57147392}) to executor  for transfer request: 0.
2022-05-12 22:31:04,793 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:04,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) about to wait for the following futures []
2022-05-12 22:31:04,794 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57147392}) done waiting for dependent futures
2022-05-12 22:31:04,794 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57147392}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 57147392}
2022-05-12 22:31:04,794 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:05,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:31:05,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:05,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:31:05,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:31:05,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 7340032}
2022-05-12 22:31:05,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:08,160 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:31:08,160 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:08,161 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:31:08,161 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:31:08,161 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 6291456}
2022-05-12 22:31:08,161 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:08,450 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 79953920}) to executor  for transfer request: 0.
2022-05-12 22:31:08,450 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:08,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) about to wait for the following futures []
2022-05-12 22:31:08,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 79953920}) done waiting for dependent futures
2022-05-12 22:31:08,450 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 79953920}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 79953920}
2022-05-12 22:31:08,451 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:08,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:31:08,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:08,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:31:08,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:31:08,452 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 15728640}
2022-05-12 22:31:08,452 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,330 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87556096}) to executor  for transfer request: 0.
2022-05-12 22:31:09,330 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) about to wait for the following futures []
2022-05-12 22:31:09,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87556096}) done waiting for dependent futures
2022-05-12 22:31:09,332 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87556096}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 87556096}
2022-05-12 22:31:09,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41156608}) to executor  for transfer request: 0.
2022-05-12 22:31:09,415 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) about to wait for the following futures []
2022-05-12 22:31:09,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41156608}) done waiting for dependent futures
2022-05-12 22:31:09,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41156608}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 41156608}
2022-05-12 22:31:09,416 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:09,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94371840}) to executor  for transfer request: 0.
2022-05-12 22:31:09,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:09,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) about to wait for the following futures []
2022-05-12 22:31:09,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) done waiting for dependent futures
2022-05-12 22:31:09,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94371840}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 94371840}
2022-05-12 22:31:09,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,023 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 30146560}) to executor  for transfer request: 0.
2022-05-12 22:31:10,023 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) about to wait for the following futures []
2022-05-12 22:31:10,023 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 30146560}) done waiting for dependent futures
2022-05-12 22:31:10,023 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 30146560}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 30146560}
2022-05-12 22:31:10,024 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,077 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 73924608}) to executor  for transfer request: 0.
2022-05-12 22:31:10,077 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,077 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) about to wait for the following futures []
2022-05-12 22:31:10,078 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 73924608}) done waiting for dependent futures
2022-05-12 22:31:10,078 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 73924608}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 73924608}
2022-05-12 22:31:10,078 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,493 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 31981568}) to executor  for transfer request: 0.
2022-05-12 22:31:10,493 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) about to wait for the following futures []
2022-05-12 22:31:10,493 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 31981568}) done waiting for dependent futures
2022-05-12 22:31:10,493 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 31981568}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 31981568}
2022-05-12 22:31:10,493 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:10,850 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10223616}) to executor  for transfer request: 0.
2022-05-12 22:31:10,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:10,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) about to wait for the following futures []
2022-05-12 22:31:10,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10223616}) done waiting for dependent futures
2022-05-12 22:31:10,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10223616}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 10223616}
2022-05-12 22:31:10,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:11,563 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:31:11,563 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:11,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:31:11,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:31:11,564 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 23855104}
2022-05-12 22:31:11,564 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:13,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57409536}) to executor  for transfer request: 0.
2022-05-12 22:31:13,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:13,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) about to wait for the following futures []
2022-05-12 22:31:13,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57409536}) done waiting for dependent futures
2022-05-12 22:31:13,620 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57409536}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 57409536}
2022-05-12 22:31:13,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:15,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:31:15,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:15,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:31:15,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:31:15,681 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 7602176}
2022-05-12 22:31:15,682 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,204 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 87818240}) to executor  for transfer request: 0.
2022-05-12 22:31:16,204 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) about to wait for the following futures []
2022-05-12 22:31:16,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 87818240}) done waiting for dependent futures
2022-05-12 22:31:16,205 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 87818240}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 87818240}
2022-05-12 22:31:16,206 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:16,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:31:16,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:16,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:31:16,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:31:16,733 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 6553600}
2022-05-12 22:31:16,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,127 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:31:17,127 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:31:17,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:31:17,128 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 15990784}
2022-05-12 22:31:17,128 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,213 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:31:17,213 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:31:17,214 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:31:17,214 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 24117248}
2022-05-12 22:31:17,214 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,871 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94633984}) to executor  for transfer request: 0.
2022-05-12 22:31:17,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) about to wait for the following futures []
2022-05-12 22:31:17,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) done waiting for dependent futures
2022-05-12 22:31:17,872 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94633984}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 94633984}
2022-05-12 22:31:17,873 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:17,966 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74186752}) to executor  for transfer request: 0.
2022-05-12 22:31:17,966 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:17,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) about to wait for the following futures []
2022-05-12 22:31:17,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74186752}) done waiting for dependent futures
2022-05-12 22:31:17,967 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74186752}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 74186752}
2022-05-12 22:31:17,967 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:19,306 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41418752}) to executor  for transfer request: 0.
2022-05-12 22:31:19,306 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:19,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) about to wait for the following futures []
2022-05-12 22:31:19,306 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41418752}) done waiting for dependent futures
2022-05-12 22:31:19,306 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41418752}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 41418752}
2022-05-12 22:31:19,307 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:21,388 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101711872}) to executor  for transfer request: 0.
2022-05-12 22:31:21,388 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:21,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) about to wait for the following futures []
2022-05-12 22:31:21,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101711872}) done waiting for dependent futures
2022-05-12 22:31:21,389 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101711872}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 101711872}
2022-05-12 22:31:21,389 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:23,412 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:31:23,412 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:23,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:31:23,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:31:23,413 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 6815744}
2022-05-12 22:31:23,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:24,103 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94896128}) to executor  for transfer request: 0.
2022-05-12 22:31:24,103 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:24,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) about to wait for the following futures []
2022-05-12 22:31:24,103 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) done waiting for dependent futures
2022-05-12 22:31:24,104 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94896128}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 94896128}
2022-05-12 22:31:24,104 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:25,596 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:31:25,596 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:25,596 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:31:25,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:31:25,597 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 16252928}
2022-05-12 22:31:25,597 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:26,489 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:31:26,489 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:26,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:31:26,489 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:31:26,490 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 7864320}
2022-05-12 22:31:26,490 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:27,186 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88080384}) to executor  for transfer request: 0.
2022-05-12 22:31:27,187 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:27,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) about to wait for the following futures []
2022-05-12 22:31:27,187 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88080384}) done waiting for dependent futures
2022-05-12 22:31:27,187 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88080384}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 88080384}
2022-05-12 22:31:27,187 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:27,258 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:31:27,258 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:27,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:31:27,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:31:27,259 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 24379392}
2022-05-12 22:31:27,259 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:27,532 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57671680}) to executor  for transfer request: 0.
2022-05-12 22:31:27,532 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:27,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) about to wait for the following futures []
2022-05-12 22:31:27,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57671680}) done waiting for dependent futures
2022-05-12 22:31:27,533 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57671680}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 57671680}
2022-05-12 22:31:27,533 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:29,031 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95158272}) to executor  for transfer request: 0.
2022-05-12 22:31:29,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:29,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) about to wait for the following futures []
2022-05-12 22:31:29,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) done waiting for dependent futures
2022-05-12 22:31:29,032 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95158272}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 95158272}
2022-05-12 22:31:29,032 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,288 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74448896}) to executor  for transfer request: 0.
2022-05-12 22:31:30,288 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) about to wait for the following futures []
2022-05-12 22:31:30,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74448896}) done waiting for dependent futures
2022-05-12 22:31:30,289 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74448896}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 74448896}
2022-05-12 22:31:30,289 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:30,678 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:31:30,679 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:30,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:31:30,679 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:31:30,679 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 7077888}
2022-05-12 22:31:30,679 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:31,973 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 41680896}) to executor  for transfer request: 0.
2022-05-12 22:31:31,973 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:31,973 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:31,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) about to wait for the following futures []
2022-05-12 22:31:31,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 41680896}) done waiting for dependent futures
2022-05-12 22:31:31,974 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) about to wait for the following futures []
2022-05-12 22:31:31,974 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 41680896}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 41680896}
2022-05-12 22:31:31,974 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) done waiting for dependent futures
2022-05-12 22:31:31,974 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=109051904-117440511'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=109051904-117440511'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 109051904, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:31,975 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:31,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:31,975 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:31,975 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:31,975 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:31,975 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:31,975 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:31,975 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:31,976 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:31:31,976 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:31,976 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:31,976 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=109051904-117440511', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:31,976 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:31,976 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:31,976 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:31,976 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:31,976 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:31,976 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:31,976 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:31:31,976 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:31:31,977 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:31,977 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=109051904-117440511
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223131Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:31,977 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223131Z
20220512/eu-central-1/s3/aws4_request
95571740b403023b82bc943dccba9d3ec7b0ca757f20d9de83306b764cd25c46
2022-05-12 22:31:31,977 botocore.auth DEBUG    Signature:
8df10322df713b980a6c12f8dd60da0292ff23481a6bae2fc0197f0b01781531
2022-05-12 22:31:31,977 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:31,977 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:31,977 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:31,978 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:32,167 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:32,167 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Pa5qIsdjhQywp4gRGcihNtCTji0P8YgOwqGNxdhow4BHnl5Iai3AVHsU/UbjqnnDnvIreYzJ1Yk=', 'x-amz-request-id': 'VJE568CDYGGE71C0', 'Date': 'Thu, 12 May 2022 22:31:33 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 109051904-117440511/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:31:32,167 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:32,168 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:32,168 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:32,168 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:33,650 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:31:33,650 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:33,650 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:31:33,651 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:31:33,651 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 24641536}
2022-05-12 22:31:33,651 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:34,113 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95420416}) to executor  for transfer request: 0.
2022-05-12 22:31:34,113 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:34,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) about to wait for the following futures []
2022-05-12 22:31:34,114 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) done waiting for dependent futures
2022-05-12 22:31:34,114 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95420416}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 95420416}
2022-05-12 22:31:34,115 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:34,130 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 101974016}) to executor  for transfer request: 0.
2022-05-12 22:31:34,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:34,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) about to wait for the following futures []
2022-05-12 22:31:34,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 101974016}) done waiting for dependent futures
2022-05-12 22:31:34,131 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 101974016}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 101974016}
2022-05-12 22:31:34,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:31:37,026 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,026 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:31:37,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:31:37,027 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:31:37,027 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,027 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=39>, 'offset': 8126464}
2022-05-12 22:31:37,028 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,028 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:31:37,028 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:31:37,029 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:31:37,029 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:37,967 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:31:37,967 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:37,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:31:37,967 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:31:37,967 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 7340032}
2022-05-12 22:31:37,968 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:38,163 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88342528}) to executor  for transfer request: 0.
2022-05-12 22:31:38,163 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:38,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) about to wait for the following futures []
2022-05-12 22:31:38,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88342528}) done waiting for dependent futures
2022-05-12 22:31:38,164 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88342528}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 88342528}
2022-05-12 22:31:38,164 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:38,363 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32243712}) to executor  for transfer request: 0.
2022-05-12 22:31:38,363 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:38,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) about to wait for the following futures []
2022-05-12 22:31:38,363 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32243712}) done waiting for dependent futures
2022-05-12 22:31:38,364 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32243712}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 32243712}
2022-05-12 22:31:38,364 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:38,681 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 57933824}) to executor  for transfer request: 0.
2022-05-12 22:31:38,681 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:38,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) about to wait for the following futures []
2022-05-12 22:31:38,681 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 57933824}) done waiting for dependent futures
2022-05-12 22:31:38,681 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 57933824}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 57933824}
2022-05-12 22:31:38,682 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:39,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74711040}) to executor  for transfer request: 0.
2022-05-12 22:31:39,026 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:39,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) about to wait for the following futures []
2022-05-12 22:31:39,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74711040}) done waiting for dependent futures
2022-05-12 22:31:39,027 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74711040}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 74711040}
2022-05-12 22:31:39,027 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:39,776 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:31:39,777 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:39,777 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:39,777 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:31:39,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:31:39,778 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 16515072}
2022-05-12 22:31:39,778 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,724 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:31:41,725 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:41,725 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:41,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:31:41,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:31:41,725 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 24903680}
2022-05-12 22:31:41,726 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:42,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95682560}) to executor  for transfer request: 0.
2022-05-12 22:31:42,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:42,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) about to wait for the following futures []
2022-05-12 22:31:42,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) done waiting for dependent futures
2022-05-12 22:31:42,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95682560}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 95682560}
2022-05-12 22:31:42,869 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:44,294 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:31:44,295 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:44,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:31:44,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:31:44,295 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 7602176}
2022-05-12 22:31:44,296 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:44,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109051904}) to executor  for transfer request: 0.
2022-05-12 22:31:44,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:44,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) about to wait for the following futures []
2022-05-12 22:31:44,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109051904}) done waiting for dependent futures
2022-05-12 22:31:44,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109051904}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 109051904}
2022-05-12 22:31:44,622 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:45,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80216064}) to executor  for transfer request: 0.
2022-05-12 22:31:45,273 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:45,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) about to wait for the following futures []
2022-05-12 22:31:45,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80216064}) done waiting for dependent futures
2022-05-12 22:31:45,274 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80216064}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 80216064}
2022-05-12 22:31:45,274 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:47,623 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58195968}) to executor  for transfer request: 0.
2022-05-12 22:31:47,623 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:47,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) about to wait for the following futures []
2022-05-12 22:31:47,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58195968}) done waiting for dependent futures
2022-05-12 22:31:47,623 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58195968}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 58195968}
2022-05-12 22:31:47,624 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,142 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 3932160}) to executor  for transfer request: 0.
2022-05-12 22:31:49,142 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) about to wait for the following futures []
2022-05-12 22:31:49,143 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 3932160}) done waiting for dependent futures
2022-05-12 22:31:49,143 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 3932160}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 3932160}
2022-05-12 22:31:49,143 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,348 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95944704}) to executor  for transfer request: 0.
2022-05-12 22:31:49,348 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) about to wait for the following futures []
2022-05-12 22:31:49,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) done waiting for dependent futures
2022-05-12 22:31:49,349 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95944704}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 95944704}
2022-05-12 22:31:49,349 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:49,651 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88604672}) to executor  for transfer request: 0.
2022-05-12 22:31:49,651 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:49,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) about to wait for the following futures []
2022-05-12 22:31:49,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88604672}) done waiting for dependent futures
2022-05-12 22:31:49,652 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88604672}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 88604672}
2022-05-12 22:31:49,653 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:50,901 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19660800}) to executor  for transfer request: 0.
2022-05-12 22:31:50,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:50,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) about to wait for the following futures []
2022-05-12 22:31:50,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19660800}) done waiting for dependent futures
2022-05-12 22:31:50,902 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19660800}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 19660800}
2022-05-12 22:31:50,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:51,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:31:51,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:51,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:31:51,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:31:51,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 7864320}
2022-05-12 22:31:51,869 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,267 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102236160}) to executor  for transfer request: 0.
2022-05-12 22:31:54,267 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:54,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) about to wait for the following futures []
2022-05-12 22:31:54,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102236160}) done waiting for dependent futures
2022-05-12 22:31:54,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102236160}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 102236160}
2022-05-12 22:31:54,268 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 58458112}) to executor  for transfer request: 0.
2022-05-12 22:31:54,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:54,997 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) about to wait for the following futures []
2022-05-12 22:31:54,997 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) about to wait for the following futures []
2022-05-12 22:31:54,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 58458112}) done waiting for dependent futures
2022-05-12 22:31:54,998 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) done waiting for dependent futures
2022-05-12 22:31:54,998 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 58458112}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 58458112}
2022-05-12 22:31:54,999 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=117440512-125829119'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=117440512-125829119'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 117440512, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:31:54,999 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:54,999 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:54,999 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:54,999 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:55,000 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:31:55,000 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:31:55,000 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:55,000 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:31:55,000 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:31:55,000 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:55,000 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:31:55,000 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=117440512-125829119', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:31:55,001 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:55,001 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:31:55,001 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:55,001 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:31:55,001 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:31:55,001 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:31:55,001 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:31:55,001 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:31:55,002 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:31:55,002 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=117440512-125829119
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223155Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:31:55,002 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223155Z
20220512/eu-central-1/s3/aws4_request
bf7fc473971f7d822ee7f76164cc92d03862a6f0f7aedb67453e06c8121b36d9
2022-05-12 22:31:55,002 botocore.auth DEBUG    Signature:
47a0534e8c01d813e454cbed4cc5c2337570d344ae1f4980e6714da1506ff34c
2022-05-12 22:31:55,002 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:55,002 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:31:55,002 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:31:55,002 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:31:55,276 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:31:55,277 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '1Gd71dc4SBiEw42lDbn0wSSF7AO79OTwI8ql4IU/YrWVl600QGoMt7WxE4fb6v5zf5C2wps4FXI=', 'x-amz-request-id': '0JZQWXKW7FGZYQ2Z', 'Date': 'Thu, 12 May 2022 22:31:56 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 117440512-125829119/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:31:55,277 botocore.parsers DEBUG    Response body:

2022-05-12 22:31:55,277 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:31:55,278 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:31:55,278 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:31:56,403 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32505856}) to executor  for transfer request: 0.
2022-05-12 22:31:56,403 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:56,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) about to wait for the following futures []
2022-05-12 22:31:56,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32505856}) done waiting for dependent futures
2022-05-12 22:31:56,403 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32505856}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 32505856}
2022-05-12 22:31:56,404 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:56,951 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96206848}) to executor  for transfer request: 0.
2022-05-12 22:31:56,951 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:56,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) about to wait for the following futures []
2022-05-12 22:31:56,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) done waiting for dependent futures
2022-05-12 22:31:56,951 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96206848}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 96206848}
2022-05-12 22:31:56,952 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:57,743 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109314048}) to executor  for transfer request: 0.
2022-05-12 22:31:57,743 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:57,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) about to wait for the following futures []
2022-05-12 22:31:57,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109314048}) done waiting for dependent futures
2022-05-12 22:31:57,743 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109314048}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 109314048}
2022-05-12 22:31:57,744 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:58,636 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 88866816}) to executor  for transfer request: 0.
2022-05-12 22:31:58,636 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:58,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) about to wait for the following futures []
2022-05-12 22:31:58,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 88866816}) done waiting for dependent futures
2022-05-12 22:31:58,637 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 88866816}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 88866816}
2022-05-12 22:31:58,637 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:31:59,855 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 74973184}) to executor  for transfer request: 0.
2022-05-12 22:31:59,855 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:31:59,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) about to wait for the following futures []
2022-05-12 22:31:59,855 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 74973184}) done waiting for dependent futures
2022-05-12 22:31:59,855 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 74973184}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 74973184}
2022-05-12 22:31:59,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:03,144 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:32:03,144 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:03,145 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:32:03,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:32:03,145 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:03,145 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:32:03,145 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:03,145 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=38>, 'offset': 8126464}
2022-05-12 22:32:03,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:03,146 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:32:03,146 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:32:03,146 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:32:03,146 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,778 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96468992}) to executor  for transfer request: 0.
2022-05-12 22:32:04,778 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) about to wait for the following futures []
2022-05-12 22:32:04,778 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) done waiting for dependent futures
2022-05-12 22:32:04,779 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96468992}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 96468992}
2022-05-12 22:32:04,779 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:04,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89128960}) to executor  for transfer request: 0.
2022-05-12 22:32:04,957 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:04,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) about to wait for the following futures []
2022-05-12 22:32:04,958 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89128960}) done waiting for dependent futures
2022-05-12 22:32:04,958 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89128960}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 89128960}
2022-05-12 22:32:04,958 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:05,480 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117440512}) to executor  for transfer request: 0.
2022-05-12 22:32:05,480 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:05,480 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) about to wait for the following futures []
2022-05-12 22:32:05,481 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117440512}) done waiting for dependent futures
2022-05-12 22:32:05,481 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117440512}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 117440512}
2022-05-12 22:32:05,481 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:06,375 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 75235328}) to executor  for transfer request: 0.
2022-05-12 22:32:06,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:06,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:06,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) about to wait for the following futures []
2022-05-12 22:32:06,377 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) about to wait for the following futures []
2022-05-12 22:32:06,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 75235328}) done waiting for dependent futures
2022-05-12 22:32:06,377 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) done waiting for dependent futures
2022-05-12 22:32:06,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 75235328}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 75235328}
2022-05-12 22:32:06,378 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=125829120-134217727'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=125829120-134217727'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 125829120, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:32:06,378 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:06,378 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:06,379 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:06,379 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:06,379 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:32:06,379 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:32:06,379 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:06,379 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:32:06,380 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:32:06,380 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:06,380 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:32:06,380 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=125829120-134217727', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:32:06,380 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:06,380 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:32:06,380 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:06,380 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:32:06,380 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:32:06,380 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:32:06,381 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:32:06,381 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:32:06,381 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:32:06,381 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=125829120-134217727
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223206Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:32:06,381 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223206Z
20220512/eu-central-1/s3/aws4_request
5f20400aa917096748e94c97bc5aaf7da47f9679f919d025fd70a50ffd92cb07
2022-05-12 22:32:06,381 botocore.auth DEBUG    Signature:
0b9e83f84d43b47a90e6ea20900ca17649fb4f614a10828a2a1ec2b44b32d289
2022-05-12 22:32:06,382 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:06,382 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:32:06,382 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:32:06,382 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:32:06,577 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:32:06,578 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'nxgFk3B+oPmQ841Sspak+tExfXf6t2+JQ5llXWNOWkxfSUHzUUXuPdZ+HuDXhQ+vVpQ2SVzsRkA=', 'x-amz-request-id': 'QACCMJR0AW59KQ1H', 'Date': 'Thu, 12 May 2022 22:32:07 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 125829120-134217727/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:32:06,578 botocore.parsers DEBUG    Response body:

2022-05-12 22:32:06,579 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:32:06,579 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:32:06,579 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:32:07,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 19922944}) to executor  for transfer request: 0.
2022-05-12 22:32:07,464 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:07,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) about to wait for the following futures []
2022-05-12 22:32:07,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 19922944}) done waiting for dependent futures
2022-05-12 22:32:07,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 19922944}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 19922944}
2022-05-12 22:32:07,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:07,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102498304}) to executor  for transfer request: 0.
2022-05-12 22:32:07,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:07,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) about to wait for the following futures []
2022-05-12 22:32:07,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102498304}) done waiting for dependent futures
2022-05-12 22:32:07,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102498304}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 102498304}
2022-05-12 22:32:07,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:08,657 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10485760}) to executor  for transfer request: 0.
2022-05-12 22:32:08,658 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:08,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) about to wait for the following futures []
2022-05-12 22:32:08,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10485760}) done waiting for dependent futures
2022-05-12 22:32:08,659 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10485760}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 10485760}
2022-05-12 22:32:08,659 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:09,676 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96731136}) to executor  for transfer request: 0.
2022-05-12 22:32:09,676 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:09,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) about to wait for the following futures []
2022-05-12 22:32:09,677 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) done waiting for dependent futures
2022-05-12 22:32:09,677 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96731136}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 96731136}
2022-05-12 22:32:09,677 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:11,615 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109576192}) to executor  for transfer request: 0.
2022-05-12 22:32:11,615 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:11,615 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) about to wait for the following futures []
2022-05-12 22:32:11,616 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109576192}) done waiting for dependent futures
2022-05-12 22:32:11,616 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109576192}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 109576192}
2022-05-12 22:32:11,616 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:12,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125829120}) to executor  for transfer request: 0.
2022-05-12 22:32:12,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:12,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) about to wait for the following futures []
2022-05-12 22:32:12,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125829120}) done waiting for dependent futures
2022-05-12 22:32:12,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125829120}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 125829120}
2022-05-12 22:32:12,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:14,080 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80478208}) to executor  for transfer request: 0.
2022-05-12 22:32:14,080 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:14,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) about to wait for the following futures []
2022-05-12 22:32:14,081 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80478208}) done waiting for dependent futures
2022-05-12 22:32:14,081 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80478208}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 80478208}
2022-05-12 22:32:14,082 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:14,827 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89391104}) to executor  for transfer request: 0.
2022-05-12 22:32:14,827 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:14,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) about to wait for the following futures []
2022-05-12 22:32:14,827 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89391104}) done waiting for dependent futures
2022-05-12 22:32:14,827 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89391104}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 89391104}
2022-05-12 22:32:14,828 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:15,537 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117702656}) to executor  for transfer request: 0.
2022-05-12 22:32:15,537 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:15,537 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) about to wait for the following futures []
2022-05-12 22:32:15,538 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117702656}) done waiting for dependent futures
2022-05-12 22:32:15,538 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117702656}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 117702656}
2022-05-12 22:32:15,538 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:17,360 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96993280}) to executor  for transfer request: 0.
2022-05-12 22:32:17,360 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:17,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) about to wait for the following futures []
2022-05-12 22:32:17,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) done waiting for dependent futures
2022-05-12 22:32:17,361 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96993280}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 96993280}
2022-05-12 22:32:17,361 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:17,549 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126091264}) to executor  for transfer request: 0.
2022-05-12 22:32:17,550 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:17,550 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) about to wait for the following futures []
2022-05-12 22:32:17,550 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126091264}) done waiting for dependent futures
2022-05-12 22:32:17,550 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126091264}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 126091264}
2022-05-12 22:32:17,551 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:19,536 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 32768000}) to executor  for transfer request: 0.
2022-05-12 22:32:19,536 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:19,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) about to wait for the following futures []
2022-05-12 22:32:19,536 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 32768000}) done waiting for dependent futures
2022-05-12 22:32:19,537 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 32768000}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 32768000}
2022-05-12 22:32:19,537 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,574 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 109838336}) to executor  for transfer request: 0.
2022-05-12 22:32:20,574 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:20,574 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) about to wait for the following futures []
2022-05-12 22:32:20,575 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 109838336}) done waiting for dependent futures
2022-05-12 22:32:20,575 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 109838336}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 109838336}
2022-05-12 22:32:20,575 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:20,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 102760448}) to executor  for transfer request: 0.
2022-05-12 22:32:20,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:20,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) about to wait for the following futures []
2022-05-12 22:32:20,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 102760448}) done waiting for dependent futures
2022-05-12 22:32:20,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 102760448}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 102760448}
2022-05-12 22:32:20,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:22,911 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89653248}) to executor  for transfer request: 0.
2022-05-12 22:32:22,911 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:22,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) about to wait for the following futures []
2022-05-12 22:32:22,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89653248}) done waiting for dependent futures
2022-05-12 22:32:22,912 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89653248}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 89653248}
2022-05-12 22:32:22,912 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:23,833 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20185088}) to executor  for transfer request: 0.
2022-05-12 22:32:23,833 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:23,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) about to wait for the following futures []
2022-05-12 22:32:23,833 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20185088}) done waiting for dependent futures
2022-05-12 22:32:23,833 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20185088}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 20185088}
2022-05-12 22:32:23,834 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:24,554 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117964800}) to executor  for transfer request: 0.
2022-05-12 22:32:24,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:24,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) about to wait for the following futures []
2022-05-12 22:32:24,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117964800}) done waiting for dependent futures
2022-05-12 22:32:24,555 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117964800}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 117964800}
2022-05-12 22:32:24,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:26,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97255424}) to executor  for transfer request: 0.
2022-05-12 22:32:26,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:26,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) about to wait for the following futures []
2022-05-12 22:32:26,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) done waiting for dependent futures
2022-05-12 22:32:26,484 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97255424}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 97255424}
2022-05-12 22:32:26,485 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:27,237 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126353408}) to executor  for transfer request: 0.
2022-05-12 22:32:27,237 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:27,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) about to wait for the following futures []
2022-05-12 22:32:27,238 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126353408}) done waiting for dependent futures
2022-05-12 22:32:27,238 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126353408}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 126353408}
2022-05-12 22:32:27,238 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:27,972 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110100480}) to executor  for transfer request: 0.
2022-05-12 22:32:27,972 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:27,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) about to wait for the following futures []
2022-05-12 22:32:27,973 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110100480}) done waiting for dependent futures
2022-05-12 22:32:27,973 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110100480}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 110100480}
2022-05-12 22:32:27,974 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:29,541 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97517568}) to executor  for transfer request: 0.
2022-05-12 22:32:29,541 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:29,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) about to wait for the following futures []
2022-05-12 22:32:29,542 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) done waiting for dependent futures
2022-05-12 22:32:29,542 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97517568}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 97517568}
2022-05-12 22:32:29,542 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:32,220 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118226944}) to executor  for transfer request: 0.
2022-05-12 22:32:32,221 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:32,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) about to wait for the following futures []
2022-05-12 22:32:32,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118226944}) done waiting for dependent futures
2022-05-12 22:32:32,221 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118226944}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 118226944}
2022-05-12 22:32:32,222 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:33,222 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 89915392}) to executor  for transfer request: 0.
2022-05-12 22:32:33,222 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:33,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) about to wait for the following futures []
2022-05-12 22:32:33,222 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 89915392}) done waiting for dependent futures
2022-05-12 22:32:33,223 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 89915392}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 89915392}
2022-05-12 22:32:33,223 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:34,285 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110362624}) to executor  for transfer request: 0.
2022-05-12 22:32:34,285 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:34,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) about to wait for the following futures []
2022-05-12 22:32:34,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110362624}) done waiting for dependent futures
2022-05-12 22:32:34,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110362624}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 110362624}
2022-05-12 22:32:34,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:34,652 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103022592}) to executor  for transfer request: 0.
2022-05-12 22:32:34,652 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:34,652 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) about to wait for the following futures []
2022-05-12 22:32:34,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103022592}) done waiting for dependent futures
2022-05-12 22:32:34,653 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103022592}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 103022592}
2022-05-12 22:32:34,653 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:36,440 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97779712}) to executor  for transfer request: 0.
2022-05-12 22:32:36,440 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:36,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) about to wait for the following futures []
2022-05-12 22:32:36,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) done waiting for dependent futures
2022-05-12 22:32:36,441 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97779712}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 97779712}
2022-05-12 22:32:36,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:37,220 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126615552}) to executor  for transfer request: 0.
2022-05-12 22:32:37,220 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:37,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) about to wait for the following futures []
2022-05-12 22:32:37,221 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126615552}) done waiting for dependent futures
2022-05-12 22:32:37,221 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126615552}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 126615552}
2022-05-12 22:32:37,221 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:38,706 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4194304}) to executor  for transfer request: 0.
2022-05-12 22:32:38,707 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:38,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) about to wait for the following futures []
2022-05-12 22:32:38,707 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4194304}) done waiting for dependent futures
2022-05-12 22:32:38,707 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4194304}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 4194304}
2022-05-12 22:32:38,708 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:42,318 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20447232}) to executor  for transfer request: 0.
2022-05-12 22:32:42,318 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:42,319 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) about to wait for the following futures []
2022-05-12 22:32:42,320 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20447232}) done waiting for dependent futures
2022-05-12 22:32:42,320 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20447232}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 20447232}
2022-05-12 22:32:42,320 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:42,545 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90177536}) to executor  for transfer request: 0.
2022-05-12 22:32:42,545 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:42,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) about to wait for the following futures []
2022-05-12 22:32:42,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90177536}) done waiting for dependent futures
2022-05-12 22:32:42,546 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90177536}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 90177536}
2022-05-12 22:32:42,546 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:42,648 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33030144}) to executor  for transfer request: 0.
2022-05-12 22:32:42,648 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:42,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) about to wait for the following futures []
2022-05-12 22:32:42,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33030144}) done waiting for dependent futures
2022-05-12 22:32:42,649 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33030144}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 33030144}
2022-05-12 22:32:42,649 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:43,326 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 126877696}) to executor  for transfer request: 0.
2022-05-12 22:32:43,327 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:43,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) about to wait for the following futures []
2022-05-12 22:32:43,327 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 126877696}) done waiting for dependent futures
2022-05-12 22:32:43,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 126877696}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 126877696}
2022-05-12 22:32:43,328 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:47,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127139840}) to executor  for transfer request: 0.
2022-05-12 22:32:47,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:47,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) about to wait for the following futures []
2022-05-12 22:32:47,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127139840}) done waiting for dependent futures
2022-05-12 22:32:47,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127139840}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 127139840}
2022-05-12 22:32:47,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:48,101 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103284736}) to executor  for transfer request: 0.
2022-05-12 22:32:48,101 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:48,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) about to wait for the following futures []
2022-05-12 22:32:48,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103284736}) done waiting for dependent futures
2022-05-12 22:32:48,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103284736}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 103284736}
2022-05-12 22:32:48,102 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:50,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90439680}) to executor  for transfer request: 0.
2022-05-12 22:32:50,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:50,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) about to wait for the following futures []
2022-05-12 22:32:50,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90439680}) done waiting for dependent futures
2022-05-12 22:32:50,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90439680}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 90439680}
2022-05-12 22:32:50,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:51,234 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 10747904}) to executor  for transfer request: 0.
2022-05-12 22:32:51,234 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:51,234 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) about to wait for the following futures []
2022-05-12 22:32:51,234 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 10747904}) done waiting for dependent futures
2022-05-12 22:32:51,234 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 10747904}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 10747904}
2022-05-12 22:32:51,235 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:53,818 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20709376}) to executor  for transfer request: 0.
2022-05-12 22:32:53,818 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:53,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) about to wait for the following futures []
2022-05-12 22:32:53,819 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20709376}) done waiting for dependent futures
2022-05-12 22:32:53,819 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20709376}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 20709376}
2022-05-12 22:32:53,819 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:55,884 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127401984}) to executor  for transfer request: 0.
2022-05-12 22:32:55,884 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:55,884 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) about to wait for the following futures []
2022-05-12 22:32:55,885 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127401984}) done waiting for dependent futures
2022-05-12 22:32:55,885 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127401984}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 127401984}
2022-05-12 22:32:55,885 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:56,514 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118489088}) to executor  for transfer request: 0.
2022-05-12 22:32:56,514 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:56,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) about to wait for the following futures []
2022-05-12 22:32:56,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118489088}) done waiting for dependent futures
2022-05-12 22:32:56,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118489088}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 118489088}
2022-05-12 22:32:56,515 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:58,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 80740352}) to executor  for transfer request: 0.
2022-05-12 22:32:58,929 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:58,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) about to wait for the following futures []
2022-05-12 22:32:58,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 80740352}) done waiting for dependent futures
2022-05-12 22:32:58,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 80740352}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 80740352}
2022-05-12 22:32:58,930 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:32:59,397 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90701824}) to executor  for transfer request: 0.
2022-05-12 22:32:59,397 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:32:59,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) about to wait for the following futures []
2022-05-12 22:32:59,398 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90701824}) done waiting for dependent futures
2022-05-12 22:32:59,398 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90701824}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 90701824}
2022-05-12 22:32:59,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:00,844 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 33292288}) to executor  for transfer request: 0.
2022-05-12 22:33:00,844 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:00,844 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:00,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) about to wait for the following futures []
2022-05-12 22:33:00,844 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) about to wait for the following futures []
2022-05-12 22:33:00,844 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 33292288}) done waiting for dependent futures
2022-05-12 22:33:00,845 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) done waiting for dependent futures
2022-05-12 22:33:00,845 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 33292288}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 33292288}
2022-05-12 22:33:00,845 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=134217728-142606335'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=134217728-142606335'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 134217728, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:00,845 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:00,845 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:00,846 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:00,846 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:00,846 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:00,846 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:00,846 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:00,847 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:00,847 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:33:00,847 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:00,847 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:00,847 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=134217728-142606335', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:00,847 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:00,847 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:00,847 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:00,847 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:00,847 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:00,848 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:00,848 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:33:00,848 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:33:00,848 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:00,848 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=134217728-142606335
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223300Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:00,848 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223300Z
20220512/eu-central-1/s3/aws4_request
2cf53c7fb9c492b50eef641d4dc0729cca03b78c8388a2e7755b748c0164f4dd
2022-05-12 22:33:00,848 botocore.auth DEBUG    Signature:
99ed6bb8af67ad9fb339c786261a3b6a8e85c7da0f65f936da75ae61d8e1cc57
2022-05-12 22:33:00,849 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:00,849 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:00,849 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:00,849 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:00,849 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:02,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11010048}) to executor  for transfer request: 0.
2022-05-12 22:33:02,454 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:02,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) about to wait for the following futures []
2022-05-12 22:33:02,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11010048}) done waiting for dependent futures
2022-05-12 22:33:02,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11010048}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 11010048}
2022-05-12 22:33:02,455 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:02,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103546880}) to executor  for transfer request: 0.
2022-05-12 22:33:02,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:02,682 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) about to wait for the following futures []
2022-05-12 22:33:02,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103546880}) done waiting for dependent futures
2022-05-12 22:33:02,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103546880}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 103546880}
2022-05-12 22:33:02,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:03,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127664128}) to executor  for transfer request: 0.
2022-05-12 22:33:03,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:03,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) about to wait for the following futures []
2022-05-12 22:33:03,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127664128}) done waiting for dependent futures
2022-05-12 22:33:03,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127664128}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 127664128}
2022-05-12 22:33:03,195 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:03,801 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:03,802 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ySXs+kDkGwtAJw49iDsPRdJJJ66kjdK87ZoSInqpfMGUaRJ4taF2F9YvH+u0F3ib1O7XYxL7efo=', 'x-amz-request-id': 'BAC57X3F4W18VR74', 'Date': 'Thu, 12 May 2022 22:33:04 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 134217728-142606335/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:03,802 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:03,803 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:03,803 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:03,803 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:08,249 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 20971520}) to executor  for transfer request: 0.
2022-05-12 22:33:08,249 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:08,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) about to wait for the following futures []
2022-05-12 22:33:08,250 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 20971520}) done waiting for dependent futures
2022-05-12 22:33:08,250 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 20971520}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 20971520}
2022-05-12 22:33:08,250 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:08,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 127926272}) to executor  for transfer request: 0.
2022-05-12 22:33:08,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:08,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) about to wait for the following futures []
2022-05-12 22:33:08,783 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 127926272}) done waiting for dependent futures
2022-05-12 22:33:08,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 127926272}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 127926272}
2022-05-12 22:33:08,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:09,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 90963968}) to executor  for transfer request: 0.
2022-05-12 22:33:09,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:09,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) about to wait for the following futures []
2022-05-12 22:33:09,621 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 90963968}) done waiting for dependent futures
2022-05-12 22:33:09,621 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 90963968}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 90963968}
2022-05-12 22:33:09,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:09,715 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134217728}) to executor  for transfer request: 0.
2022-05-12 22:33:09,715 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:09,715 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) about to wait for the following futures []
2022-05-12 22:33:09,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134217728}) done waiting for dependent futures
2022-05-12 22:33:09,716 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134217728}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 134217728}
2022-05-12 22:33:09,716 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,093 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128188416}) to executor  for transfer request: 0.
2022-05-12 22:33:14,093 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:14,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) about to wait for the following futures []
2022-05-12 22:33:14,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128188416}) done waiting for dependent futures
2022-05-12 22:33:14,093 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128188416}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 128188416}
2022-05-12 22:33:14,094 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:14,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11272192}) to executor  for transfer request: 0.
2022-05-12 22:33:14,913 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:14,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) about to wait for the following futures []
2022-05-12 22:33:14,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11272192}) done waiting for dependent futures
2022-05-12 22:33:14,913 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11272192}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 11272192}
2022-05-12 22:33:14,914 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:15,822 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 103809024}) to executor  for transfer request: 0.
2022-05-12 22:33:15,822 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:15,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) about to wait for the following futures []
2022-05-12 22:33:15,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 103809024}) done waiting for dependent futures
2022-05-12 22:33:15,823 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 103809024}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 103809024}
2022-05-12 22:33:15,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:15,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4456448}) to executor  for transfer request: 0.
2022-05-12 22:33:15,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:15,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) about to wait for the following futures []
2022-05-12 22:33:15,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4456448}) done waiting for dependent futures
2022-05-12 22:33:15,998 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4456448}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 4456448}
2022-05-12 22:33:15,998 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:16,083 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81002496}) to executor  for transfer request: 0.
2022-05-12 22:33:16,083 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:16,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) about to wait for the following futures []
2022-05-12 22:33:16,083 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81002496}) done waiting for dependent futures
2022-05-12 22:33:16,084 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81002496}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 81002496}
2022-05-12 22:33:16,084 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:18,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134479872}) to executor  for transfer request: 0.
2022-05-12 22:33:18,454 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:18,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) about to wait for the following futures []
2022-05-12 22:33:18,454 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134479872}) done waiting for dependent futures
2022-05-12 22:33:18,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134479872}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 134479872}
2022-05-12 22:33:18,455 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:19,262 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91226112}) to executor  for transfer request: 0.
2022-05-12 22:33:19,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:19,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) about to wait for the following futures []
2022-05-12 22:33:19,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91226112}) done waiting for dependent futures
2022-05-12 22:33:19,262 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91226112}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 91226112}
2022-05-12 22:33:19,263 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:24,147 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21233664}) to executor  for transfer request: 0.
2022-05-12 22:33:24,147 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:24,147 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) about to wait for the following futures []
2022-05-12 22:33:24,147 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21233664}) done waiting for dependent futures
2022-05-12 22:33:24,148 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21233664}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 21233664}
2022-05-12 22:33:24,148 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:24,349 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 134742016}) to executor  for transfer request: 0.
2022-05-12 22:33:24,349 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:24,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) about to wait for the following futures []
2022-05-12 22:33:24,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 134742016}) done waiting for dependent futures
2022-05-12 22:33:24,350 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 134742016}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 134742016}
2022-05-12 22:33:24,350 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:24,882 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128450560}) to executor  for transfer request: 0.
2022-05-12 22:33:24,882 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:24,882 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) about to wait for the following futures []
2022-05-12 22:33:24,883 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128450560}) done waiting for dependent futures
2022-05-12 22:33:24,883 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128450560}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 128450560}
2022-05-12 22:33:24,883 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:26,447 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104071168}) to executor  for transfer request: 0.
2022-05-12 22:33:26,447 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:26,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) about to wait for the following futures []
2022-05-12 22:33:26,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104071168}) done waiting for dependent futures
2022-05-12 22:33:26,447 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104071168}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 104071168}
2022-05-12 22:33:26,448 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:28,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11534336}) to executor  for transfer request: 0.
2022-05-12 22:33:28,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:28,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) about to wait for the following futures []
2022-05-12 22:33:28,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11534336}) done waiting for dependent futures
2022-05-12 22:33:28,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11534336}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 11534336}
2022-05-12 22:33:28,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,103 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 118751232}) to executor  for transfer request: 0.
2022-05-12 22:33:30,104 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) about to wait for the following futures []
2022-05-12 22:33:30,104 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 118751232}) done waiting for dependent futures
2022-05-12 22:33:30,104 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 118751232}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 118751232}
2022-05-12 22:33:30,104 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,566 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135004160}) to executor  for transfer request: 0.
2022-05-12 22:33:30,567 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) about to wait for the following futures []
2022-05-12 22:33:30,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135004160}) done waiting for dependent futures
2022-05-12 22:33:30,567 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135004160}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 135004160}
2022-05-12 22:33:30,567 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:30,589 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128712704}) to executor  for transfer request: 0.
2022-05-12 22:33:30,589 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:30,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) about to wait for the following futures []
2022-05-12 22:33:30,590 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128712704}) done waiting for dependent futures
2022-05-12 22:33:30,590 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128712704}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 128712704}
2022-05-12 22:33:30,590 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:32,928 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81264640}) to executor  for transfer request: 0.
2022-05-12 22:33:32,928 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:32,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) about to wait for the following futures []
2022-05-12 22:33:32,929 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81264640}) done waiting for dependent futures
2022-05-12 22:33:32,929 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81264640}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 81264640}
2022-05-12 22:33:32,929 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:33,430 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91488256}) to executor  for transfer request: 0.
2022-05-12 22:33:33,430 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:33,431 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) about to wait for the following futures []
2022-05-12 22:33:33,431 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91488256}) done waiting for dependent futures
2022-05-12 22:33:33,431 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91488256}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 91488256}
2022-05-12 22:33:33,431 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:33,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110624768}) to executor  for transfer request: 0.
2022-05-12 22:33:33,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:33,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) about to wait for the following futures []
2022-05-12 22:33:33,464 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110624768}) done waiting for dependent futures
2022-05-12 22:33:33,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110624768}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 110624768}
2022-05-12 22:33:33,465 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:34,620 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 128974848}) to executor  for transfer request: 0.
2022-05-12 22:33:34,620 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:34,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) about to wait for the following futures []
2022-05-12 22:33:34,620 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 128974848}) done waiting for dependent futures
2022-05-12 22:33:34,620 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 128974848}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 128974848}
2022-05-12 22:33:34,621 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:35,247 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21495808}) to executor  for transfer request: 0.
2022-05-12 22:33:35,248 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:35,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) about to wait for the following futures []
2022-05-12 22:33:35,248 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21495808}) done waiting for dependent futures
2022-05-12 22:33:35,248 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21495808}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 21495808}
2022-05-12 22:33:35,249 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:37,886 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135266304}) to executor  for transfer request: 0.
2022-05-12 22:33:37,886 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:37,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) about to wait for the following futures []
2022-05-12 22:33:37,886 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135266304}) done waiting for dependent futures
2022-05-12 22:33:37,886 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135266304}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 135266304}
2022-05-12 22:33:37,886 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:38,336 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104333312}) to executor  for transfer request: 0.
2022-05-12 22:33:38,336 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:38,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) about to wait for the following futures []
2022-05-12 22:33:38,337 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104333312}) done waiting for dependent futures
2022-05-12 22:33:38,337 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104333312}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 104333312}
2022-05-12 22:33:38,337 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:40,154 s3transfer.download DEBUG    Retrying exception caught (Read timeout on endpoint URL: "None"), retrying request, (attempt 0 / 5)
Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 436, in _error_catcher
    yield
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 518, in read
    data = self._fp.read(amt) if not fp_closed else b""
  File "/usr/lib/python3.8/http/client.py", line 459, in read
    n = self.readinto(b)
  File "/usr/lib/python3.8/http/client.py", line 503, in readinto
    n = self.fp.readinto(b)
  File "/usr/lib/python3.8/socket.py", line 669, in readinto
    return self._sock.recv_into(b)
  File "/usr/lib/python3.8/ssl.py", line 1241, in recv_into
    return self.read(nbytes, buffer)
  File "/usr/lib/python3.8/ssl.py", line 1099, in read
    return self._sslobj.read(len, buffer)
socket.timeout: The read operation timed out

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 99, in read
    chunk = self._raw_stream.read(amt)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 540, in read
    raise IncompleteRead(self._fp_bytes_read, self.length_remaining)
  File "/usr/lib/python3.8/contextlib.py", line 131, in __exit__
    self.gen.throw(type, value, traceback)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/urllib3/response.py", line 441, in _error_catcher
    raise ReadTimeoutError(self._pool, None, "Read timed out.")
urllib3.exceptions.ReadTimeoutError: AWSHTTPSConnectionPool(host='plot-delineation.s3.eu-central-1.amazonaws.com', port=443): Read timed out.

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 583, in _main
    for chunk in chunks:
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/download.py", line 728, in __next__
    chunk = self._body.read(self._chunksize)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/s3transfer/utils.py", line 599, in read
    value = self._stream.read(*args, **kwargs)
  File "/home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/botocore/response.py", line 102, in read
    raise ReadTimeoutError(endpoint_url=e.url, error=e)
botocore.exceptions.ReadTimeoutError: Read timeout on endpoint URL: "None"
2022-05-12 22:33:40,155 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:40,155 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:40,155 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:40,155 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:40,155 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:40,155 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:40,155 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:40,155 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:33:40,155 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:40,155 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:40,156 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=92274688-100663295', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:40,156 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:40,156 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:40,156 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:40,156 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:40,156 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:40,156 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:40,156 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:33:40,156 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:33:40,157 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:40,157 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=92274688-100663295
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223340Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:40,157 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223340Z
20220512/eu-central-1/s3/aws4_request
d9823c5d9d4a3c8109fd5e6f4e8f5c272c30624d30e55534ffee097307400e6c
2022-05-12 22:33:40,157 botocore.auth DEBUG    Signature:
6f8eda09a68d9edc548cb9ca69a76fabc4261ca86594336eb9af8ce41206fd67
2022-05-12 22:33:40,157 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:40,157 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:40,157 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:40,158 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:40,158 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:33:41,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 11796480}) to executor  for transfer request: 0.
2022-05-12 22:33:41,133 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:41,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) about to wait for the following futures []
2022-05-12 22:33:41,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 11796480}) done waiting for dependent futures
2022-05-12 22:33:41,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 11796480}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 11796480}
2022-05-12 22:33:41,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:41,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129236992}) to executor  for transfer request: 0.
2022-05-12 22:33:41,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:41,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) about to wait for the following futures []
2022-05-12 22:33:41,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129236992}) done waiting for dependent futures
2022-05-12 22:33:41,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129236992}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 129236992}
2022-05-12 22:33:41,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:42,387 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135528448}) to executor  for transfer request: 0.
2022-05-12 22:33:42,387 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:42,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) about to wait for the following futures []
2022-05-12 22:33:42,387 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135528448}) done waiting for dependent futures
2022-05-12 22:33:42,387 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135528448}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 135528448}
2022-05-12 22:33:42,388 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:43,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 91750400}) to executor  for transfer request: 0.
2022-05-12 22:33:43,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:43,141 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) about to wait for the following futures []
2022-05-12 22:33:43,141 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 91750400}) done waiting for dependent futures
2022-05-12 22:33:43,141 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 91750400}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 91750400}
2022-05-12 22:33:43,141 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:45,707 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:45,707 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'uJoZ3f39zmCtGkvc1jGsTHFIZDucCkrAFqnRHD1H5J3UYyWoyO7RRWkQaRlQd6WB88JdTQHda7M=', 'x-amz-request-id': '2HXVPA77N1Q6E4K5', 'Date': 'Thu, 12 May 2022 22:33:46 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 92274688-100663295/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:33:45,707 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:45,708 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:45,708 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:45,708 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:49,014 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129499136}) to executor  for transfer request: 0.
2022-05-12 22:33:49,014 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) about to wait for the following futures []
2022-05-12 22:33:49,015 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129499136}) done waiting for dependent futures
2022-05-12 22:33:49,015 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129499136}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 129499136}
2022-05-12 22:33:49,015 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:49,716 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 135790592}) to executor  for transfer request: 0.
2022-05-12 22:33:49,716 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:49,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) about to wait for the following futures []
2022-05-12 22:33:49,716 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 135790592}) done waiting for dependent futures
2022-05-12 22:33:49,717 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 135790592}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 135790592}
2022-05-12 22:33:49,717 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:50,061 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92274688}) to executor  for transfer request: 0.
2022-05-12 22:33:50,061 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:50,061 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) about to wait for the following futures []
2022-05-12 22:33:50,061 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92274688}) done waiting for dependent futures
2022-05-12 22:33:50,062 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92274688}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 92274688}
2022-05-12 22:33:50,062 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,835 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92012544}) to executor  for transfer request: 0.
2022-05-12 22:33:51,836 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:51,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,836 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) about to wait for the following futures []
2022-05-12 22:33:51,836 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) done waiting for dependent futures
2022-05-12 22:33:51,836 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=142606336-150994943'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=142606336-150994943'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 142606336, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:33:51,836 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:51,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) about to wait for the following futures []
2022-05-12 22:33:51,837 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:51,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92012544}) done waiting for dependent futures
2022-05-12 22:33:51,837 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:51,837 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92012544}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 92012544}
2022-05-12 22:33:51,838 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:33:51,838 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:33:51,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:51,839 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:51,839 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:33:51,839 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:33:51,839 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:51,839 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:33:51,840 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=142606336-150994943', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:33:51,840 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:51,840 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:33:51,840 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:51,840 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:33:51,840 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:33:51,840 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:33:51,840 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:33:51,840 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:33:51,841 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:33:51,841 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=142606336-150994943
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223351Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:33:51,841 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223351Z
20220512/eu-central-1/s3/aws4_request
3925575506bd8345a418e8f58ecc110877a824d32af669315cc9722ee483d6cd
2022-05-12 22:33:51,841 botocore.auth DEBUG    Signature:
43c97f2dc9c1268ef35b69fb98963c11f75ff17b25fca18f726afc2d8b1ad1c6
2022-05-12 22:33:51,841 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:51,841 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:33:51,841 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:33:51,842 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:33:52,015 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:33:52,015 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'cY7CsOd0bTkNBNYkas0iPwcbiWRafu2wvIkslyl7gVovGAz/+R6FxsykYK+em6UcGlqVxFSwTqA=', 'x-amz-request-id': '83ETVCTJRX3ZPFGX', 'Date': 'Thu, 12 May 2022 22:33:52 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 142606336-150994943/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:33:52,015 botocore.parsers DEBUG    Response body:

2022-05-12 22:33:52,016 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:33:52,016 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:33:52,016 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:33:52,526 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12058624}) to executor  for transfer request: 0.
2022-05-12 22:33:52,526 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) about to wait for the following futures []
2022-05-12 22:33:52,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12058624}) done waiting for dependent futures
2022-05-12 22:33:52,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12058624}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 12058624}
2022-05-12 22:33:52,527 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,683 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119013376}) to executor  for transfer request: 0.
2022-05-12 22:33:52,683 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) about to wait for the following futures []
2022-05-12 22:33:52,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119013376}) done waiting for dependent futures
2022-05-12 22:33:52,684 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119013376}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 119013376}
2022-05-12 22:33:52,684 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:52,971 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 21757952}) to executor  for transfer request: 0.
2022-05-12 22:33:52,972 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:52,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) about to wait for the following futures []
2022-05-12 22:33:52,972 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 21757952}) done waiting for dependent futures
2022-05-12 22:33:52,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 21757952}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 21757952}
2022-05-12 22:33:52,973 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:53,750 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 110886912}) to executor  for transfer request: 0.
2022-05-12 22:33:53,750 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:53,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) about to wait for the following futures []
2022-05-12 22:33:53,751 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 110886912}) done waiting for dependent futures
2022-05-12 22:33:53,751 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 110886912}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 110886912}
2022-05-12 22:33:53,751 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:53,849 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92536832}) to executor  for transfer request: 0.
2022-05-12 22:33:53,849 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:53,849 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) about to wait for the following futures []
2022-05-12 22:33:53,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92536832}) done waiting for dependent futures
2022-05-12 22:33:53,850 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92536832}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 92536832}
2022-05-12 22:33:53,850 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:54,391 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81526784}) to executor  for transfer request: 0.
2022-05-12 22:33:54,392 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:54,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) about to wait for the following futures []
2022-05-12 22:33:54,392 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81526784}) done waiting for dependent futures
2022-05-12 22:33:54,392 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81526784}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 81526784}
2022-05-12 22:33:54,393 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:54,625 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 129761280}) to executor  for transfer request: 0.
2022-05-12 22:33:54,625 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:54,625 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) about to wait for the following futures []
2022-05-12 22:33:54,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 129761280}) done waiting for dependent futures
2022-05-12 22:33:54,626 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 129761280}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 129761280}
2022-05-12 22:33:54,626 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:55,315 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104595456}) to executor  for transfer request: 0.
2022-05-12 22:33:55,316 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:55,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) about to wait for the following futures []
2022-05-12 22:33:55,316 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104595456}) done waiting for dependent futures
2022-05-12 22:33:55,316 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104595456}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 104595456}
2022-05-12 22:33:55,317 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:33:58,564 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 92798976}) to executor  for transfer request: 0.
2022-05-12 22:33:58,565 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:33:58,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) about to wait for the following futures []
2022-05-12 22:33:58,565 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 92798976}) done waiting for dependent futures
2022-05-12 22:33:58,565 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 92798976}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 92798976}
2022-05-12 22:33:58,566 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:00,523 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142606336}) to executor  for transfer request: 0.
2022-05-12 22:34:00,523 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:00,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) about to wait for the following futures []
2022-05-12 22:34:00,524 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142606336}) done waiting for dependent futures
2022-05-12 22:34:00,524 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142606336}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 142606336}
2022-05-12 22:34:00,525 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:01,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136052736}) to executor  for transfer request: 0.
2022-05-12 22:34:01,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:01,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) about to wait for the following futures []
2022-05-12 22:34:01,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136052736}) done waiting for dependent futures
2022-05-12 22:34:01,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136052736}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 136052736}
2022-05-12 22:34:01,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:02,021 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130023424}) to executor  for transfer request: 0.
2022-05-12 22:34:02,021 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:02,021 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) about to wait for the following futures []
2022-05-12 22:34:02,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130023424}) done waiting for dependent futures
2022-05-12 22:34:02,022 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130023424}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 130023424}
2022-05-12 22:34:02,022 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:03,043 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4718592}) to executor  for transfer request: 0.
2022-05-12 22:34:03,043 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:03,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) about to wait for the following futures []
2022-05-12 22:34:03,043 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4718592}) done waiting for dependent futures
2022-05-12 22:34:03,044 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4718592}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 4718592}
2022-05-12 22:34:03,044 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:03,288 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93061120}) to executor  for transfer request: 0.
2022-05-12 22:34:03,289 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:03,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) about to wait for the following futures []
2022-05-12 22:34:03,289 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93061120}) done waiting for dependent futures
2022-05-12 22:34:03,289 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93061120}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 93061120}
2022-05-12 22:34:03,290 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:05,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12320768}) to executor  for transfer request: 0.
2022-05-12 22:34:05,301 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:05,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) about to wait for the following futures []
2022-05-12 22:34:05,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12320768}) done waiting for dependent futures
2022-05-12 22:34:05,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12320768}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 12320768}
2022-05-12 22:34:05,302 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,017 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 104857600}) to executor  for transfer request: 0.
2022-05-12 22:34:06,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) about to wait for the following futures []
2022-05-12 22:34:06,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 104857600}) done waiting for dependent futures
2022-05-12 22:34:06,018 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 104857600}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 104857600}
2022-05-12 22:34:06,018 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22020096}) to executor  for transfer request: 0.
2022-05-12 22:34:06,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) about to wait for the following futures []
2022-05-12 22:34:06,138 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22020096}) done waiting for dependent futures
2022-05-12 22:34:06,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22020096}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 22020096}
2022-05-12 22:34:06,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:06,647 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136314880}) to executor  for transfer request: 0.
2022-05-12 22:34:06,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:06,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) about to wait for the following futures []
2022-05-12 22:34:06,648 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136314880}) done waiting for dependent futures
2022-05-12 22:34:06,648 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136314880}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 136314880}
2022-05-12 22:34:06,648 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:07,688 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93323264}) to executor  for transfer request: 0.
2022-05-12 22:34:07,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:07,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) about to wait for the following futures []
2022-05-12 22:34:07,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93323264}) done waiting for dependent futures
2022-05-12 22:34:07,689 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93323264}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 93323264}
2022-05-12 22:34:07,689 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:08,545 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130285568}) to executor  for transfer request: 0.
2022-05-12 22:34:08,545 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:08,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) about to wait for the following futures []
2022-05-12 22:34:08,545 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130285568}) done waiting for dependent futures
2022-05-12 22:34:08,546 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130285568}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 130285568}
2022-05-12 22:34:08,546 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:11,435 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111149056}) to executor  for transfer request: 0.
2022-05-12 22:34:11,435 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:11,435 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) about to wait for the following futures []
2022-05-12 22:34:11,435 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111149056}) done waiting for dependent futures
2022-05-12 22:34:11,436 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111149056}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 111149056}
2022-05-12 22:34:11,436 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:11,656 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142868480}) to executor  for transfer request: 0.
2022-05-12 22:34:11,656 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:11,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) about to wait for the following futures []
2022-05-12 22:34:11,657 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142868480}) done waiting for dependent futures
2022-05-12 22:34:11,657 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142868480}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 142868480}
2022-05-12 22:34:11,657 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,395 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136577024}) to executor  for transfer request: 0.
2022-05-12 22:34:13,395 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) about to wait for the following futures []
2022-05-12 22:34:13,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136577024}) done waiting for dependent futures
2022-05-12 22:34:13,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136577024}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 136577024}
2022-05-12 22:34:13,396 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,446 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 81788928}) to executor  for transfer request: 0.
2022-05-12 22:34:13,447 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) about to wait for the following futures []
2022-05-12 22:34:13,447 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 81788928}) done waiting for dependent futures
2022-05-12 22:34:13,447 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 81788928}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 81788928}
2022-05-12 22:34:13,448 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:13,889 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119275520}) to executor  for transfer request: 0.
2022-05-12 22:34:13,889 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:13,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) about to wait for the following futures []
2022-05-12 22:34:13,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119275520}) done waiting for dependent futures
2022-05-12 22:34:13,890 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119275520}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 119275520}
2022-05-12 22:34:13,890 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:15,092 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130547712}) to executor  for transfer request: 0.
2022-05-12 22:34:15,092 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:15,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) about to wait for the following futures []
2022-05-12 22:34:15,093 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130547712}) done waiting for dependent futures
2022-05-12 22:34:15,093 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130547712}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 130547712}
2022-05-12 22:34:15,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:15,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105119744}) to executor  for transfer request: 0.
2022-05-12 22:34:15,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:15,235 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) about to wait for the following futures []
2022-05-12 22:34:15,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105119744}) done waiting for dependent futures
2022-05-12 22:34:15,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105119744}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 105119744}
2022-05-12 22:34:15,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:16,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12582912}) to executor  for transfer request: 0.
2022-05-12 22:34:16,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:16,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) about to wait for the following futures []
2022-05-12 22:34:16,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12582912}) done waiting for dependent futures
2022-05-12 22:34:16,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12582912}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 12582912}
2022-05-12 22:34:16,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:17,411 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93585408}) to executor  for transfer request: 0.
2022-05-12 22:34:17,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:17,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) about to wait for the following futures []
2022-05-12 22:34:17,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93585408}) done waiting for dependent futures
2022-05-12 22:34:17,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93585408}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 93585408}
2022-05-12 22:34:17,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,606 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105381888}) to executor  for transfer request: 0.
2022-05-12 22:34:19,606 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,606 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) about to wait for the following futures []
2022-05-12 22:34:19,607 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105381888}) done waiting for dependent futures
2022-05-12 22:34:19,607 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105381888}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 105381888}
2022-05-12 22:34:19,607 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:19,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 130809856}) to executor  for transfer request: 0.
2022-05-12 22:34:19,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:19,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) about to wait for the following futures []
2022-05-12 22:34:19,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 130809856}) done waiting for dependent futures
2022-05-12 22:34:19,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 130809856}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 130809856}
2022-05-12 22:34:19,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:21,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 93847552}) to executor  for transfer request: 0.
2022-05-12 22:34:21,132 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:21,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) about to wait for the following futures []
2022-05-12 22:34:21,133 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 93847552}) done waiting for dependent futures
2022-05-12 22:34:21,133 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 93847552}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 93847552}
2022-05-12 22:34:21,134 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:21,259 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 136839168}) to executor  for transfer request: 0.
2022-05-12 22:34:21,259 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:21,259 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) about to wait for the following futures []
2022-05-12 22:34:21,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 136839168}) done waiting for dependent futures
2022-05-12 22:34:21,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 136839168}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 136839168}
2022-05-12 22:34:21,260 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:21,563 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22282240}) to executor  for transfer request: 0.
2022-05-12 22:34:21,563 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:21,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) about to wait for the following futures []
2022-05-12 22:34:21,563 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22282240}) done waiting for dependent futures
2022-05-12 22:34:21,563 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22282240}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 22282240}
2022-05-12 22:34:21,564 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:22,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143130624}) to executor  for transfer request: 0.
2022-05-12 22:34:22,997 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:22,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) about to wait for the following futures []
2022-05-12 22:34:22,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143130624}) done waiting for dependent futures
2022-05-12 22:34:22,997 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143130624}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 143130624}
2022-05-12 22:34:22,998 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:26,150 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131072000}) to executor  for transfer request: 0.
2022-05-12 22:34:26,150 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:26,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) about to wait for the following futures []
2022-05-12 22:34:26,151 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131072000}) done waiting for dependent futures
2022-05-12 22:34:26,151 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131072000}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 131072000}
2022-05-12 22:34:26,151 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:26,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111411200}) to executor  for transfer request: 0.
2022-05-12 22:34:26,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:26,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) about to wait for the following futures []
2022-05-12 22:34:26,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111411200}) done waiting for dependent futures
2022-05-12 22:34:26,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111411200}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 111411200}
2022-05-12 22:34:26,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:27,411 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82051072}) to executor  for transfer request: 0.
2022-05-12 22:34:27,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:27,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) about to wait for the following futures []
2022-05-12 22:34:27,412 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82051072}) done waiting for dependent futures
2022-05-12 22:34:27,412 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82051072}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 82051072}
2022-05-12 22:34:27,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:28,229 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137101312}) to executor  for transfer request: 0.
2022-05-12 22:34:28,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:28,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) about to wait for the following futures []
2022-05-12 22:34:28,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137101312}) done waiting for dependent futures
2022-05-12 22:34:28,230 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137101312}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 137101312}
2022-05-12 22:34:28,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:28,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94109696}) to executor  for transfer request: 0.
2022-05-12 22:34:28,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:28,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) about to wait for the following futures []
2022-05-12 22:34:28,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94109696}) done waiting for dependent futures
2022-05-12 22:34:28,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94109696}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 94109696}
2022-05-12 22:34:28,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:29,889 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105644032}) to executor  for transfer request: 0.
2022-05-12 22:34:29,890 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:29,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) about to wait for the following futures []
2022-05-12 22:34:29,890 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105644032}) done waiting for dependent futures
2022-05-12 22:34:29,890 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105644032}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 105644032}
2022-05-12 22:34:29,891 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:30,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131334144}) to executor  for transfer request: 0.
2022-05-12 22:34:30,515 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:30,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) about to wait for the following futures []
2022-05-12 22:34:30,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131334144}) done waiting for dependent futures
2022-05-12 22:34:30,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131334144}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 131334144}
2022-05-12 22:34:30,516 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:31,053 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 12845056}) to executor  for transfer request: 0.
2022-05-12 22:34:31,053 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:31,054 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) about to wait for the following futures []
2022-05-12 22:34:31,054 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 12845056}) done waiting for dependent futures
2022-05-12 22:34:31,054 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 12845056}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 12845056}
2022-05-12 22:34:31,054 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:32,337 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143392768}) to executor  for transfer request: 0.
2022-05-12 22:34:32,337 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:32,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) about to wait for the following futures []
2022-05-12 22:34:32,338 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143392768}) done waiting for dependent futures
2022-05-12 22:34:32,338 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143392768}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 143392768}
2022-05-12 22:34:32,338 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:32,711 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94371840}) to executor  for transfer request: 0.
2022-05-12 22:34:32,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:32,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) about to wait for the following futures []
2022-05-12 22:34:32,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94371840}) done waiting for dependent futures
2022-05-12 22:34:32,712 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94371840}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 94371840}
2022-05-12 22:34:32,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:33,771 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137363456}) to executor  for transfer request: 0.
2022-05-12 22:34:33,771 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:33,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) about to wait for the following futures []
2022-05-12 22:34:33,772 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137363456}) done waiting for dependent futures
2022-05-12 22:34:33,772 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137363456}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 137363456}
2022-05-12 22:34:33,772 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:36,996 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119537664}) to executor  for transfer request: 0.
2022-05-12 22:34:36,996 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:36,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) about to wait for the following futures []
2022-05-12 22:34:36,996 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119537664}) done waiting for dependent futures
2022-05-12 22:34:36,997 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119537664}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 119537664}
2022-05-12 22:34:36,997 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,260 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111673344}) to executor  for transfer request: 0.
2022-05-12 22:34:37,260 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) about to wait for the following futures []
2022-05-12 22:34:37,260 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111673344}) done waiting for dependent futures
2022-05-12 22:34:37,260 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111673344}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 111673344}
2022-05-12 22:34:37,261 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:37,439 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131596288}) to executor  for transfer request: 0.
2022-05-12 22:34:37,439 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:37,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) about to wait for the following futures []
2022-05-12 22:34:37,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131596288}) done waiting for dependent futures
2022-05-12 22:34:37,440 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131596288}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 131596288}
2022-05-12 22:34:37,440 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:38,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22544384}) to executor  for transfer request: 0.
2022-05-12 22:34:38,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:38,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) about to wait for the following futures []
2022-05-12 22:34:38,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22544384}) done waiting for dependent futures
2022-05-12 22:34:38,162 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22544384}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 22544384}
2022-05-12 22:34:38,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,367 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 105906176}) to executor  for transfer request: 0.
2022-05-12 22:34:39,368 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) about to wait for the following futures []
2022-05-12 22:34:39,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 105906176}) done waiting for dependent futures
2022-05-12 22:34:39,368 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 105906176}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 105906176}
2022-05-12 22:34:39,369 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94633984}) to executor  for transfer request: 0.
2022-05-12 22:34:39,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) about to wait for the following futures []
2022-05-12 22:34:39,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94633984}) done waiting for dependent futures
2022-05-12 22:34:39,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94633984}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 94633984}
2022-05-12 22:34:39,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:39,702 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137625600}) to executor  for transfer request: 0.
2022-05-12 22:34:39,703 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:39,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) about to wait for the following futures []
2022-05-12 22:34:39,703 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137625600}) done waiting for dependent futures
2022-05-12 22:34:39,703 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137625600}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 137625600}
2022-05-12 22:34:39,704 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:41,661 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82313216}) to executor  for transfer request: 0.
2022-05-12 22:34:41,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:41,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) about to wait for the following futures []
2022-05-12 22:34:41,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82313216}) done waiting for dependent futures
2022-05-12 22:34:41,662 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82313216}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 82313216}
2022-05-12 22:34:41,663 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:42,622 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 131858432}) to executor  for transfer request: 0.
2022-05-12 22:34:42,622 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:42,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) about to wait for the following futures []
2022-05-12 22:34:42,622 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 131858432}) done waiting for dependent futures
2022-05-12 22:34:42,622 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 131858432}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 131858432}
2022-05-12 22:34:42,623 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:42,877 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13107200}) to executor  for transfer request: 0.
2022-05-12 22:34:42,878 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:42,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) about to wait for the following futures []
2022-05-12 22:34:42,878 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13107200}) done waiting for dependent futures
2022-05-12 22:34:42,878 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13107200}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 13107200}
2022-05-12 22:34:42,879 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:46,829 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 94896128}) to executor  for transfer request: 0.
2022-05-12 22:34:46,829 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:46,829 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) about to wait for the following futures []
2022-05-12 22:34:46,830 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 94896128}) done waiting for dependent futures
2022-05-12 22:34:46,830 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 94896128}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 94896128}
2022-05-12 22:34:46,830 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:46,996 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 137887744}) to executor  for transfer request: 0.
2022-05-12 22:34:46,996 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:46,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) about to wait for the following futures []
2022-05-12 22:34:46,997 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 137887744}) done waiting for dependent futures
2022-05-12 22:34:46,997 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 137887744}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 137887744}
2022-05-12 22:34:46,998 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:47,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106168320}) to executor  for transfer request: 0.
2022-05-12 22:34:47,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:47,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) about to wait for the following futures []
2022-05-12 22:34:47,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106168320}) done waiting for dependent futures
2022-05-12 22:34:47,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106168320}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 106168320}
2022-05-12 22:34:47,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:47,732 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 111935488}) to executor  for transfer request: 0.
2022-05-12 22:34:47,732 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:47,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) about to wait for the following futures []
2022-05-12 22:34:47,732 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 111935488}) done waiting for dependent futures
2022-05-12 22:34:47,732 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 111935488}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 111935488}
2022-05-12 22:34:47,733 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:47,875 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143654912}) to executor  for transfer request: 0.
2022-05-12 22:34:47,875 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:47,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) about to wait for the following futures []
2022-05-12 22:34:47,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143654912}) done waiting for dependent futures
2022-05-12 22:34:47,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143654912}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 143654912}
2022-05-12 22:34:47,876 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95158272}) to executor  for transfer request: 0.
2022-05-12 22:34:52,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) about to wait for the following futures []
2022-05-12 22:34:52,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95158272}) done waiting for dependent futures
2022-05-12 22:34:52,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95158272}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 95158272}
2022-05-12 22:34:52,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,597 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 22806528}) to executor  for transfer request: 0.
2022-05-12 22:34:52,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) about to wait for the following futures []
2022-05-12 22:34:52,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 22806528}) done waiting for dependent futures
2022-05-12 22:34:52,598 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 22806528}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 22806528}
2022-05-12 22:34:52,598 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:52,712 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132120576}) to executor  for transfer request: 0.
2022-05-12 22:34:52,712 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:52,712 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) about to wait for the following futures []
2022-05-12 22:34:52,713 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132120576}) done waiting for dependent futures
2022-05-12 22:34:52,713 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132120576}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 132120576}
2022-05-12 22:34:52,713 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:53,176 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 4980736}) to executor  for transfer request: 0.
2022-05-12 22:34:53,176 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:53,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) about to wait for the following futures []
2022-05-12 22:34:53,176 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 4980736}) done waiting for dependent futures
2022-05-12 22:34:53,177 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 4980736}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 4980736}
2022-05-12 22:34:53,177 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106430464}) to executor  for transfer request: 0.
2022-05-12 22:34:54,557 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) about to wait for the following futures []
2022-05-12 22:34:54,557 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106430464}) done waiting for dependent futures
2022-05-12 22:34:54,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106430464}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 106430464}
2022-05-12 22:34:54,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,872 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13369344}) to executor  for transfer request: 0.
2022-05-12 22:34:54,872 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,872 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) about to wait for the following futures []
2022-05-12 22:34:54,873 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13369344}) done waiting for dependent futures
2022-05-12 22:34:54,873 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13369344}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 13369344}
2022-05-12 22:34:54,873 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:54,993 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138149888}) to executor  for transfer request: 0.
2022-05-12 22:34:54,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:54,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) about to wait for the following futures []
2022-05-12 22:34:54,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138149888}) done waiting for dependent futures
2022-05-12 22:34:54,994 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138149888}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 138149888}
2022-05-12 22:34:54,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:56,293 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 143917056}) to executor  for transfer request: 0.
2022-05-12 22:34:56,294 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:56,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) about to wait for the following futures []
2022-05-12 22:34:56,294 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 143917056}) done waiting for dependent futures
2022-05-12 22:34:56,294 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 143917056}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 143917056}
2022-05-12 22:34:56,295 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:56,652 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95420416}) to executor  for transfer request: 0.
2022-05-12 22:34:56,653 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:56,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) about to wait for the following futures []
2022-05-12 22:34:56,653 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95420416}) done waiting for dependent futures
2022-05-12 22:34:56,653 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95420416}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 95420416}
2022-05-12 22:34:56,654 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:59,051 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132382720}) to executor  for transfer request: 0.
2022-05-12 22:34:59,052 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:59,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) about to wait for the following futures []
2022-05-12 22:34:59,052 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132382720}) done waiting for dependent futures
2022-05-12 22:34:59,053 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132382720}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 132382720}
2022-05-12 22:34:59,053 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:34:59,206 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112197632}) to executor  for transfer request: 0.
2022-05-12 22:34:59,206 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:34:59,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) about to wait for the following futures []
2022-05-12 22:34:59,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112197632}) done waiting for dependent futures
2022-05-12 22:34:59,206 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112197632}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 112197632}
2022-05-12 22:34:59,207 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:00,699 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138412032}) to executor  for transfer request: 0.
2022-05-12 22:35:00,699 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:00,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) about to wait for the following futures []
2022-05-12 22:35:00,700 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138412032}) done waiting for dependent futures
2022-05-12 22:35:00,700 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138412032}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 138412032}
2022-05-12 22:35:00,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:00,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95682560}) to executor  for transfer request: 0.
2022-05-12 22:35:00,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:00,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) about to wait for the following futures []
2022-05-12 22:35:00,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95682560}) done waiting for dependent futures
2022-05-12 22:35:00,709 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95682560}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 95682560}
2022-05-12 22:35:00,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:01,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106692608}) to executor  for transfer request: 0.
2022-05-12 22:35:01,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:01,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) about to wait for the following futures []
2022-05-12 22:35:01,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106692608}) done waiting for dependent futures
2022-05-12 22:35:01,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106692608}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 106692608}
2022-05-12 22:35:01,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,547 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82575360}) to executor  for transfer request: 0.
2022-05-12 22:35:02,547 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) about to wait for the following futures []
2022-05-12 22:35:02,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82575360}) done waiting for dependent futures
2022-05-12 22:35:02,547 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82575360}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 82575360}
2022-05-12 22:35:02,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,730 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132644864}) to executor  for transfer request: 0.
2022-05-12 22:35:02,731 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) about to wait for the following futures []
2022-05-12 22:35:02,731 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132644864}) done waiting for dependent futures
2022-05-12 22:35:02,731 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132644864}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 132644864}
2022-05-12 22:35:02,732 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:02,809 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 119799808}) to executor  for transfer request: 0.
2022-05-12 22:35:02,810 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:02,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) about to wait for the following futures []
2022-05-12 22:35:02,810 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 119799808}) done waiting for dependent futures
2022-05-12 22:35:02,810 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 119799808}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 119799808}
2022-05-12 22:35:02,811 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:04,806 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144179200}) to executor  for transfer request: 0.
2022-05-12 22:35:04,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:04,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) about to wait for the following futures []
2022-05-12 22:35:04,807 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144179200}) done waiting for dependent futures
2022-05-12 22:35:04,807 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144179200}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 144179200}
2022-05-12 22:35:04,808 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:05,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138674176}) to executor  for transfer request: 0.
2022-05-12 22:35:05,163 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:05,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) about to wait for the following futures []
2022-05-12 22:35:05,163 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138674176}) done waiting for dependent futures
2022-05-12 22:35:05,163 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138674176}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 138674176}
2022-05-12 22:35:05,164 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:07,064 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 95944704}) to executor  for transfer request: 0.
2022-05-12 22:35:07,064 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:07,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) about to wait for the following futures []
2022-05-12 22:35:07,065 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 95944704}) done waiting for dependent futures
2022-05-12 22:35:07,065 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 95944704}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 95944704}
2022-05-12 22:35:07,065 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:07,309 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 132907008}) to executor  for transfer request: 0.
2022-05-12 22:35:07,310 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:07,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) about to wait for the following futures []
2022-05-12 22:35:07,310 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 132907008}) done waiting for dependent futures
2022-05-12 22:35:07,310 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 132907008}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 132907008}
2022-05-12 22:35:07,311 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:07,867 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 106954752}) to executor  for transfer request: 0.
2022-05-12 22:35:07,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:07,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) about to wait for the following futures []
2022-05-12 22:35:07,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 106954752}) done waiting for dependent futures
2022-05-12 22:35:07,868 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 106954752}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 106954752}
2022-05-12 22:35:07,869 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:08,121 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13631488}) to executor  for transfer request: 0.
2022-05-12 22:35:08,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:08,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) about to wait for the following futures []
2022-05-12 22:35:08,122 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13631488}) done waiting for dependent futures
2022-05-12 22:35:08,122 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13631488}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 13631488}
2022-05-12 22:35:08,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:08,432 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112459776}) to executor  for transfer request: 0.
2022-05-12 22:35:08,432 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:08,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) about to wait for the following futures []
2022-05-12 22:35:08,433 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112459776}) done waiting for dependent futures
2022-05-12 22:35:08,433 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112459776}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 112459776}
2022-05-12 22:35:08,433 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:09,597 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 138936320}) to executor  for transfer request: 0.
2022-05-12 22:35:09,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:09,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) about to wait for the following futures []
2022-05-12 22:35:09,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 138936320}) done waiting for dependent futures
2022-05-12 22:35:09,598 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 138936320}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 138936320}
2022-05-12 22:35:09,598 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:10,556 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 82837504}) to executor  for transfer request: 0.
2022-05-12 22:35:10,556 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:10,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) about to wait for the following futures []
2022-05-12 22:35:10,556 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 82837504}) done waiting for dependent futures
2022-05-12 22:35:10,557 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 82837504}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 82837504}
2022-05-12 22:35:10,557 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:11,555 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23068672}) to executor  for transfer request: 0.
2022-05-12 22:35:11,555 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:11,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) about to wait for the following futures []
2022-05-12 22:35:11,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23068672}) done waiting for dependent futures
2022-05-12 22:35:11,555 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23068672}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 23068672}
2022-05-12 22:35:11,556 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:13,733 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133169152}) to executor  for transfer request: 0.
2022-05-12 22:35:13,733 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:13,733 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) about to wait for the following futures []
2022-05-12 22:35:13,734 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133169152}) done waiting for dependent futures
2022-05-12 22:35:13,734 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133169152}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 133169152}
2022-05-12 22:35:13,734 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:14,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96206848}) to executor  for transfer request: 0.
2022-05-12 22:35:14,310 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:14,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) about to wait for the following futures []
2022-05-12 22:35:14,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96206848}) done waiting for dependent futures
2022-05-12 22:35:14,311 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96206848}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 96206848}
2022-05-12 22:35:14,311 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:14,371 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144441344}) to executor  for transfer request: 0.
2022-05-12 22:35:14,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:14,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) about to wait for the following futures []
2022-05-12 22:35:14,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144441344}) done waiting for dependent futures
2022-05-12 22:35:14,372 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144441344}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 144441344}
2022-05-12 22:35:14,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,015 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107216896}) to executor  for transfer request: 0.
2022-05-12 22:35:15,016 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) about to wait for the following futures []
2022-05-12 22:35:15,016 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107216896}) done waiting for dependent futures
2022-05-12 22:35:15,016 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107216896}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 107216896}
2022-05-12 22:35:15,017 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:15,089 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139198464}) to executor  for transfer request: 0.
2022-05-12 22:35:15,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:15,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) about to wait for the following futures []
2022-05-12 22:35:15,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139198464}) done waiting for dependent futures
2022-05-12 22:35:15,090 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139198464}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 139198464}
2022-05-12 22:35:15,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:17,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96468992}) to executor  for transfer request: 0.
2022-05-12 22:35:17,612 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:17,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) about to wait for the following futures []
2022-05-12 22:35:17,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96468992}) done waiting for dependent futures
2022-05-12 22:35:17,612 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96468992}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 96468992}
2022-05-12 22:35:17,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:18,557 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133431296}) to executor  for transfer request: 0.
2022-05-12 22:35:18,558 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:18,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) about to wait for the following futures []
2022-05-12 22:35:18,558 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133431296}) done waiting for dependent futures
2022-05-12 22:35:18,558 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133431296}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 133431296}
2022-05-12 22:35:18,558 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:19,077 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83099648}) to executor  for transfer request: 0.
2022-05-12 22:35:19,077 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:19,078 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) about to wait for the following futures []
2022-05-12 22:35:19,078 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83099648}) done waiting for dependent futures
2022-05-12 22:35:19,078 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83099648}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 83099648}
2022-05-12 22:35:19,078 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:20,796 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112721920}) to executor  for transfer request: 0.
2022-05-12 22:35:20,797 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:20,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) about to wait for the following futures []
2022-05-12 22:35:20,797 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112721920}) done waiting for dependent futures
2022-05-12 22:35:20,797 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112721920}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 112721920}
2022-05-12 22:35:20,798 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,507 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 13893632}) to executor  for transfer request: 0.
2022-05-12 22:35:21,507 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) about to wait for the following futures []
2022-05-12 22:35:21,507 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 13893632}) done waiting for dependent futures
2022-05-12 22:35:21,507 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 13893632}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 13893632}
2022-05-12 22:35:21,508 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:21,977 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23330816}) to executor  for transfer request: 0.
2022-05-12 22:35:21,977 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:21,977 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) about to wait for the following futures []
2022-05-12 22:35:21,978 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23330816}) done waiting for dependent futures
2022-05-12 22:35:21,978 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23330816}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 23330816}
2022-05-12 22:35:21,978 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:22,310 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139460608}) to executor  for transfer request: 0.
2022-05-12 22:35:22,311 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:22,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) about to wait for the following futures []
2022-05-12 22:35:22,311 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139460608}) done waiting for dependent futures
2022-05-12 22:35:22,311 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139460608}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 139460608}
2022-05-12 22:35:22,312 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:22,509 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107479040}) to executor  for transfer request: 0.
2022-05-12 22:35:22,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:22,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) about to wait for the following futures []
2022-05-12 22:35:22,510 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107479040}) done waiting for dependent futures
2022-05-12 22:35:22,510 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107479040}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 107479040}
2022-05-12 22:35:22,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:23,950 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96731136}) to executor  for transfer request: 0.
2022-05-12 22:35:23,950 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:23,950 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) about to wait for the following futures []
2022-05-12 22:35:23,950 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96731136}) done waiting for dependent futures
2022-05-12 22:35:23,951 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96731136}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 96731136}
2022-05-12 22:35:23,951 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133693440}) to executor  for transfer request: 0.
2022-05-12 22:35:25,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) about to wait for the following futures []
2022-05-12 22:35:25,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133693440}) done waiting for dependent futures
2022-05-12 22:35:25,663 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133693440}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 133693440}
2022-05-12 22:35:25,663 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:25,743 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144703488}) to executor  for transfer request: 0.
2022-05-12 22:35:25,743 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:25,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) about to wait for the following futures []
2022-05-12 22:35:25,744 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144703488}) done waiting for dependent futures
2022-05-12 22:35:25,744 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144703488}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 144703488}
2022-05-12 22:35:25,744 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:28,695 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83361792}) to executor  for transfer request: 0.
2022-05-12 22:35:28,696 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:28,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) about to wait for the following futures []
2022-05-12 22:35:28,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83361792}) done waiting for dependent futures
2022-05-12 22:35:28,696 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83361792}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 83361792}
2022-05-12 22:35:28,697 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:29,441 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 133955584}) to executor  for transfer request: 0.
2022-05-12 22:35:29,441 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:29,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:29,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) about to wait for the following futures []
2022-05-12 22:35:29,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 133955584}) done waiting for dependent futures
2022-05-12 22:35:29,442 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) about to wait for the following futures []
2022-05-12 22:35:29,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 133955584}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 133955584}
2022-05-12 22:35:29,442 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) done waiting for dependent futures
2022-05-12 22:35:29,443 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=150994944-159383551'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=150994944-159383551'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 150994944, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:29,443 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:29,443 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:29,443 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:29,444 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:29,444 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:29,444 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:29,444 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:29,444 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:29,444 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:35:29,444 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:29,444 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:29,444 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=150994944-159383551', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:29,445 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:29,445 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:29,445 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:29,445 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:29,445 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:29,445 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:29,445 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:35:29,445 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:35:29,445 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:29,446 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=150994944-159383551
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223529Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:29,446 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223529Z
20220512/eu-central-1/s3/aws4_request
33aa4fe7285d409d2e85e3f6dacc7f624bc7987a052941daffc9667d9a1519be
2022-05-12 22:35:29,446 botocore.auth DEBUG    Signature:
52dd0a1f14338e011d9b08dcd238018311cd0706ce0e01efba9f49ce1472e772
2022-05-12 22:35:29,446 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:29,446 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:29,446 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:29,446 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:29,446 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:35:29,821 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 107741184}) to executor  for transfer request: 0.
2022-05-12 22:35:29,821 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:29,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) about to wait for the following futures []
2022-05-12 22:35:29,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 107741184}) done waiting for dependent futures
2022-05-12 22:35:29,822 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 107741184}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 107741184}
2022-05-12 22:35:29,822 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:30,390 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120061952}) to executor  for transfer request: 0.
2022-05-12 22:35:30,390 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:30,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) about to wait for the following futures []
2022-05-12 22:35:30,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120061952}) done waiting for dependent futures
2022-05-12 22:35:30,391 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120061952}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 120061952}
2022-05-12 22:35:30,391 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:30,426 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14155776}) to executor  for transfer request: 0.
2022-05-12 22:35:30,426 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:30,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) about to wait for the following futures []
2022-05-12 22:35:30,426 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14155776}) done waiting for dependent futures
2022-05-12 22:35:30,426 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14155776}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 14155776}
2022-05-12 22:35:30,427 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,241 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 96993280}) to executor  for transfer request: 0.
2022-05-12 22:35:31,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) about to wait for the following futures []
2022-05-12 22:35:31,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 96993280}) done waiting for dependent futures
2022-05-12 22:35:31,241 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 96993280}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 96993280}
2022-05-12 22:35:31,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:31,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139722752}) to executor  for transfer request: 0.
2022-05-12 22:35:31,370 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:31,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) about to wait for the following futures []
2022-05-12 22:35:31,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139722752}) done waiting for dependent futures
2022-05-12 22:35:31,371 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139722752}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 139722752}
2022-05-12 22:35:31,371 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:32,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5242880}) to executor  for transfer request: 0.
2022-05-12 22:35:32,026 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:32,026 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) about to wait for the following futures []
2022-05-12 22:35:32,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5242880}) done waiting for dependent futures
2022-05-12 22:35:32,027 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5242880}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 5242880}
2022-05-12 22:35:32,027 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:33,794 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:33,794 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UgzKHsH5fFxYSg1f4vgsu13CNfhtESI/8rMM82NAP4RbLrl/ZPBAoO7vOJiqQo4Z4hcrnPcNbFY=', 'x-amz-request-id': 'V2NAFAQE8B44W819', 'Date': 'Thu, 12 May 2022 22:35:34 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 150994944-159383551/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:35:33,794 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:33,795 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:33,795 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:33,795 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:34,180 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23592960}) to executor  for transfer request: 0.
2022-05-12 22:35:34,180 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:34,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) about to wait for the following futures []
2022-05-12 22:35:34,180 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23592960}) done waiting for dependent futures
2022-05-12 22:35:34,181 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23592960}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 23592960}
2022-05-12 22:35:34,181 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,440 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 83623936}) to executor  for transfer request: 0.
2022-05-12 22:35:35,440 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,440 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,440 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) about to wait for the following futures []
2022-05-12 22:35:35,440 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) about to wait for the following futures []
2022-05-12 22:35:35,440 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) done waiting for dependent futures
2022-05-12 22:35:35,441 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 83623936}) done waiting for dependent futures
2022-05-12 22:35:35,441 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=159383552-167772159'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=159383552-167772159'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 159383552, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:35:35,441 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 83623936}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 83623936}
2022-05-12 22:35:35,441 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:35,442 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:35,442 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:35,442 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:35:35,442 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:35:35,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,442 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:35,443 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:35:35,443 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:35:35,443 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:35,443 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:35:35,443 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=159383552-167772159', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:35:35,443 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:35,443 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:35:35,443 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:35,443 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:35:35,443 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:35:35,443 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:35:35,444 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:35:35,444 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:35:35,444 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:35:35,444 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=159383552-167772159
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223535Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:35:35,444 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223535Z
20220512/eu-central-1/s3/aws4_request
7e84bd9b5e5c3effaa5f1cdae2d710773953201ce0b125441cedac2042db2360
2022-05-12 22:35:35,444 botocore.auth DEBUG    Signature:
6f8a768525e18a29ed61cac80dfbe0ef6a060ba2a9d3dbb849a887da3eef2d0e
2022-05-12 22:35:35,444 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:35,444 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:35:35,445 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:35:35,445 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:35:35,543 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 144965632}) to executor  for transfer request: 0.
2022-05-12 22:35:35,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) about to wait for the following futures []
2022-05-12 22:35:35,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 144965632}) done waiting for dependent futures
2022-05-12 22:35:35,544 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 144965632}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 144965632}
2022-05-12 22:35:35,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:35,655 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:35:35,656 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+H9ikNCIT+H+9ydKxahC3/X8jZtiJ4PViBVMZ+u/Y5lPBXpFTro2vMQPq8uL5YI4Xk6SKcr/xaQ=', 'x-amz-request-id': 'BPW4HP5R7909NHPB', 'Date': 'Thu, 12 May 2022 22:35:36 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 159383552-167772159/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:35:35,656 botocore.parsers DEBUG    Response body:

2022-05-12 22:35:35,656 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:35:35,656 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:35:35,656 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:35:35,994 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 112984064}) to executor  for transfer request: 0.
2022-05-12 22:35:35,994 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:35,994 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) about to wait for the following futures []
2022-05-12 22:35:35,995 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 112984064}) done waiting for dependent futures
2022-05-12 22:35:35,995 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 112984064}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 112984064}
2022-05-12 22:35:35,995 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:36,898 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 139984896}) to executor  for transfer request: 0.
2022-05-12 22:35:36,899 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:36,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) about to wait for the following futures []
2022-05-12 22:35:36,899 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 139984896}) done waiting for dependent futures
2022-05-12 22:35:36,899 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 139984896}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 139984896}
2022-05-12 22:35:36,900 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:38,527 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97255424}) to executor  for transfer request: 0.
2022-05-12 22:35:38,527 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:38,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) about to wait for the following futures []
2022-05-12 22:35:38,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97255424}) done waiting for dependent futures
2022-05-12 22:35:38,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97255424}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 97255424}
2022-05-12 22:35:38,528 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:38,683 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108003328}) to executor  for transfer request: 0.
2022-05-12 22:35:38,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:38,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) about to wait for the following futures []
2022-05-12 22:35:38,684 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108003328}) done waiting for dependent futures
2022-05-12 22:35:38,684 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108003328}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 108003328}
2022-05-12 22:35:38,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:42,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159383552}) to executor  for transfer request: 0.
2022-05-12 22:35:42,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:42,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) about to wait for the following futures []
2022-05-12 22:35:42,954 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159383552}) done waiting for dependent futures
2022-05-12 22:35:42,954 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159383552}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 159383552}
2022-05-12 22:35:42,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:42,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150994944}) to executor  for transfer request: 0.
2022-05-12 22:35:42,986 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:42,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) about to wait for the following futures []
2022-05-12 22:35:42,987 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150994944}) done waiting for dependent futures
2022-05-12 22:35:42,987 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150994944}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 150994944}
2022-05-12 22:35:42,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:43,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14417920}) to executor  for transfer request: 0.
2022-05-12 22:35:43,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:43,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) about to wait for the following futures []
2022-05-12 22:35:43,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14417920}) done waiting for dependent futures
2022-05-12 22:35:43,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14417920}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 14417920}
2022-05-12 22:35:43,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:44,936 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97517568}) to executor  for transfer request: 0.
2022-05-12 22:35:44,936 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:44,936 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) about to wait for the following futures []
2022-05-12 22:35:44,937 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97517568}) done waiting for dependent futures
2022-05-12 22:35:44,937 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97517568}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 97517568}
2022-05-12 22:35:44,937 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:45,168 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145227776}) to executor  for transfer request: 0.
2022-05-12 22:35:45,168 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:45,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) about to wait for the following futures []
2022-05-12 22:35:45,169 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145227776}) done waiting for dependent futures
2022-05-12 22:35:45,169 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145227776}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 145227776}
2022-05-12 22:35:45,169 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:45,593 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140247040}) to executor  for transfer request: 0.
2022-05-12 22:35:45,593 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:45,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) about to wait for the following futures []
2022-05-12 22:35:45,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140247040}) done waiting for dependent futures
2022-05-12 22:35:45,594 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140247040}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 140247040}
2022-05-12 22:35:45,594 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:45,894 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113246208}) to executor  for transfer request: 0.
2022-05-12 22:35:45,894 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:45,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) about to wait for the following futures []
2022-05-12 22:35:45,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113246208}) done waiting for dependent futures
2022-05-12 22:35:45,895 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113246208}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 113246208}
2022-05-12 22:35:45,895 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:47,438 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151257088}) to executor  for transfer request: 0.
2022-05-12 22:35:47,438 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:47,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) about to wait for the following futures []
2022-05-12 22:35:47,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151257088}) done waiting for dependent futures
2022-05-12 22:35:47,439 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151257088}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 151257088}
2022-05-12 22:35:47,439 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:48,272 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108265472}) to executor  for transfer request: 0.
2022-05-12 22:35:48,272 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:48,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) about to wait for the following futures []
2022-05-12 22:35:48,273 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108265472}) done waiting for dependent futures
2022-05-12 22:35:48,273 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108265472}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 108265472}
2022-05-12 22:35:48,273 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:49,459 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 23855104}) to executor  for transfer request: 0.
2022-05-12 22:35:49,459 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:49,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) about to wait for the following futures []
2022-05-12 22:35:49,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 23855104}) done waiting for dependent futures
2022-05-12 22:35:49,460 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 23855104}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 23855104}
2022-05-12 22:35:49,460 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:50,072 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 97779712}) to executor  for transfer request: 0.
2022-05-12 22:35:50,072 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:50,072 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) about to wait for the following futures []
2022-05-12 22:35:50,072 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 97779712}) done waiting for dependent futures
2022-05-12 22:35:50,072 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 97779712}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 97779712}
2022-05-12 22:35:50,073 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:51,876 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159645696}) to executor  for transfer request: 0.
2022-05-12 22:35:51,876 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:51,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) about to wait for the following futures []
2022-05-12 22:35:51,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159645696}) done waiting for dependent futures
2022-05-12 22:35:51,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159645696}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 159645696}
2022-05-12 22:35:51,877 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:52,551 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140509184}) to executor  for transfer request: 0.
2022-05-12 22:35:52,551 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:52,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) about to wait for the following futures []
2022-05-12 22:35:52,552 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140509184}) done waiting for dependent futures
2022-05-12 22:35:52,552 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140509184}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 140509184}
2022-05-12 22:35:52,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:52,631 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14680064}) to executor  for transfer request: 0.
2022-05-12 22:35:52,631 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:52,631 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) about to wait for the following futures []
2022-05-12 22:35:52,631 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14680064}) done waiting for dependent futures
2022-05-12 22:35:52,632 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14680064}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 14680064}
2022-05-12 22:35:52,632 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:54,244 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151519232}) to executor  for transfer request: 0.
2022-05-12 22:35:54,245 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:54,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) about to wait for the following futures []
2022-05-12 22:35:54,245 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151519232}) done waiting for dependent futures
2022-05-12 22:35:54,245 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151519232}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 151519232}
2022-05-12 22:35:54,246 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:55,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98041856}) to executor  for transfer request: 0.
2022-05-12 22:35:55,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:55,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) about to wait for the following futures []
2022-05-12 22:35:55,329 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98041856}) done waiting for dependent futures
2022-05-12 22:35:55,329 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98041856}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 98041856}
2022-05-12 22:35:55,329 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:56,118 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108527616}) to executor  for transfer request: 0.
2022-05-12 22:35:56,118 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:56,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) about to wait for the following futures []
2022-05-12 22:35:56,118 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108527616}) done waiting for dependent futures
2022-05-12 22:35:56,118 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108527616}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 108527616}
2022-05-12 22:35:56,119 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:56,803 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145489920}) to executor  for transfer request: 0.
2022-05-12 22:35:56,803 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:56,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) about to wait for the following futures []
2022-05-12 22:35:56,804 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145489920}) done waiting for dependent futures
2022-05-12 22:35:56,804 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145489920}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 145489920}
2022-05-12 22:35:56,804 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159907840}) to executor  for transfer request: 0.
2022-05-12 22:35:57,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) about to wait for the following futures []
2022-05-12 22:35:57,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159907840}) done waiting for dependent futures
2022-05-12 22:35:57,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159907840}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 159907840}
2022-05-12 22:35:57,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,217 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 140771328}) to executor  for transfer request: 0.
2022-05-12 22:35:57,217 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) about to wait for the following futures []
2022-05-12 22:35:57,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 140771328}) done waiting for dependent futures
2022-05-12 22:35:57,218 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 140771328}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 140771328}
2022-05-12 22:35:57,218 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,263 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120324096}) to executor  for transfer request: 0.
2022-05-12 22:35:57,263 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) about to wait for the following futures []
2022-05-12 22:35:57,263 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120324096}) done waiting for dependent futures
2022-05-12 22:35:57,263 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120324096}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 120324096}
2022-05-12 22:35:57,264 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:35:57,358 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24117248}) to executor  for transfer request: 0.
2022-05-12 22:35:57,358 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:35:57,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) about to wait for the following futures []
2022-05-12 22:35:57,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24117248}) done waiting for dependent futures
2022-05-12 22:35:57,359 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24117248}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 24117248}
2022-05-12 22:35:57,359 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:00,812 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98304000}) to executor  for transfer request: 0.
2022-05-12 22:36:00,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:00,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) about to wait for the following futures []
2022-05-12 22:36:00,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98304000}) done waiting for dependent futures
2022-05-12 22:36:00,813 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98304000}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 98304000}
2022-05-12 22:36:00,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:01,760 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113508352}) to executor  for transfer request: 0.
2022-05-12 22:36:01,761 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:01,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) about to wait for the following futures []
2022-05-12 22:36:01,761 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113508352}) done waiting for dependent futures
2022-05-12 22:36:01,761 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113508352}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 113508352}
2022-05-12 22:36:01,762 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:01,836 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160169984}) to executor  for transfer request: 0.
2022-05-12 22:36:01,836 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:01,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) about to wait for the following futures []
2022-05-12 22:36:01,837 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160169984}) done waiting for dependent futures
2022-05-12 22:36:01,837 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160169984}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 160169984}
2022-05-12 22:36:01,838 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:02,096 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 14942208}) to executor  for transfer request: 0.
2022-05-12 22:36:02,096 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:02,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) about to wait for the following futures []
2022-05-12 22:36:02,097 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 14942208}) done waiting for dependent futures
2022-05-12 22:36:02,097 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 14942208}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 14942208}
2022-05-12 22:36:02,097 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:02,578 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 108789760}) to executor  for transfer request: 0.
2022-05-12 22:36:02,579 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:02,579 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:02,579 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) about to wait for the following futures []
2022-05-12 22:36:02,579 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) done waiting for dependent futures
2022-05-12 22:36:02,579 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=167772160-176160767'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=167772160-176160767'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 167772160, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:02,579 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:02,579 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:02,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) about to wait for the following futures []
2022-05-12 22:36:02,580 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:02,580 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 108789760}) done waiting for dependent futures
2022-05-12 22:36:02,580 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:02,580 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 108789760}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 108789760}
2022-05-12 22:36:02,580 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:02,581 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:02,581 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:02,581 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:02,581 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:02,581 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:02,581 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:02,582 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=167772160-176160767', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:02,582 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:02,582 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:02,582 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:02,582 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:02,582 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:02,582 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:02,582 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:02,583 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:02,583 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:02,583 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=167772160-176160767
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223602Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:02,583 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223602Z
20220512/eu-central-1/s3/aws4_request
77e8fc81fda33adb49800d1975a71209e61f2c9c0f79e9bbe9fe45e143382aab
2022-05-12 22:36:02,583 botocore.auth DEBUG    Signature:
87a1da9e21de8e7efc3cb35eb03cb3c5e99f9779f94644656340bb30cbcc3155
2022-05-12 22:36:02,583 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:02,583 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:02,584 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:02,584 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:02,584 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:36:02,658 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141033472}) to executor  for transfer request: 0.
2022-05-12 22:36:02,658 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:02,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) about to wait for the following futures []
2022-05-12 22:36:02,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141033472}) done waiting for dependent futures
2022-05-12 22:36:02,658 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141033472}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 141033472}
2022-05-12 22:36:02,659 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:02,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 151781376}) to executor  for transfer request: 0.
2022-05-12 22:36:02,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:02,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) about to wait for the following futures []
2022-05-12 22:36:02,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 151781376}) done waiting for dependent futures
2022-05-12 22:36:02,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 151781376}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 151781376}
2022-05-12 22:36:02,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:03,869 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:03,869 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 't5OhgWx57zP0wlCjrjBNtywEySsAgA8fylCwAflhpQIJY2YnXyRG+9IJ2kv2z41ncdulGk19b08=', 'x-amz-request-id': '0V4EZ8MC96BVTDKC', 'Date': 'Thu, 12 May 2022 22:36:04 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 167772160-176160767/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:36:03,869 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:03,870 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:03,870 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:03,870 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:05,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24379392}) to executor  for transfer request: 0.
2022-05-12 22:36:05,059 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) about to wait for the following futures []
2022-05-12 22:36:05,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24379392}) done waiting for dependent futures
2022-05-12 22:36:05,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24379392}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 24379392}
2022-05-12 22:36:05,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98566144}) to executor  for transfer request: 0.
2022-05-12 22:36:05,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) about to wait for the following futures []
2022-05-12 22:36:05,909 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98566144}) done waiting for dependent futures
2022-05-12 22:36:05,910 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98566144}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 98566144}
2022-05-12 22:36:05,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:05,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 145752064}) to executor  for transfer request: 0.
2022-05-12 22:36:05,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:05,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) about to wait for the following futures []
2022-05-12 22:36:05,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 145752064}) done waiting for dependent futures
2022-05-12 22:36:05,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 145752064}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 145752064}
2022-05-12 22:36:05,925 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:08,970 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152043520}) to executor  for transfer request: 0.
2022-05-12 22:36:08,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:08,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) about to wait for the following futures []
2022-05-12 22:36:08,970 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152043520}) done waiting for dependent futures
2022-05-12 22:36:08,971 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152043520}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 152043520}
2022-05-12 22:36:08,971 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:09,268 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167772160}) to executor  for transfer request: 0.
2022-05-12 22:36:09,268 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:09,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) about to wait for the following futures []
2022-05-12 22:36:09,268 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167772160}) done waiting for dependent futures
2022-05-12 22:36:09,268 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167772160}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 167772160}
2022-05-12 22:36:09,269 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:09,838 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160432128}) to executor  for transfer request: 0.
2022-05-12 22:36:09,838 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:09,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) about to wait for the following futures []
2022-05-12 22:36:09,839 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160432128}) done waiting for dependent futures
2022-05-12 22:36:09,839 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160432128}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 160432128}
2022-05-12 22:36:09,839 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:10,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 98828288}) to executor  for transfer request: 0.
2022-05-12 22:36:10,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:10,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) about to wait for the following futures []
2022-05-12 22:36:10,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 98828288}) done waiting for dependent futures
2022-05-12 22:36:10,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 98828288}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 98828288}
2022-05-12 22:36:10,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:12,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168034304}) to executor  for transfer request: 0.
2022-05-12 22:36:12,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:12,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) about to wait for the following futures []
2022-05-12 22:36:12,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168034304}) done waiting for dependent futures
2022-05-12 22:36:12,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168034304}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 168034304}
2022-05-12 22:36:12,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:12,205 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15204352}) to executor  for transfer request: 0.
2022-05-12 22:36:12,205 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:12,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) about to wait for the following futures []
2022-05-12 22:36:12,205 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15204352}) done waiting for dependent futures
2022-05-12 22:36:12,205 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15204352}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 15204352}
2022-05-12 22:36:12,206 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:12,351 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 113770496}) to executor  for transfer request: 0.
2022-05-12 22:36:12,351 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:12,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) about to wait for the following futures []
2022-05-12 22:36:12,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 113770496}) done waiting for dependent futures
2022-05-12 22:36:12,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 113770496}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 113770496}
2022-05-12 22:36:12,352 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:13,781 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160694272}) to executor  for transfer request: 0.
2022-05-12 22:36:13,781 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:13,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) about to wait for the following futures []
2022-05-12 22:36:13,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160694272}) done waiting for dependent futures
2022-05-12 22:36:13,782 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160694272}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 160694272}
2022-05-12 22:36:13,782 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:13,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141295616}) to executor  for transfer request: 0.
2022-05-12 22:36:13,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:13,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) about to wait for the following futures []
2022-05-12 22:36:13,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141295616}) done waiting for dependent futures
2022-05-12 22:36:13,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141295616}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 141295616}
2022-05-12 22:36:13,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:14,098 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5505024}) to executor  for transfer request: 0.
2022-05-12 22:36:14,098 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:14,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) about to wait for the following futures []
2022-05-12 22:36:14,099 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5505024}) done waiting for dependent futures
2022-05-12 22:36:14,099 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5505024}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 5505024}
2022-05-12 22:36:14,099 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:15,463 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24641536}) to executor  for transfer request: 0.
2022-05-12 22:36:15,463 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:15,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) about to wait for the following futures []
2022-05-12 22:36:15,463 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24641536}) done waiting for dependent futures
2022-05-12 22:36:15,464 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24641536}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 24641536}
2022-05-12 22:36:15,464 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:16,026 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99090432}) to executor  for transfer request: 0.
2022-05-12 22:36:16,027 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:16,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) about to wait for the following futures []
2022-05-12 22:36:16,027 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99090432}) done waiting for dependent futures
2022-05-12 22:36:16,027 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99090432}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 99090432}
2022-05-12 22:36:16,028 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:16,559 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146014208}) to executor  for transfer request: 0.
2022-05-12 22:36:16,560 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:16,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) about to wait for the following futures []
2022-05-12 22:36:16,560 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146014208}) done waiting for dependent futures
2022-05-12 22:36:16,560 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146014208}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 146014208}
2022-05-12 22:36:16,561 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:16,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114032640}) to executor  for transfer request: 0.
2022-05-12 22:36:16,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:16,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) about to wait for the following futures []
2022-05-12 22:36:16,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114032640}) done waiting for dependent futures
2022-05-12 22:36:16,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114032640}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 114032640}
2022-05-12 22:36:16,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,350 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168296448}) to executor  for transfer request: 0.
2022-05-12 22:36:17,350 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) about to wait for the following futures []
2022-05-12 22:36:17,351 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168296448}) done waiting for dependent futures
2022-05-12 22:36:17,351 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168296448}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 168296448}
2022-05-12 22:36:17,352 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:17,850 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152305664}) to executor  for transfer request: 0.
2022-05-12 22:36:17,850 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:17,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) about to wait for the following futures []
2022-05-12 22:36:17,850 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152305664}) done waiting for dependent futures
2022-05-12 22:36:17,851 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152305664}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 152305664}
2022-05-12 22:36:17,851 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,068 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120586240}) to executor  for transfer request: 0.
2022-05-12 22:36:18,068 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) about to wait for the following futures []
2022-05-12 22:36:18,068 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120586240}) done waiting for dependent futures
2022-05-12 22:36:18,069 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120586240}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 120586240}
2022-05-12 22:36:18,069 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:18,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141557760}) to executor  for transfer request: 0.
2022-05-12 22:36:18,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:18,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) about to wait for the following futures []
2022-05-12 22:36:18,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141557760}) done waiting for dependent futures
2022-05-12 22:36:18,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141557760}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 141557760}
2022-05-12 22:36:18,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:19,097 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15466496}) to executor  for transfer request: 0.
2022-05-12 22:36:19,097 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:19,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) about to wait for the following futures []
2022-05-12 22:36:19,098 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15466496}) done waiting for dependent futures
2022-05-12 22:36:19,098 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15466496}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 15466496}
2022-05-12 22:36:19,098 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:21,212 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168558592}) to executor  for transfer request: 0.
2022-05-12 22:36:21,212 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:21,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) about to wait for the following futures []
2022-05-12 22:36:21,212 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168558592}) done waiting for dependent futures
2022-05-12 22:36:21,212 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168558592}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 168558592}
2022-05-12 22:36:21,213 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:21,643 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 160956416}) to executor  for transfer request: 0.
2022-05-12 22:36:21,644 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:21,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) about to wait for the following futures []
2022-05-12 22:36:21,644 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 160956416}) done waiting for dependent futures
2022-05-12 22:36:21,644 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 160956416}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 160956416}
2022-05-12 22:36:21,645 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:22,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 24903680}) to executor  for transfer request: 0.
2022-05-12 22:36:22,370 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:22,370 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:22,370 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) about to wait for the following futures []
2022-05-12 22:36:22,370 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) about to wait for the following futures []
2022-05-12 22:36:22,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 24903680}) done waiting for dependent futures
2022-05-12 22:36:22,371 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) done waiting for dependent futures
2022-05-12 22:36:22,371 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 24903680}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 24903680}
2022-05-12 22:36:22,371 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=176160768-184549375'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=176160768-184549375'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 176160768, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:22,371 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:22,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:22,372 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:22,372 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:22,372 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:22,372 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:22,372 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:22,372 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:22,372 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:22,372 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:22,373 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:22,373 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=176160768-184549375', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:22,373 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:22,373 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:22,373 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:22,373 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:22,373 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:22,373 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:22,373 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:22,373 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:22,374 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:22,374 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=176160768-184549375
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223622Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:22,374 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223622Z
20220512/eu-central-1/s3/aws4_request
f7fd610a76959902145690535e1da9805023a06d3d7c3d52ff15dc8d0af36569
2022-05-12 22:36:22,374 botocore.auth DEBUG    Signature:
f449ecf2a1928707dc0ec6645bac3c52b17be6e51810c18c3e17723ae547360e
2022-05-12 22:36:22,374 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:22,374 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:22,374 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:22,375 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:22,566 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:22,566 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 't1vLVhRu3OLYBm+hSz07tOUE4p6B72a8VIwUqo0qlOxOj2wniAOM3qU9SFqmHIr7wPQNkmlvH2U=', 'x-amz-request-id': 'NPEVPD4P9ENE23JH', 'Date': 'Thu, 12 May 2022 22:36:23 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 176160768-184549375/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:36:22,567 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:22,567 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:22,567 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:22,567 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:23,497 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99352576}) to executor  for transfer request: 0.
2022-05-12 22:36:23,497 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,497 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) about to wait for the following futures []
2022-05-12 22:36:23,498 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99352576}) done waiting for dependent futures
2022-05-12 22:36:23,498 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99352576}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 99352576}
2022-05-12 22:36:23,498 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:23,638 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 141819904}) to executor  for transfer request: 0.
2022-05-12 22:36:23,638 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:23,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) about to wait for the following futures []
2022-05-12 22:36:23,638 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 141819904}) done waiting for dependent futures
2022-05-12 22:36:23,639 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 141819904}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 141819904}
2022-05-12 22:36:23,639 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:24,266 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114294784}) to executor  for transfer request: 0.
2022-05-12 22:36:24,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:24,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) about to wait for the following futures []
2022-05-12 22:36:24,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114294784}) done waiting for dependent futures
2022-05-12 22:36:24,266 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114294784}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 114294784}
2022-05-12 22:36:24,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:25,822 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146276352}) to executor  for transfer request: 0.
2022-05-12 22:36:25,822 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:25,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) about to wait for the following futures []
2022-05-12 22:36:25,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146276352}) done waiting for dependent futures
2022-05-12 22:36:25,823 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146276352}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 146276352}
2022-05-12 22:36:25,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:25,924 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 168820736}) to executor  for transfer request: 0.
2022-05-12 22:36:25,924 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:25,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) about to wait for the following futures []
2022-05-12 22:36:25,925 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 168820736}) done waiting for dependent futures
2022-05-12 22:36:25,925 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 168820736}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 168820736}
2022-05-12 22:36:25,926 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:26,023 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15728640}) to executor  for transfer request: 0.
2022-05-12 22:36:26,024 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:26,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) about to wait for the following futures []
2022-05-12 22:36:26,024 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15728640}) done waiting for dependent futures
2022-05-12 22:36:26,024 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15728640}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 15728640}
2022-05-12 22:36:26,025 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,155 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152567808}) to executor  for transfer request: 0.
2022-05-12 22:36:27,155 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) about to wait for the following futures []
2022-05-12 22:36:27,156 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152567808}) done waiting for dependent futures
2022-05-12 22:36:27,156 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152567808}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 152567808}
2022-05-12 22:36:27,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,452 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114556928}) to executor  for transfer request: 0.
2022-05-12 22:36:27,452 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,452 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) about to wait for the following futures []
2022-05-12 22:36:27,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114556928}) done waiting for dependent futures
2022-05-12 22:36:27,453 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114556928}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 114556928}
2022-05-12 22:36:27,453 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:27,822 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142082048}) to executor  for transfer request: 0.
2022-05-12 22:36:27,822 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:27,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) about to wait for the following futures []
2022-05-12 22:36:27,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142082048}) done waiting for dependent futures
2022-05-12 22:36:27,823 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142082048}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 142082048}
2022-05-12 22:36:27,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:28,909 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99614720}) to executor  for transfer request: 0.
2022-05-12 22:36:28,909 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:28,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) about to wait for the following futures []
2022-05-12 22:36:28,910 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99614720}) done waiting for dependent futures
2022-05-12 22:36:28,910 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99614720}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 99614720}
2022-05-12 22:36:28,910 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:30,945 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 114819072}) to executor  for transfer request: 0.
2022-05-12 22:36:30,946 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:30,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) about to wait for the following futures []
2022-05-12 22:36:30,946 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 114819072}) done waiting for dependent futures
2022-05-12 22:36:30,946 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 114819072}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 114819072}
2022-05-12 22:36:30,946 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:31,571 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 15990784}) to executor  for transfer request: 0.
2022-05-12 22:36:31,571 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:31,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) about to wait for the following futures []
2022-05-12 22:36:31,572 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 15990784}) done waiting for dependent futures
2022-05-12 22:36:31,572 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 15990784}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 15990784}
2022-05-12 22:36:31,572 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:32,206 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161218560}) to executor  for transfer request: 0.
2022-05-12 22:36:32,206 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:32,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) about to wait for the following futures []
2022-05-12 22:36:32,206 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161218560}) done waiting for dependent futures
2022-05-12 22:36:32,207 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161218560}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 161218560}
2022-05-12 22:36:32,207 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:32,721 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 142344192}) to executor  for transfer request: 0.
2022-05-12 22:36:32,721 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:32,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:32,722 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) about to wait for the following futures []
2022-05-12 22:36:32,722 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) done waiting for dependent futures
2022-05-12 22:36:32,722 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=184549376-192937983'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=184549376-192937983'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 184549376, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:32,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:32,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:32,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:32,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:32,722 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:32,723 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:32,723 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:32,723 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:32,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) about to wait for the following futures []
2022-05-12 22:36:32,723 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:32,723 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 142344192}) done waiting for dependent futures
2022-05-12 22:36:32,724 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:32,724 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 142344192}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 142344192}
2022-05-12 22:36:32,724 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=184549376-192937983', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:32,725 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:32,725 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:32,725 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:32,725 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:32,725 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:32,725 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:32,725 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:32,726 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:32,726 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:32,726 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:32,726 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=184549376-192937983
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223632Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:32,726 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223632Z
20220512/eu-central-1/s3/aws4_request
5b950d76042f74349a0a7ddbc7deac8965fb910b91459b6c7e847bcb2a9ce94f
2022-05-12 22:36:32,726 botocore.auth DEBUG    Signature:
847ac9827d26b87b6074704ffae3a4aaddeb5ed4ebfc65f66ef753362215c581
2022-05-12 22:36:32,727 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:32,727 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:32,727 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:32,727 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:32,914 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:32,914 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'mveStI0b5xKe0yMlvAmUCdn1nnyaF8iTqgFLqhD6aA04/2tbkjmetM+afdxcij2rAwt8WI0SVRY=', 'x-amz-request-id': '3RKJP4WKZEF4HQTE', 'Date': 'Thu, 12 May 2022 22:36:33 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 184549376-192937983/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:36:32,915 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:32,915 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:32,915 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:32,916 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:33,018 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176160768}) to executor  for transfer request: 0.
2022-05-12 22:36:33,018 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) about to wait for the following futures []
2022-05-12 22:36:33,018 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176160768}) done waiting for dependent futures
2022-05-12 22:36:33,019 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176160768}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 176160768}
2022-05-12 22:36:33,019 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,445 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169082880}) to executor  for transfer request: 0.
2022-05-12 22:36:33,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) about to wait for the following futures []
2022-05-12 22:36:33,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169082880}) done waiting for dependent futures
2022-05-12 22:36:33,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169082880}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 169082880}
2022-05-12 22:36:33,447 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:33,527 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 99876864}) to executor  for transfer request: 0.
2022-05-12 22:36:33,527 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:33,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) about to wait for the following futures []
2022-05-12 22:36:33,527 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 99876864}) done waiting for dependent futures
2022-05-12 22:36:33,527 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 99876864}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 99876864}
2022-05-12 22:36:33,528 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:34,801 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 152829952}) to executor  for transfer request: 0.
2022-05-12 22:36:34,801 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:34,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) about to wait for the following futures []
2022-05-12 22:36:34,801 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 152829952}) done waiting for dependent futures
2022-05-12 22:36:34,801 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 152829952}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 152829952}
2022-05-12 22:36:34,802 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:35,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146538496}) to executor  for transfer request: 0.
2022-05-12 22:36:35,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:35,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) about to wait for the following futures []
2022-05-12 22:36:35,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146538496}) done waiting for dependent futures
2022-05-12 22:36:35,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146538496}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 146538496}
2022-05-12 22:36:35,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:36,264 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115081216}) to executor  for transfer request: 0.
2022-05-12 22:36:36,264 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:36,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) about to wait for the following futures []
2022-05-12 22:36:36,265 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115081216}) done waiting for dependent futures
2022-05-12 22:36:36,265 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115081216}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 115081216}
2022-05-12 22:36:36,265 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:36,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184549376}) to executor  for transfer request: 0.
2022-05-12 22:36:36,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:36,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) about to wait for the following futures []
2022-05-12 22:36:36,397 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184549376}) done waiting for dependent futures
2022-05-12 22:36:36,397 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184549376}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 184549376}
2022-05-12 22:36:36,398 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:36,545 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16252928}) to executor  for transfer request: 0.
2022-05-12 22:36:36,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:36,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) about to wait for the following futures []
2022-05-12 22:36:36,546 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16252928}) done waiting for dependent futures
2022-05-12 22:36:36,546 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16252928}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 16252928}
2022-05-12 22:36:36,547 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:37,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 120848384}) to executor  for transfer request: 0.
2022-05-12 22:36:37,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:37,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) about to wait for the following futures []
2022-05-12 22:36:37,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 120848384}) done waiting for dependent futures
2022-05-12 22:36:37,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 120848384}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 120848384}
2022-05-12 22:36:37,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:39,792 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100139008}) to executor  for transfer request: 0.
2022-05-12 22:36:39,792 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:39,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) about to wait for the following futures []
2022-05-12 22:36:39,793 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100139008}) done waiting for dependent futures
2022-05-12 22:36:39,793 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100139008}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 100139008}
2022-05-12 22:36:39,793 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:40,831 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153092096}) to executor  for transfer request: 0.
2022-05-12 22:36:40,831 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:40,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) about to wait for the following futures []
2022-05-12 22:36:40,831 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153092096}) done waiting for dependent futures
2022-05-12 22:36:40,831 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153092096}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 153092096}
2022-05-12 22:36:40,832 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:40,930 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169345024}) to executor  for transfer request: 0.
2022-05-12 22:36:40,930 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:40,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) about to wait for the following futures []
2022-05-12 22:36:40,930 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169345024}) done waiting for dependent futures
2022-05-12 22:36:40,931 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169345024}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 169345024}
2022-05-12 22:36:40,931 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:41,770 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161480704}) to executor  for transfer request: 0.
2022-05-12 22:36:41,770 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:41,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) about to wait for the following futures []
2022-05-12 22:36:41,771 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161480704}) done waiting for dependent futures
2022-05-12 22:36:41,771 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161480704}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 161480704}
2022-05-12 22:36:41,771 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:42,752 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184811520}) to executor  for transfer request: 0.
2022-05-12 22:36:42,752 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:42,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) about to wait for the following futures []
2022-05-12 22:36:42,752 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184811520}) done waiting for dependent futures
2022-05-12 22:36:42,753 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184811520}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 184811520}
2022-05-12 22:36:42,753 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:43,789 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176422912}) to executor  for transfer request: 0.
2022-05-12 22:36:43,789 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:43,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) about to wait for the following futures []
2022-05-12 22:36:43,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176422912}) done waiting for dependent futures
2022-05-12 22:36:43,790 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176422912}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 176422912}
2022-05-12 22:36:43,790 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,179 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185073664}) to executor  for transfer request: 0.
2022-05-12 22:36:45,179 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:45,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) about to wait for the following futures []
2022-05-12 22:36:45,179 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185073664}) done waiting for dependent futures
2022-05-12 22:36:45,180 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185073664}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 185073664}
2022-05-12 22:36:45,180 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,242 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 100401152}) to executor  for transfer request: 0.
2022-05-12 22:36:45,242 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:45,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,242 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) about to wait for the following futures []
2022-05-12 22:36:45,242 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) done waiting for dependent futures
2022-05-12 22:36:45,243 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=192937984-201326591'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=192937984-201326591'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 192937984, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:45,243 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:45,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) about to wait for the following futures []
2022-05-12 22:36:45,243 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:45,243 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 100401152}) done waiting for dependent futures
2022-05-12 22:36:45,243 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:45,243 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 100401152}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 100401152}
2022-05-12 22:36:45,244 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:45,244 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:45,244 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:45,244 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,244 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:45,244 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:45,244 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:45,245 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:45,245 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=192937984-201326591', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:45,245 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:45,245 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:45,245 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:45,245 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:45,245 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:45,245 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:45,245 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:45,245 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:45,246 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:45,246 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=192937984-201326591
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223645Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:45,246 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223645Z
20220512/eu-central-1/s3/aws4_request
246a3b263bb200d42332f0e04fc64f58299b0a01fa20ae30da4ad673c8a5caf4
2022-05-12 22:36:45,246 botocore.auth DEBUG    Signature:
0ecac898782b50d1f516a91182a2c4c45f3c4e1c22797f22ad78b1a7c741474b
2022-05-12 22:36:45,246 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:45,246 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:45,246 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:45,247 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:45,446 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:45,446 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'eoi9pZEwbcgtXcxszQEkjMT93WlR55l2V9U9LlXaLd6N42aWTVpboLOFEjVzvFfUxctBgGuCRKM=', 'x-amz-request-id': 'KBABRQ4QXK39N3R9', 'Date': 'Thu, 12 May 2022 22:36:46 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 192937984-201326591/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:36:45,447 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:45,447 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:45,448 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:45,448 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:45,664 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 16515072}) to executor  for transfer request: 0.
2022-05-12 22:36:45,664 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:45,664 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) about to wait for the following futures []
2022-05-12 22:36:45,665 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) about to wait for the following futures []
2022-05-12 22:36:45,665 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 16515072}) done waiting for dependent futures
2022-05-12 22:36:45,665 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) done waiting for dependent futures
2022-05-12 22:36:45,665 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 16515072}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 16515072}
2022-05-12 22:36:45,665 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=201326592-209715199'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=201326592-209715199'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 201326592, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:36:45,665 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:45,666 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:45,666 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,666 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:45,666 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:36:45,666 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:36:45,666 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:45,666 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:36:45,667 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:45,667 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:45,667 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:36:45,667 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=201326592-209715199', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:36:45,667 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:45,667 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:36:45,667 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:45,667 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:36:45,667 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:36:45,668 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:36:45,668 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:45,668 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:36:45,668 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:36:45,668 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=201326592-209715199
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223645Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:36:45,668 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223645Z
20220512/eu-central-1/s3/aws4_request
713941834ce3a9f83d5b561de8bb8dd663705462e2de687dc7cf090967adf08a
2022-05-12 22:36:45,668 botocore.auth DEBUG    Signature:
4f5300bf6ed31063222438fcc4107fb09059b2f898cfc1955b60aa693d8986c5
2022-05-12 22:36:45,669 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:45,669 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:36:45,669 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:36:45,669 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:36:45,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115343360}) to executor  for transfer request: 0.
2022-05-12 22:36:45,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:45,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) about to wait for the following futures []
2022-05-12 22:36:45,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115343360}) done waiting for dependent futures
2022-05-12 22:36:45,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115343360}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 115343360}
2022-05-12 22:36:45,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:45,938 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:36:45,939 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'VSfW2bc71Kv0DLTDbDt92Df/2x40RooBqC9OBL+rvZ7dmRPuC7UcY7K2JE98gGbjXXUMPpAE5vQ=', 'x-amz-request-id': 'KBAC59CA9483K215', 'Date': 'Thu, 12 May 2022 22:36:46 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 201326592-209715199/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608', 'Connection': 'close'}
2022-05-12 22:36:45,939 botocore.parsers DEBUG    Response body:

2022-05-12 22:36:45,940 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:36:45,940 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:36:45,941 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:36:47,218 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 146800640}) to executor  for transfer request: 0.
2022-05-12 22:36:47,218 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:47,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) about to wait for the following futures []
2022-05-12 22:36:47,218 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 146800640}) done waiting for dependent futures
2022-05-12 22:36:47,218 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 146800640}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 146800640}
2022-05-12 22:36:47,219 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:48,089 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169607168}) to executor  for transfer request: 0.
2022-05-12 22:36:48,089 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:48,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) about to wait for the following futures []
2022-05-12 22:36:48,090 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169607168}) done waiting for dependent futures
2022-05-12 22:36:48,090 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169607168}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 169607168}
2022-05-12 22:36:48,090 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:49,095 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153354240}) to executor  for transfer request: 0.
2022-05-12 22:36:49,095 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:49,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) about to wait for the following futures []
2022-05-12 22:36:49,095 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153354240}) done waiting for dependent futures
2022-05-12 22:36:49,095 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153354240}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 153354240}
2022-05-12 22:36:49,096 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:49,427 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 161742848}) to executor  for transfer request: 0.
2022-05-12 22:36:49,427 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:49,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) about to wait for the following futures []
2022-05-12 22:36:49,428 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 161742848}) done waiting for dependent futures
2022-05-12 22:36:49,428 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 161742848}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 161742848}
2022-05-12 22:36:49,429 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:50,439 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176685056}) to executor  for transfer request: 0.
2022-05-12 22:36:50,439 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:50,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) about to wait for the following futures []
2022-05-12 22:36:50,439 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176685056}) done waiting for dependent futures
2022-05-12 22:36:50,439 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176685056}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 176685056}
2022-05-12 22:36:50,440 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:51,911 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185335808}) to executor  for transfer request: 0.
2022-05-12 22:36:51,911 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:51,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) about to wait for the following futures []
2022-05-12 22:36:51,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185335808}) done waiting for dependent futures
2022-05-12 22:36:51,912 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185335808}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 185335808}
2022-05-12 22:36:51,912 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:52,066 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115605504}) to executor  for transfer request: 0.
2022-05-12 22:36:52,066 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:52,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) about to wait for the following futures []
2022-05-12 22:36:52,067 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115605504}) done waiting for dependent futures
2022-05-12 22:36:52,067 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115605504}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 115605504}
2022-05-12 22:36:52,067 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:53,949 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192937984}) to executor  for transfer request: 0.
2022-05-12 22:36:53,949 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:53,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) about to wait for the following futures []
2022-05-12 22:36:53,949 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192937984}) done waiting for dependent futures
2022-05-12 22:36:53,950 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192937984}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 192937984}
2022-05-12 22:36:53,950 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:54,694 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162004992}) to executor  for transfer request: 0.
2022-05-12 22:36:54,694 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:54,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) about to wait for the following futures []
2022-05-12 22:36:54,694 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162004992}) done waiting for dependent futures
2022-05-12 22:36:54,694 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162004992}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 162004992}
2022-05-12 22:36:54,695 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:54,835 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 115867648}) to executor  for transfer request: 0.
2022-05-12 22:36:54,835 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:54,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) about to wait for the following futures []
2022-05-12 22:36:54,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 115867648}) done waiting for dependent futures
2022-05-12 22:36:54,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 115867648}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 115867648}
2022-05-12 22:36:54,836 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:55,459 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201326592}) to executor  for transfer request: 0.
2022-05-12 22:36:55,460 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:55,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) about to wait for the following futures []
2022-05-12 22:36:55,460 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201326592}) done waiting for dependent futures
2022-05-12 22:36:55,460 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201326592}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 201326592}
2022-05-12 22:36:55,461 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:57,424 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 5767168}) to executor  for transfer request: 0.
2022-05-12 22:36:57,424 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:57,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) about to wait for the following futures []
2022-05-12 22:36:57,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 5767168}) done waiting for dependent futures
2022-05-12 22:36:57,425 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 5767168}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 5767168}
2022-05-12 22:36:57,425 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:36:59,504 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147062784}) to executor  for transfer request: 0.
2022-05-12 22:36:59,504 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:36:59,505 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) about to wait for the following futures []
2022-05-12 22:36:59,505 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147062784}) done waiting for dependent futures
2022-05-12 22:36:59,505 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147062784}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 147062784}
2022-05-12 22:36:59,505 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:00,030 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153616384}) to executor  for transfer request: 0.
2022-05-12 22:37:00,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:00,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) about to wait for the following futures []
2022-05-12 22:37:00,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153616384}) done waiting for dependent futures
2022-05-12 22:37:00,031 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153616384}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 153616384}
2022-05-12 22:37:00,031 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:00,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185597952}) to executor  for transfer request: 0.
2022-05-12 22:37:00,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:00,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) about to wait for the following futures []
2022-05-12 22:37:00,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185597952}) done waiting for dependent futures
2022-05-12 22:37:00,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185597952}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 185597952}
2022-05-12 22:37:00,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:00,244 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 169869312}) to executor  for transfer request: 0.
2022-05-12 22:37:00,244 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:00,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) about to wait for the following futures []
2022-05-12 22:37:00,244 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 169869312}) done waiting for dependent futures
2022-05-12 22:37:00,245 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 169869312}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 169869312}
2022-05-12 22:37:00,245 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:00,611 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 176947200}) to executor  for transfer request: 0.
2022-05-12 22:37:00,611 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:00,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) about to wait for the following futures []
2022-05-12 22:37:00,612 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 176947200}) done waiting for dependent futures
2022-05-12 22:37:00,612 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 176947200}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 176947200}
2022-05-12 22:37:00,612 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,199 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116129792}) to executor  for transfer request: 0.
2022-05-12 22:37:02,200 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) about to wait for the following futures []
2022-05-12 22:37:02,200 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116129792}) done waiting for dependent futures
2022-05-12 22:37:02,200 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116129792}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 116129792}
2022-05-12 22:37:02,201 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:02,853 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121110528}) to executor  for transfer request: 0.
2022-05-12 22:37:02,854 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:02,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) about to wait for the following futures []
2022-05-12 22:37:02,854 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121110528}) done waiting for dependent futures
2022-05-12 22:37:02,854 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121110528}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 121110528}
2022-05-12 22:37:02,855 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:03,372 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193200128}) to executor  for transfer request: 0.
2022-05-12 22:37:03,372 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:03,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) about to wait for the following futures []
2022-05-12 22:37:03,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193200128}) done waiting for dependent futures
2022-05-12 22:37:03,373 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193200128}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 193200128}
2022-05-12 22:37:03,373 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:04,915 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201588736}) to executor  for transfer request: 0.
2022-05-12 22:37:04,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:04,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) about to wait for the following futures []
2022-05-12 22:37:04,915 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201588736}) done waiting for dependent futures
2022-05-12 22:37:04,915 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201588736}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 201588736}
2022-05-12 22:37:04,916 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:05,489 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170131456}) to executor  for transfer request: 0.
2022-05-12 22:37:05,490 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:05,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) about to wait for the following futures []
2022-05-12 22:37:05,490 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170131456}) done waiting for dependent futures
2022-05-12 22:37:05,490 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170131456}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 170131456}
2022-05-12 22:37:05,491 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:06,266 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 185860096}) to executor  for transfer request: 0.
2022-05-12 22:37:06,266 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:06,266 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) about to wait for the following futures []
2022-05-12 22:37:06,267 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 185860096}) done waiting for dependent futures
2022-05-12 22:37:06,267 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 185860096}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 185860096}
2022-05-12 22:37:06,267 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:06,869 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 153878528}) to executor  for transfer request: 0.
2022-05-12 22:37:06,869 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:06,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) about to wait for the following futures []
2022-05-12 22:37:06,870 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 153878528}) done waiting for dependent futures
2022-05-12 22:37:06,870 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 153878528}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 153878528}
2022-05-12 22:37:06,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:07,762 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177209344}) to executor  for transfer request: 0.
2022-05-12 22:37:07,762 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:07,762 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) about to wait for the following futures []
2022-05-12 22:37:07,763 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177209344}) done waiting for dependent futures
2022-05-12 22:37:07,763 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177209344}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 177209344}
2022-05-12 22:37:07,763 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,137 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116391936}) to executor  for transfer request: 0.
2022-05-12 22:37:08,137 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) about to wait for the following futures []
2022-05-12 22:37:08,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116391936}) done waiting for dependent futures
2022-05-12 22:37:08,138 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116391936}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 116391936}
2022-05-12 22:37:08,138 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:08,417 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147324928}) to executor  for transfer request: 0.
2022-05-12 22:37:08,417 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:08,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) about to wait for the following futures []
2022-05-12 22:37:08,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147324928}) done waiting for dependent futures
2022-05-12 22:37:08,418 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147324928}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 147324928}
2022-05-12 22:37:08,418 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:10,822 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193462272}) to executor  for transfer request: 0.
2022-05-12 22:37:10,822 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:10,822 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) about to wait for the following futures []
2022-05-12 22:37:10,823 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193462272}) done waiting for dependent futures
2022-05-12 22:37:10,823 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193462272}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 193462272}
2022-05-12 22:37:10,823 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:11,962 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186122240}) to executor  for transfer request: 0.
2022-05-12 22:37:11,962 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:11,962 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) about to wait for the following futures []
2022-05-12 22:37:11,963 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186122240}) done waiting for dependent futures
2022-05-12 22:37:11,963 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186122240}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 186122240}
2022-05-12 22:37:11,963 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:12,321 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162267136}) to executor  for transfer request: 0.
2022-05-12 22:37:12,321 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:12,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) about to wait for the following futures []
2022-05-12 22:37:12,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162267136}) done waiting for dependent futures
2022-05-12 22:37:12,321 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162267136}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 162267136}
2022-05-12 22:37:12,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:12,820 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154140672}) to executor  for transfer request: 0.
2022-05-12 22:37:12,820 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:12,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) about to wait for the following futures []
2022-05-12 22:37:12,821 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154140672}) done waiting for dependent futures
2022-05-12 22:37:12,821 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154140672}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 154140672}
2022-05-12 22:37:12,821 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:13,228 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201850880}) to executor  for transfer request: 0.
2022-05-12 22:37:13,228 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:13,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) about to wait for the following futures []
2022-05-12 22:37:13,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201850880}) done waiting for dependent futures
2022-05-12 22:37:13,229 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201850880}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 201850880}
2022-05-12 22:37:13,229 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:13,625 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170393600}) to executor  for transfer request: 0.
2022-05-12 22:37:13,625 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:13,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) about to wait for the following futures []
2022-05-12 22:37:13,626 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170393600}) done waiting for dependent futures
2022-05-12 22:37:13,626 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170393600}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 170393600}
2022-05-12 22:37:13,626 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:15,169 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116654080}) to executor  for transfer request: 0.
2022-05-12 22:37:15,169 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:15,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) about to wait for the following futures []
2022-05-12 22:37:15,170 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116654080}) done waiting for dependent futures
2022-05-12 22:37:15,170 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116654080}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 116654080}
2022-05-12 22:37:15,170 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:15,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193724416}) to executor  for transfer request: 0.
2022-05-12 22:37:15,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:15,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) about to wait for the following futures []
2022-05-12 22:37:15,404 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193724416}) done waiting for dependent futures
2022-05-12 22:37:15,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193724416}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 193724416}
2022-05-12 22:37:15,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:16,376 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147587072}) to executor  for transfer request: 0.
2022-05-12 22:37:16,376 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:16,376 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) about to wait for the following futures []
2022-05-12 22:37:16,377 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147587072}) done waiting for dependent futures
2022-05-12 22:37:16,377 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147587072}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 147587072}
2022-05-12 22:37:16,377 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:16,404 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186384384}) to executor  for transfer request: 0.
2022-05-12 22:37:16,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:16,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) about to wait for the following futures []
2022-05-12 22:37:16,405 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186384384}) done waiting for dependent futures
2022-05-12 22:37:16,405 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186384384}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 186384384}
2022-05-12 22:37:16,405 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177471488}) to executor  for transfer request: 0.
2022-05-12 22:37:17,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) about to wait for the following futures []
2022-05-12 22:37:17,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177471488}) done waiting for dependent futures
2022-05-12 22:37:17,010 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177471488}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 177471488}
2022-05-12 22:37:17,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:17,445 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154402816}) to executor  for transfer request: 0.
2022-05-12 22:37:17,446 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:17,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) about to wait for the following futures []
2022-05-12 22:37:17,446 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154402816}) done waiting for dependent futures
2022-05-12 22:37:17,446 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154402816}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 154402816}
2022-05-12 22:37:17,446 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:18,251 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170655744}) to executor  for transfer request: 0.
2022-05-12 22:37:18,251 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:18,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) about to wait for the following futures []
2022-05-12 22:37:18,251 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170655744}) done waiting for dependent futures
2022-05-12 22:37:18,251 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170655744}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 170655744}
2022-05-12 22:37:18,252 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:19,333 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 193986560}) to executor  for transfer request: 0.
2022-05-12 22:37:19,333 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:19,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) about to wait for the following futures []
2022-05-12 22:37:19,333 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 193986560}) done waiting for dependent futures
2022-05-12 22:37:19,333 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 193986560}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 193986560}
2022-05-12 22:37:19,334 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:20,360 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202113024}) to executor  for transfer request: 0.
2022-05-12 22:37:20,360 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:20,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) about to wait for the following futures []
2022-05-12 22:37:20,361 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202113024}) done waiting for dependent futures
2022-05-12 22:37:20,361 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202113024}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 202113024}
2022-05-12 22:37:20,362 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:20,502 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 116916224}) to executor  for transfer request: 0.
2022-05-12 22:37:20,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:20,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) about to wait for the following futures []
2022-05-12 22:37:20,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 116916224}) done waiting for dependent futures
2022-05-12 22:37:20,503 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 116916224}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 116916224}
2022-05-12 22:37:20,504 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:21,779 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 170917888}) to executor  for transfer request: 0.
2022-05-12 22:37:21,779 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:21,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) about to wait for the following futures []
2022-05-12 22:37:21,780 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 170917888}) done waiting for dependent futures
2022-05-12 22:37:21,781 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 170917888}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 170917888}
2022-05-12 22:37:21,781 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,128 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186646528}) to executor  for transfer request: 0.
2022-05-12 22:37:22,128 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) about to wait for the following futures []
2022-05-12 22:37:22,129 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186646528}) done waiting for dependent futures
2022-05-12 22:37:22,129 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186646528}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 186646528}
2022-05-12 22:37:22,129 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,277 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121372672}) to executor  for transfer request: 0.
2022-05-12 22:37:22,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) about to wait for the following futures []
2022-05-12 22:37:22,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121372672}) done waiting for dependent futures
2022-05-12 22:37:22,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121372672}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 121372672}
2022-05-12 22:37:22,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,646 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194248704}) to executor  for transfer request: 0.
2022-05-12 22:37:22,647 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) about to wait for the following futures []
2022-05-12 22:37:22,647 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194248704}) done waiting for dependent futures
2022-05-12 22:37:22,647 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194248704}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 194248704}
2022-05-12 22:37:22,647 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:22,753 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 147849216}) to executor  for transfer request: 0.
2022-05-12 22:37:22,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:22,753 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) about to wait for the following futures []
2022-05-12 22:37:22,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 147849216}) done waiting for dependent futures
2022-05-12 22:37:22,754 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 147849216}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 147849216}
2022-05-12 22:37:22,754 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:24,441 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177733632}) to executor  for transfer request: 0.
2022-05-12 22:37:24,442 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:24,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) about to wait for the following futures []
2022-05-12 22:37:24,442 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177733632}) done waiting for dependent futures
2022-05-12 22:37:24,442 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177733632}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 177733632}
2022-05-12 22:37:24,442 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:24,623 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154664960}) to executor  for transfer request: 0.
2022-05-12 22:37:24,623 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:24,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) about to wait for the following futures []
2022-05-12 22:37:24,623 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154664960}) done waiting for dependent futures
2022-05-12 22:37:24,624 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154664960}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 154664960}
2022-05-12 22:37:24,624 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:24,790 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171180032}) to executor  for transfer request: 0.
2022-05-12 22:37:24,790 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:24,790 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) about to wait for the following futures []
2022-05-12 22:37:24,791 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171180032}) done waiting for dependent futures
2022-05-12 22:37:24,791 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171180032}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 171180032}
2022-05-12 22:37:24,791 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:25,697 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 117178368}) to executor  for transfer request: 0.
2022-05-12 22:37:25,697 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:25,698 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:25,698 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) about to wait for the following futures []
2022-05-12 22:37:25,699 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 117178368}) done waiting for dependent futures
2022-05-12 22:37:25,698 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) about to wait for the following futures []
2022-05-12 22:37:25,699 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 117178368}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 117178368}
2022-05-12 22:37:25,699 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) done waiting for dependent futures
2022-05-12 22:37:25,699 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=209715200-218103807'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=209715200-218103807'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 209715200, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:37:25,699 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:25,699 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:25,700 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:25,700 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:25,700 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:37:25,700 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:37:25,701 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:25,701 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:37:25,701 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:37:25,701 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:25,701 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:37:25,701 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=209715200-218103807', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:37:25,702 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:25,702 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:37:25,702 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:25,702 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:37:25,702 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:37:25,702 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:37:25,702 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:37:25,702 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:37:25,703 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:37:25,703 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=209715200-218103807
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223725Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:37:25,703 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223725Z
20220512/eu-central-1/s3/aws4_request
7c2e22807281305cdc0fd604df5ee06e67e8e0d53d23b80d7471a25829672b0c
2022-05-12 22:37:25,703 botocore.auth DEBUG    Signature:
af534c60adca45a30683063ea35cf570c46104762eec54e0eb60ef766b8afabe
2022-05-12 22:37:25,704 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:25,704 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:37:25,704 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:37:25,704 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:37:25,704 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:37:27,352 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194510848}) to executor  for transfer request: 0.
2022-05-12 22:37:27,352 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) about to wait for the following futures []
2022-05-12 22:37:27,353 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194510848}) done waiting for dependent futures
2022-05-12 22:37:27,353 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194510848}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 194510848}
2022-05-12 22:37:27,353 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,473 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 186908672}) to executor  for transfer request: 0.
2022-05-12 22:37:27,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:27,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) about to wait for the following futures []
2022-05-12 22:37:27,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 186908672}) done waiting for dependent futures
2022-05-12 22:37:27,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 186908672}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 186908672}
2022-05-12 22:37:27,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:27,522 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:37:27,522 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'MnoIXKWZonie35sOJByV4NqxXsAosLcVjVNuBWiPosq7YBua4sNCnOaLu/vTkBPanvKiV4a1eXw=', 'x-amz-request-id': 'P6JZE4CC5NQQW36H', 'Date': 'Thu, 12 May 2022 22:37:28 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 209715200-218103807/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:37:27,522 botocore.parsers DEBUG    Response body:

2022-05-12 22:37:27,523 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:37:27,523 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:37:27,523 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:37:28,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 177995776}) to executor  for transfer request: 0.
2022-05-12 22:37:28,553 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:28,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) about to wait for the following futures []
2022-05-12 22:37:28,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 177995776}) done waiting for dependent futures
2022-05-12 22:37:28,554 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 177995776}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 177995776}
2022-05-12 22:37:28,554 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:28,921 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162529280}) to executor  for transfer request: 0.
2022-05-12 22:37:28,921 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:28,921 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) about to wait for the following futures []
2022-05-12 22:37:28,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162529280}) done waiting for dependent futures
2022-05-12 22:37:28,922 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162529280}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 162529280}
2022-05-12 22:37:28,922 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:30,495 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202375168}) to executor  for transfer request: 0.
2022-05-12 22:37:30,495 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:30,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) about to wait for the following futures []
2022-05-12 22:37:30,496 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202375168}) done waiting for dependent futures
2022-05-12 22:37:30,496 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202375168}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 202375168}
2022-05-12 22:37:30,496 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:31,335 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148111360}) to executor  for transfer request: 0.
2022-05-12 22:37:31,336 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:31,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) about to wait for the following futures []
2022-05-12 22:37:31,336 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148111360}) done waiting for dependent futures
2022-05-12 22:37:31,336 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148111360}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 148111360}
2022-05-12 22:37:31,337 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:31,453 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171442176}) to executor  for transfer request: 0.
2022-05-12 22:37:31,453 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:31,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) about to wait for the following futures []
2022-05-12 22:37:31,453 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171442176}) done waiting for dependent futures
2022-05-12 22:37:31,454 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171442176}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 171442176}
2022-05-12 22:37:31,454 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:31,608 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187170816}) to executor  for transfer request: 0.
2022-05-12 22:37:31,608 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:31,608 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) about to wait for the following futures []
2022-05-12 22:37:31,608 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187170816}) done waiting for dependent futures
2022-05-12 22:37:31,609 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187170816}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 187170816}
2022-05-12 22:37:31,609 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,478 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 194772992}) to executor  for transfer request: 0.
2022-05-12 22:37:32,478 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) about to wait for the following futures []
2022-05-12 22:37:32,479 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 194772992}) done waiting for dependent futures
2022-05-12 22:37:32,479 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 194772992}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 194772992}
2022-05-12 22:37:32,480 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:32,946 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6029312}) to executor  for transfer request: 0.
2022-05-12 22:37:32,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:32,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) about to wait for the following futures []
2022-05-12 22:37:32,947 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6029312}) done waiting for dependent futures
2022-05-12 22:37:32,947 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6029312}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 6029312}
2022-05-12 22:37:32,947 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:33,512 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178257920}) to executor  for transfer request: 0.
2022-05-12 22:37:33,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:33,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) about to wait for the following futures []
2022-05-12 22:37:33,513 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178257920}) done waiting for dependent futures
2022-05-12 22:37:33,513 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178257920}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 178257920}
2022-05-12 22:37:33,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:35,992 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202637312}) to executor  for transfer request: 0.
2022-05-12 22:37:35,993 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:35,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) about to wait for the following futures []
2022-05-12 22:37:35,993 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202637312}) done waiting for dependent futures
2022-05-12 22:37:35,993 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202637312}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 202637312}
2022-05-12 22:37:35,994 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:36,371 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187432960}) to executor  for transfer request: 0.
2022-05-12 22:37:36,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:36,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) about to wait for the following futures []
2022-05-12 22:37:36,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187432960}) done waiting for dependent futures
2022-05-12 22:37:36,372 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187432960}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 187432960}
2022-05-12 22:37:36,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:36,510 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 154927104}) to executor  for transfer request: 0.
2022-05-12 22:37:36,510 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:36,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) about to wait for the following futures []
2022-05-12 22:37:36,511 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 154927104}) done waiting for dependent futures
2022-05-12 22:37:36,511 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 154927104}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 154927104}
2022-05-12 22:37:36,511 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,077 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171704320}) to executor  for transfer request: 0.
2022-05-12 22:37:37,078 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,078 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) about to wait for the following futures []
2022-05-12 22:37:37,078 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171704320}) done waiting for dependent futures
2022-05-12 22:37:37,078 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171704320}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 171704320}
2022-05-12 22:37:37,079 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,696 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209715200}) to executor  for transfer request: 0.
2022-05-12 22:37:37,696 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) about to wait for the following futures []
2022-05-12 22:37:37,696 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209715200}) done waiting for dependent futures
2022-05-12 22:37:37,697 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209715200}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 209715200}
2022-05-12 22:37:37,697 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:37,907 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195035136}) to executor  for transfer request: 0.
2022-05-12 22:37:37,907 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:37,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) about to wait for the following futures []
2022-05-12 22:37:37,908 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195035136}) done waiting for dependent futures
2022-05-12 22:37:37,908 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195035136}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 195035136}
2022-05-12 22:37:37,908 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:39,201 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148373504}) to executor  for transfer request: 0.
2022-05-12 22:37:39,202 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:39,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) about to wait for the following futures []
2022-05-12 22:37:39,202 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148373504}) done waiting for dependent futures
2022-05-12 22:37:39,202 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148373504}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 148373504}
2022-05-12 22:37:39,203 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:40,115 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187695104}) to executor  for transfer request: 0.
2022-05-12 22:37:40,115 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:40,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) about to wait for the following futures []
2022-05-12 22:37:40,116 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187695104}) done waiting for dependent futures
2022-05-12 22:37:40,116 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187695104}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 187695104}
2022-05-12 22:37:40,116 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:40,416 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 162791424}) to executor  for transfer request: 0.
2022-05-12 22:37:40,416 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:40,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) about to wait for the following futures []
2022-05-12 22:37:40,417 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 162791424}) done waiting for dependent futures
2022-05-12 22:37:40,417 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 162791424}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 162791424}
2022-05-12 22:37:40,417 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,058 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178520064}) to executor  for transfer request: 0.
2022-05-12 22:37:41,059 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) about to wait for the following futures []
2022-05-12 22:37:41,059 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178520064}) done waiting for dependent futures
2022-05-12 22:37:41,059 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178520064}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 178520064}
2022-05-12 22:37:41,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:41,593 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 171966464}) to executor  for transfer request: 0.
2022-05-12 22:37:41,594 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:41,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) about to wait for the following futures []
2022-05-12 22:37:41,594 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 171966464}) done waiting for dependent futures
2022-05-12 22:37:41,594 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 171966464}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 171966464}
2022-05-12 22:37:41,594 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:42,213 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195297280}) to executor  for transfer request: 0.
2022-05-12 22:37:42,213 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:42,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) about to wait for the following futures []
2022-05-12 22:37:42,213 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195297280}) done waiting for dependent futures
2022-05-12 22:37:42,214 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195297280}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 195297280}
2022-05-12 22:37:42,214 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:42,891 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 187957248}) to executor  for transfer request: 0.
2022-05-12 22:37:42,891 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:42,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) about to wait for the following futures []
2022-05-12 22:37:42,892 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 187957248}) done waiting for dependent futures
2022-05-12 22:37:42,892 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 187957248}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 187957248}
2022-05-12 22:37:42,892 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:43,331 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 202899456}) to executor  for transfer request: 0.
2022-05-12 22:37:43,331 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:43,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) about to wait for the following futures []
2022-05-12 22:37:43,331 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 202899456}) done waiting for dependent futures
2022-05-12 22:37:43,332 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 202899456}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 202899456}
2022-05-12 22:37:43,332 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,041 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195559424}) to executor  for transfer request: 0.
2022-05-12 22:37:44,041 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) about to wait for the following futures []
2022-05-12 22:37:44,042 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195559424}) done waiting for dependent futures
2022-05-12 22:37:44,042 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195559424}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 195559424}
2022-05-12 22:37:44,042 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,235 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209977344}) to executor  for transfer request: 0.
2022-05-12 22:37:44,235 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) about to wait for the following futures []
2022-05-12 22:37:44,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209977344}) done waiting for dependent futures
2022-05-12 22:37:44,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209977344}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 209977344}
2022-05-12 22:37:44,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:44,272 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121634816}) to executor  for transfer request: 0.
2022-05-12 22:37:44,272 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:44,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) about to wait for the following futures []
2022-05-12 22:37:44,272 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121634816}) done waiting for dependent futures
2022-05-12 22:37:44,273 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121634816}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 121634816}
2022-05-12 22:37:44,273 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,004 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155189248}) to executor  for transfer request: 0.
2022-05-12 22:37:45,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) about to wait for the following futures []
2022-05-12 22:37:45,005 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155189248}) done waiting for dependent futures
2022-05-12 22:37:45,005 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155189248}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 155189248}
2022-05-12 22:37:45,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163053568}) to executor  for transfer request: 0.
2022-05-12 22:37:45,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) about to wait for the following futures []
2022-05-12 22:37:45,301 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163053568}) done waiting for dependent futures
2022-05-12 22:37:45,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163053568}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 163053568}
2022-05-12 22:37:45,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:45,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188219392}) to executor  for transfer request: 0.
2022-05-12 22:37:45,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:45,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) about to wait for the following futures []
2022-05-12 22:37:45,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188219392}) done waiting for dependent futures
2022-05-12 22:37:45,584 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188219392}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 188219392}
2022-05-12 22:37:45,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,483 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 195821568}) to executor  for transfer request: 0.
2022-05-12 22:37:46,483 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) about to wait for the following futures []
2022-05-12 22:37:46,484 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 195821568}) done waiting for dependent futures
2022-05-12 22:37:46,484 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 195821568}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 195821568}
2022-05-12 22:37:46,484 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,530 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148635648}) to executor  for transfer request: 0.
2022-05-12 22:37:46,530 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) about to wait for the following futures []
2022-05-12 22:37:46,530 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148635648}) done waiting for dependent futures
2022-05-12 22:37:46,530 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148635648}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 148635648}
2022-05-12 22:37:46,531 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:46,538 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172228608}) to executor  for transfer request: 0.
2022-05-12 22:37:46,538 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:46,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) about to wait for the following futures []
2022-05-12 22:37:46,539 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172228608}) done waiting for dependent futures
2022-05-12 22:37:46,539 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172228608}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 172228608}
2022-05-12 22:37:46,540 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:47,739 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 178782208}) to executor  for transfer request: 0.
2022-05-12 22:37:47,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:47,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) about to wait for the following futures []
2022-05-12 22:37:47,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 178782208}) done waiting for dependent futures
2022-05-12 22:37:47,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 178782208}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 178782208}
2022-05-12 22:37:47,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:49,654 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196083712}) to executor  for transfer request: 0.
2022-05-12 22:37:49,654 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:49,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) about to wait for the following futures []
2022-05-12 22:37:49,654 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196083712}) done waiting for dependent futures
2022-05-12 22:37:49,655 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196083712}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 196083712}
2022-05-12 22:37:49,655 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:50,164 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172490752}) to executor  for transfer request: 0.
2022-05-12 22:37:50,164 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:50,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) about to wait for the following futures []
2022-05-12 22:37:50,165 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172490752}) done waiting for dependent futures
2022-05-12 22:37:50,166 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172490752}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 172490752}
2022-05-12 22:37:50,166 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:50,193 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163315712}) to executor  for transfer request: 0.
2022-05-12 22:37:50,193 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:50,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) about to wait for the following futures []
2022-05-12 22:37:50,194 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163315712}) done waiting for dependent futures
2022-05-12 22:37:50,194 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163315712}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 163315712}
2022-05-12 22:37:50,194 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:50,300 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210239488}) to executor  for transfer request: 0.
2022-05-12 22:37:50,300 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:50,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) about to wait for the following futures []
2022-05-12 22:37:50,300 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210239488}) done waiting for dependent futures
2022-05-12 22:37:50,301 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210239488}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 210239488}
2022-05-12 22:37:50,301 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:50,879 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188481536}) to executor  for transfer request: 0.
2022-05-12 22:37:50,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:50,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) about to wait for the following futures []
2022-05-12 22:37:50,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188481536}) done waiting for dependent futures
2022-05-12 22:37:50,880 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188481536}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 188481536}
2022-05-12 22:37:50,880 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,090 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203161600}) to executor  for transfer request: 0.
2022-05-12 22:37:51,090 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) about to wait for the following futures []
2022-05-12 22:37:51,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203161600}) done waiting for dependent futures
2022-05-12 22:37:51,091 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203161600}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 203161600}
2022-05-12 22:37:51,091 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:51,327 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155451392}) to executor  for transfer request: 0.
2022-05-12 22:37:51,327 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:51,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) about to wait for the following futures []
2022-05-12 22:37:51,328 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155451392}) done waiting for dependent futures
2022-05-12 22:37:51,328 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155451392}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 155451392}
2022-05-12 22:37:51,328 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:53,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196345856}) to executor  for transfer request: 0.
2022-05-12 22:37:53,059 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:53,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) about to wait for the following futures []
2022-05-12 22:37:53,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196345856}) done waiting for dependent futures
2022-05-12 22:37:53,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196345856}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 196345856}
2022-05-12 22:37:53,060 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:53,070 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 172752896}) to executor  for transfer request: 0.
2022-05-12 22:37:53,070 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:53,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) about to wait for the following futures []
2022-05-12 22:37:53,070 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 172752896}) done waiting for dependent futures
2022-05-12 22:37:53,070 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 172752896}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 172752896}
2022-05-12 22:37:53,070 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:54,105 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179044352}) to executor  for transfer request: 0.
2022-05-12 22:37:54,105 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:54,105 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) about to wait for the following futures []
2022-05-12 22:37:54,106 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179044352}) done waiting for dependent futures
2022-05-12 22:37:54,106 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179044352}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 179044352}
2022-05-12 22:37:54,106 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:55,127 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163577856}) to executor  for transfer request: 0.
2022-05-12 22:37:55,128 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:55,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) about to wait for the following futures []
2022-05-12 22:37:55,128 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163577856}) done waiting for dependent futures
2022-05-12 22:37:55,128 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163577856}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 163577856}
2022-05-12 22:37:55,129 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:55,138 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 188743680}) to executor  for transfer request: 0.
2022-05-12 22:37:55,138 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:55,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) about to wait for the following futures []
2022-05-12 22:37:55,139 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 188743680}) done waiting for dependent futures
2022-05-12 22:37:55,139 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 188743680}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 188743680}
2022-05-12 22:37:55,139 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:55,377 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196608000}) to executor  for transfer request: 0.
2022-05-12 22:37:55,377 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:55,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) about to wait for the following futures []
2022-05-12 22:37:55,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196608000}) done waiting for dependent futures
2022-05-12 22:37:55,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196608000}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 196608000}
2022-05-12 22:37:55,378 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,240 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203423744}) to executor  for transfer request: 0.
2022-05-12 22:37:56,241 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) about to wait for the following futures []
2022-05-12 22:37:56,241 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203423744}) done waiting for dependent futures
2022-05-12 22:37:56,241 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203423744}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 203423744}
2022-05-12 22:37:56,242 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,419 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173015040}) to executor  for transfer request: 0.
2022-05-12 22:37:56,419 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) about to wait for the following futures []
2022-05-12 22:37:56,420 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173015040}) done waiting for dependent futures
2022-05-12 22:37:56,420 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173015040}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 173015040}
2022-05-12 22:37:56,420 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,600 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 148897792}) to executor  for transfer request: 0.
2022-05-12 22:37:56,601 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) about to wait for the following futures []
2022-05-12 22:37:56,601 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 148897792}) done waiting for dependent futures
2022-05-12 22:37:56,601 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 148897792}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 148897792}
2022-05-12 22:37:56,601 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:56,749 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155713536}) to executor  for transfer request: 0.
2022-05-12 22:37:56,749 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:56,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) about to wait for the following futures []
2022-05-12 22:37:56,750 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155713536}) done waiting for dependent futures
2022-05-12 22:37:56,750 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155713536}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 155713536}
2022-05-12 22:37:56,750 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:58,903 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173277184}) to executor  for transfer request: 0.
2022-05-12 22:37:58,904 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:58,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) about to wait for the following futures []
2022-05-12 22:37:58,904 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173277184}) done waiting for dependent futures
2022-05-12 22:37:58,905 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173277184}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 173277184}
2022-05-12 22:37:58,905 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:59,353 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 163840000}) to executor  for transfer request: 0.
2022-05-12 22:37:59,354 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:59,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) about to wait for the following futures []
2022-05-12 22:37:59,355 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 163840000}) done waiting for dependent futures
2022-05-12 22:37:59,355 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 163840000}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 163840000}
2022-05-12 22:37:59,355 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:59,396 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 155975680}) to executor  for transfer request: 0.
2022-05-12 22:37:59,396 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:59,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) about to wait for the following futures []
2022-05-12 22:37:59,396 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 155975680}) done waiting for dependent futures
2022-05-12 22:37:59,396 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 155975680}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 155975680}
2022-05-12 22:37:59,397 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:59,543 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 196870144}) to executor  for transfer request: 0.
2022-05-12 22:37:59,543 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:59,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) about to wait for the following futures []
2022-05-12 22:37:59,543 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 196870144}) done waiting for dependent futures
2022-05-12 22:37:59,544 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 196870144}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 196870144}
2022-05-12 22:37:59,544 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:37:59,613 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189005824}) to executor  for transfer request: 0.
2022-05-12 22:37:59,614 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:37:59,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) about to wait for the following futures []
2022-05-12 22:37:59,614 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189005824}) done waiting for dependent futures
2022-05-12 22:37:59,614 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189005824}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 189005824}
2022-05-12 22:37:59,615 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,196 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149159936}) to executor  for transfer request: 0.
2022-05-12 22:38:01,196 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,196 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) about to wait for the following futures []
2022-05-12 22:38:01,196 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149159936}) done waiting for dependent futures
2022-05-12 22:38:01,196 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149159936}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 149159936}
2022-05-12 22:38:01,197 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,444 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164102144}) to executor  for transfer request: 0.
2022-05-12 22:38:01,444 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) about to wait for the following futures []
2022-05-12 22:38:01,445 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164102144}) done waiting for dependent futures
2022-05-12 22:38:01,445 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164102144}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 164102144}
2022-05-12 22:38:01,446 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,487 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210501632}) to executor  for transfer request: 0.
2022-05-12 22:38:01,487 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,487 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) about to wait for the following futures []
2022-05-12 22:38:01,487 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210501632}) done waiting for dependent futures
2022-05-12 22:38:01,487 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210501632}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 210501632}
2022-05-12 22:38:01,488 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:01,572 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203685888}) to executor  for transfer request: 0.
2022-05-12 22:38:01,572 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:01,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) about to wait for the following futures []
2022-05-12 22:38:01,573 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203685888}) done waiting for dependent futures
2022-05-12 22:38:01,573 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203685888}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 203685888}
2022-05-12 22:38:01,574 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:03,039 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173539328}) to executor  for transfer request: 0.
2022-05-12 22:38:03,039 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:03,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) about to wait for the following futures []
2022-05-12 22:38:03,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173539328}) done waiting for dependent futures
2022-05-12 22:38:03,040 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173539328}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 173539328}
2022-05-12 22:38:03,040 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:03,950 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156237824}) to executor  for transfer request: 0.
2022-05-12 22:38:03,950 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:03,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) about to wait for the following futures []
2022-05-12 22:38:03,951 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156237824}) done waiting for dependent futures
2022-05-12 22:38:03,951 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156237824}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 156237824}
2022-05-12 22:38:03,951 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:04,468 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189267968}) to executor  for transfer request: 0.
2022-05-12 22:38:04,468 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:04,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) about to wait for the following futures []
2022-05-12 22:38:04,468 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189267968}) done waiting for dependent futures
2022-05-12 22:38:04,469 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189267968}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 189267968}
2022-05-12 22:38:04,469 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:04,603 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164364288}) to executor  for transfer request: 0.
2022-05-12 22:38:04,603 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:04,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) about to wait for the following futures []
2022-05-12 22:38:04,603 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164364288}) done waiting for dependent futures
2022-05-12 22:38:04,603 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164364288}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 164364288}
2022-05-12 22:38:04,604 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:04,692 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179306496}) to executor  for transfer request: 0.
2022-05-12 22:38:04,692 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:04,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) about to wait for the following futures []
2022-05-12 22:38:04,692 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179306496}) done waiting for dependent futures
2022-05-12 22:38:04,692 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179306496}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 179306496}
2022-05-12 22:38:04,693 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:05,297 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6291456}) to executor  for transfer request: 0.
2022-05-12 22:38:05,297 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:05,297 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) about to wait for the following futures []
2022-05-12 22:38:05,298 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6291456}) done waiting for dependent futures
2022-05-12 22:38:05,298 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6291456}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 6291456}
2022-05-12 22:38:05,298 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:06,112 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197132288}) to executor  for transfer request: 0.
2022-05-12 22:38:06,112 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:06,112 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) about to wait for the following futures []
2022-05-12 22:38:06,113 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197132288}) done waiting for dependent futures
2022-05-12 22:38:06,113 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197132288}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 197132288}
2022-05-12 22:38:06,113 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:06,406 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 121896960}) to executor  for transfer request: 0.
2022-05-12 22:38:06,406 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:06,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) about to wait for the following futures []
2022-05-12 22:38:06,407 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 121896960}) done waiting for dependent futures
2022-05-12 22:38:06,407 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 121896960}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 121896960}
2022-05-12 22:38:06,407 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:06,548 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 173801472}) to executor  for transfer request: 0.
2022-05-12 22:38:06,549 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:06,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) about to wait for the following futures []
2022-05-12 22:38:06,549 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 173801472}) done waiting for dependent futures
2022-05-12 22:38:06,549 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 173801472}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 173801472}
2022-05-12 22:38:06,550 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:06,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 203948032}) to executor  for transfer request: 0.
2022-05-12 22:38:06,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:06,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) about to wait for the following futures []
2022-05-12 22:38:06,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 203948032}) done waiting for dependent futures
2022-05-12 22:38:06,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 203948032}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 203948032}
2022-05-12 22:38:06,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:07,968 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179568640}) to executor  for transfer request: 0.
2022-05-12 22:38:07,969 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:07,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) about to wait for the following futures []
2022-05-12 22:38:07,969 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179568640}) done waiting for dependent futures
2022-05-12 22:38:07,969 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179568640}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 179568640}
2022-05-12 22:38:07,970 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,132 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156499968}) to executor  for transfer request: 0.
2022-05-12 22:38:08,132 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) about to wait for the following futures []
2022-05-12 22:38:08,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156499968}) done waiting for dependent futures
2022-05-12 22:38:08,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156499968}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 156499968}
2022-05-12 22:38:08,133 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,729 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189530112}) to executor  for transfer request: 0.
2022-05-12 22:38:08,729 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) about to wait for the following futures []
2022-05-12 22:38:08,729 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189530112}) done waiting for dependent futures
2022-05-12 22:38:08,730 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189530112}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 189530112}
2022-05-12 22:38:08,730 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,757 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149422080}) to executor  for transfer request: 0.
2022-05-12 22:38:08,757 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) about to wait for the following futures []
2022-05-12 22:38:08,757 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149422080}) done waiting for dependent futures
2022-05-12 22:38:08,757 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149422080}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 149422080}
2022-05-12 22:38:08,758 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:08,876 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164626432}) to executor  for transfer request: 0.
2022-05-12 22:38:08,876 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:08,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) about to wait for the following futures []
2022-05-12 22:38:08,876 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164626432}) done waiting for dependent futures
2022-05-12 22:38:08,876 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164626432}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 164626432}
2022-05-12 22:38:08,877 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:09,425 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 210763776}) to executor  for transfer request: 0.
2022-05-12 22:38:09,425 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:09,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) about to wait for the following futures []
2022-05-12 22:38:09,425 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 210763776}) done waiting for dependent futures
2022-05-12 22:38:09,425 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 210763776}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 210763776}
2022-05-12 22:38:09,426 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:10,029 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197394432}) to executor  for transfer request: 0.
2022-05-12 22:38:10,030 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:10,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) about to wait for the following futures []
2022-05-12 22:38:10,030 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197394432}) done waiting for dependent futures
2022-05-12 22:38:10,030 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197394432}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 197394432}
2022-05-12 22:38:10,030 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:11,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174063616}) to executor  for transfer request: 0.
2022-05-12 22:38:11,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:11,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) about to wait for the following futures []
2022-05-12 22:38:11,217 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174063616}) done waiting for dependent futures
2022-05-12 22:38:11,217 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174063616}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 174063616}
2022-05-12 22:38:11,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:11,588 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204210176}) to executor  for transfer request: 0.
2022-05-12 22:38:11,588 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:11,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) about to wait for the following futures []
2022-05-12 22:38:11,589 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204210176}) done waiting for dependent futures
2022-05-12 22:38:11,589 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204210176}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 204210176}
2022-05-12 22:38:11,589 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197656576}) to executor  for transfer request: 0.
2022-05-12 22:38:13,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) about to wait for the following futures []
2022-05-12 22:38:13,140 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197656576}) done waiting for dependent futures
2022-05-12 22:38:13,141 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197656576}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 197656576}
2022-05-12 22:38:13,141 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,354 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 189792256}) to executor  for transfer request: 0.
2022-05-12 22:38:13,354 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) about to wait for the following futures []
2022-05-12 22:38:13,354 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 189792256}) done waiting for dependent futures
2022-05-12 22:38:13,354 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 189792256}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 189792256}
2022-05-12 22:38:13,354 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,469 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 179830784}) to executor  for transfer request: 0.
2022-05-12 22:38:13,469 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) about to wait for the following futures []
2022-05-12 22:38:13,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 179830784}) done waiting for dependent futures
2022-05-12 22:38:13,470 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 179830784}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 179830784}
2022-05-12 22:38:13,470 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,519 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 164888576}) to executor  for transfer request: 0.
2022-05-12 22:38:13,519 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) about to wait for the following futures []
2022-05-12 22:38:13,520 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 164888576}) done waiting for dependent futures
2022-05-12 22:38:13,520 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 164888576}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 164888576}
2022-05-12 22:38:13,520 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,956 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149684224}) to executor  for transfer request: 0.
2022-05-12 22:38:13,956 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) about to wait for the following futures []
2022-05-12 22:38:13,956 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149684224}) done waiting for dependent futures
2022-05-12 22:38:13,956 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149684224}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 149684224}
2022-05-12 22:38:13,957 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:13,959 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 156762112}) to executor  for transfer request: 0.
2022-05-12 22:38:13,959 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:13,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) about to wait for the following futures []
2022-05-12 22:38:13,960 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 156762112}) done waiting for dependent futures
2022-05-12 22:38:13,960 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 156762112}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 156762112}
2022-05-12 22:38:13,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:15,153 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174325760}) to executor  for transfer request: 0.
2022-05-12 22:38:15,153 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:15,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) about to wait for the following futures []
2022-05-12 22:38:15,153 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174325760}) done waiting for dependent futures
2022-05-12 22:38:15,153 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174325760}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 174325760}
2022-05-12 22:38:15,153 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:16,474 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190054400}) to executor  for transfer request: 0.
2022-05-12 22:38:16,474 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:16,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) about to wait for the following futures []
2022-05-12 22:38:16,474 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190054400}) done waiting for dependent futures
2022-05-12 22:38:16,474 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190054400}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 190054400}
2022-05-12 22:38:16,475 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:16,688 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 197918720}) to executor  for transfer request: 0.
2022-05-12 22:38:16,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:16,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) about to wait for the following futures []
2022-05-12 22:38:16,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 197918720}) done waiting for dependent futures
2022-05-12 22:38:16,688 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 197918720}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 197918720}
2022-05-12 22:38:16,688 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:17,032 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 149946368}) to executor  for transfer request: 0.
2022-05-12 22:38:17,032 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:17,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) about to wait for the following futures []
2022-05-12 22:38:17,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 149946368}) done waiting for dependent futures
2022-05-12 22:38:17,032 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 149946368}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 149946368}
2022-05-12 22:38:17,033 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:17,370 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180092928}) to executor  for transfer request: 0.
2022-05-12 22:38:17,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:17,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) about to wait for the following futures []
2022-05-12 22:38:17,371 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180092928}) done waiting for dependent futures
2022-05-12 22:38:17,371 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180092928}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 180092928}
2022-05-12 22:38:17,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:17,540 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165150720}) to executor  for transfer request: 0.
2022-05-12 22:38:17,540 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:17,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) about to wait for the following futures []
2022-05-12 22:38:17,540 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165150720}) done waiting for dependent futures
2022-05-12 22:38:17,540 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165150720}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 165150720}
2022-05-12 22:38:17,541 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:17,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211025920}) to executor  for transfer request: 0.
2022-05-12 22:38:17,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:17,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) about to wait for the following futures []
2022-05-12 22:38:17,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211025920}) done waiting for dependent futures
2022-05-12 22:38:17,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211025920}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 211025920}
2022-05-12 22:38:17,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:19,090 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174587904}) to executor  for transfer request: 0.
2022-05-12 22:38:19,091 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:19,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) about to wait for the following futures []
2022-05-12 22:38:19,091 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174587904}) done waiting for dependent futures
2022-05-12 22:38:19,091 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174587904}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 174587904}
2022-05-12 22:38:19,092 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:19,162 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198180864}) to executor  for transfer request: 0.
2022-05-12 22:38:19,162 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:19,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) about to wait for the following futures []
2022-05-12 22:38:19,162 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198180864}) done waiting for dependent futures
2022-05-12 22:38:19,163 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198180864}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 198180864}
2022-05-12 22:38:19,163 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:20,982 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165412864}) to executor  for transfer request: 0.
2022-05-12 22:38:20,983 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:20,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) about to wait for the following futures []
2022-05-12 22:38:20,983 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165412864}) done waiting for dependent futures
2022-05-12 22:38:20,983 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165412864}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 165412864}
2022-05-12 22:38:20,984 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:21,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190316544}) to executor  for transfer request: 0.
2022-05-12 22:38:21,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:21,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) about to wait for the following futures []
2022-05-12 22:38:21,394 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190316544}) done waiting for dependent futures
2022-05-12 22:38:21,394 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190316544}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 190316544}
2022-05-12 22:38:21,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:21,515 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157024256}) to executor  for transfer request: 0.
2022-05-12 22:38:21,516 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:21,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) about to wait for the following futures []
2022-05-12 22:38:21,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157024256}) done waiting for dependent futures
2022-05-12 22:38:21,516 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157024256}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 157024256}
2022-05-12 22:38:21,517 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:21,700 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198443008}) to executor  for transfer request: 0.
2022-05-12 22:38:21,701 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:21,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) about to wait for the following futures []
2022-05-12 22:38:21,701 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198443008}) done waiting for dependent futures
2022-05-12 22:38:21,701 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198443008}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 198443008}
2022-05-12 22:38:21,702 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:21,939 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180355072}) to executor  for transfer request: 0.
2022-05-12 22:38:21,939 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:21,939 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) about to wait for the following futures []
2022-05-12 22:38:21,940 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180355072}) done waiting for dependent futures
2022-05-12 22:38:21,940 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180355072}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 180355072}
2022-05-12 22:38:21,940 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,450 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 174850048}) to executor  for transfer request: 0.
2022-05-12 22:38:22,450 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) about to wait for the following futures []
2022-05-12 22:38:22,450 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 174850048}) done waiting for dependent futures
2022-05-12 22:38:22,450 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 174850048}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 174850048}
2022-05-12 22:38:22,451 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:22,816 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204472320}) to executor  for transfer request: 0.
2022-05-12 22:38:22,816 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:22,816 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) about to wait for the following futures []
2022-05-12 22:38:22,817 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204472320}) done waiting for dependent futures
2022-05-12 22:38:22,817 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204472320}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 204472320}
2022-05-12 22:38:22,817 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,180 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165675008}) to executor  for transfer request: 0.
2022-05-12 22:38:23,180 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:23,181 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) about to wait for the following futures []
2022-05-12 22:38:23,181 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165675008}) done waiting for dependent futures
2022-05-12 22:38:23,181 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165675008}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 165675008}
2022-05-12 22:38:23,182 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:23,349 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122159104}) to executor  for transfer request: 0.
2022-05-12 22:38:23,349 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:23,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) about to wait for the following futures []
2022-05-12 22:38:23,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122159104}) done waiting for dependent futures
2022-05-12 22:38:23,349 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122159104}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 122159104}
2022-05-12 22:38:23,350 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:24,091 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150208512}) to executor  for transfer request: 0.
2022-05-12 22:38:24,092 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:24,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) about to wait for the following futures []
2022-05-12 22:38:24,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150208512}) done waiting for dependent futures
2022-05-12 22:38:24,092 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150208512}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 150208512}
2022-05-12 22:38:24,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:24,916 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175112192}) to executor  for transfer request: 0.
2022-05-12 22:38:24,916 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:24,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) about to wait for the following futures []
2022-05-12 22:38:24,917 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175112192}) done waiting for dependent futures
2022-05-12 22:38:24,917 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175112192}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 175112192}
2022-05-12 22:38:24,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:24,922 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190578688}) to executor  for transfer request: 0.
2022-05-12 22:38:24,922 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:24,922 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) about to wait for the following futures []
2022-05-12 22:38:24,923 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190578688}) done waiting for dependent futures
2022-05-12 22:38:24,923 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190578688}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 190578688}
2022-05-12 22:38:24,923 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,079 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211288064}) to executor  for transfer request: 0.
2022-05-12 22:38:26,079 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) about to wait for the following futures []
2022-05-12 22:38:26,080 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211288064}) done waiting for dependent futures
2022-05-12 22:38:26,080 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211288064}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 211288064}
2022-05-12 22:38:26,080 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:26,508 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204734464}) to executor  for transfer request: 0.
2022-05-12 22:38:26,508 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:26,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) about to wait for the following futures []
2022-05-12 22:38:26,508 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204734464}) done waiting for dependent futures
2022-05-12 22:38:26,508 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204734464}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 204734464}
2022-05-12 22:38:26,509 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,007 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198705152}) to executor  for transfer request: 0.
2022-05-12 22:38:27,007 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) about to wait for the following futures []
2022-05-12 22:38:27,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198705152}) done waiting for dependent futures
2022-05-12 22:38:27,007 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198705152}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 198705152}
2022-05-12 22:38:27,008 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,035 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157286400}) to executor  for transfer request: 0.
2022-05-12 22:38:27,035 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,035 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) about to wait for the following futures []
2022-05-12 22:38:27,036 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157286400}) done waiting for dependent futures
2022-05-12 22:38:27,036 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157286400}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 157286400}
2022-05-12 22:38:27,036 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,197 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180617216}) to executor  for transfer request: 0.
2022-05-12 22:38:27,197 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) about to wait for the following futures []
2022-05-12 22:38:27,198 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180617216}) done waiting for dependent futures
2022-05-12 22:38:27,198 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180617216}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 180617216}
2022-05-12 22:38:27,199 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 165937152}) to executor  for transfer request: 0.
2022-05-12 22:38:27,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) about to wait for the following futures []
2022-05-12 22:38:27,674 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 165937152}) done waiting for dependent futures
2022-05-12 22:38:27,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 165937152}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 165937152}
2022-05-12 22:38:27,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:27,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175374336}) to executor  for transfer request: 0.
2022-05-12 22:38:27,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:27,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) about to wait for the following futures []
2022-05-12 22:38:27,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175374336}) done waiting for dependent futures
2022-05-12 22:38:27,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175374336}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 175374336}
2022-05-12 22:38:27,686 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:28,806 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150470656}) to executor  for transfer request: 0.
2022-05-12 22:38:28,806 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:28,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) about to wait for the following futures []
2022-05-12 22:38:28,806 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150470656}) done waiting for dependent futures
2022-05-12 22:38:28,807 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150470656}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 150470656}
2022-05-12 22:38:28,807 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:29,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166199296}) to executor  for transfer request: 0.
2022-05-12 22:38:29,436 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:29,436 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) about to wait for the following futures []
2022-05-12 22:38:29,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166199296}) done waiting for dependent futures
2022-05-12 22:38:29,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166199296}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 166199296}
2022-05-12 22:38:29,437 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:29,516 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 190840832}) to executor  for transfer request: 0.
2022-05-12 22:38:29,516 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:29,516 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) about to wait for the following futures []
2022-05-12 22:38:29,517 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 190840832}) done waiting for dependent futures
2022-05-12 22:38:29,517 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 190840832}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 190840832}
2022-05-12 22:38:29,517 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:30,110 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 198967296}) to executor  for transfer request: 0.
2022-05-12 22:38:30,110 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:30,110 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) about to wait for the following futures []
2022-05-12 22:38:30,111 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 198967296}) done waiting for dependent futures
2022-05-12 22:38:30,111 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 198967296}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 198967296}
2022-05-12 22:38:30,111 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:30,880 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175636480}) to executor  for transfer request: 0.
2022-05-12 22:38:30,881 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:30,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) about to wait for the following futures []
2022-05-12 22:38:30,881 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175636480}) done waiting for dependent futures
2022-05-12 22:38:30,881 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175636480}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 175636480}
2022-05-12 22:38:30,882 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,021 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 204996608}) to executor  for transfer request: 0.
2022-05-12 22:38:31,022 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) about to wait for the following futures []
2022-05-12 22:38:31,022 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 204996608}) done waiting for dependent futures
2022-05-12 22:38:31,022 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 204996608}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 204996608}
2022-05-12 22:38:31,023 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:31,597 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157548544}) to executor  for transfer request: 0.
2022-05-12 22:38:31,597 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:31,597 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) about to wait for the following futures []
2022-05-12 22:38:31,598 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157548544}) done waiting for dependent futures
2022-05-12 22:38:31,598 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157548544}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 157548544}
2022-05-12 22:38:31,598 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:32,273 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 180879360}) to executor  for transfer request: 0.
2022-05-12 22:38:32,274 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:32,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) about to wait for the following futures []
2022-05-12 22:38:32,274 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 180879360}) done waiting for dependent futures
2022-05-12 22:38:32,274 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 180879360}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 180879360}
2022-05-12 22:38:32,275 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,182 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 150732800}) to executor  for transfer request: 0.
2022-05-12 22:38:33,182 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:33,182 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,183 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) about to wait for the following futures []
2022-05-12 22:38:33,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) about to wait for the following futures []
2022-05-12 22:38:33,183 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 150732800}) done waiting for dependent futures
2022-05-12 22:38:33,183 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) done waiting for dependent futures
2022-05-12 22:38:33,183 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 150732800}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 150732800}
2022-05-12 22:38:33,184 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=218103808-226492415'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=218103808-226492415'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 218103808, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:38:33,184 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:33,184 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,185 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:33,185 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:33,185 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:33,185 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:33,185 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:33,185 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:38:33,186 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:38:33,186 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:33,186 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:33,186 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=218103808-226492415', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:38:33,186 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:33,186 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:38:33,186 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:33,186 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:33,186 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:38:33,186 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:38:33,187 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:38:33,187 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:38:33,187 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:38:33,187 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=218103808-226492415
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223833Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:38:33,187 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223833Z
20220512/eu-central-1/s3/aws4_request
fc71ef50e1ddec8233757f501fd9c051a13a8279dc152f0b8024c15fe1128b3b
2022-05-12 22:38:33,187 botocore.auth DEBUG    Signature:
e822a8d4118f0f2668bb313041a2cf94005f493255d150b5c5feba31de929dad
2022-05-12 22:38:33,187 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:33,187 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:33,188 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:38:33,188 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:38:33,188 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:38:33,524 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199229440}) to executor  for transfer request: 0.
2022-05-12 22:38:33,525 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:33,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) about to wait for the following futures []
2022-05-12 22:38:33,525 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199229440}) done waiting for dependent futures
2022-05-12 22:38:33,525 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199229440}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 199229440}
2022-05-12 22:38:33,526 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,665 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6553600}) to executor  for transfer request: 0.
2022-05-12 22:38:33,665 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:33,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) about to wait for the following futures []
2022-05-12 22:38:33,666 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6553600}) done waiting for dependent futures
2022-05-12 22:38:33,666 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6553600}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 6553600}
2022-05-12 22:38:33,667 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211550208}) to executor  for transfer request: 0.
2022-05-12 22:38:33,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:33,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) about to wait for the following futures []
2022-05-12 22:38:33,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211550208}) done waiting for dependent futures
2022-05-12 22:38:33,708 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211550208}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 211550208}
2022-05-12 22:38:33,709 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:38:33,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,709 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+QNJ02Wsa5eNCSP8k7/DLmLXvDxzIifXZ5/JKnAgpNNU8bsYgKYhNtQnS9joNoeXz2qMssAY1bE=', 'x-amz-request-id': '8K50K8VPQV9TDECS', 'Date': 'Thu, 12 May 2022 22:38:34 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 218103808-226492415/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:38:33,709 botocore.parsers DEBUG    Response body:

2022-05-12 22:38:33,710 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:38:33,711 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:38:33,711 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:38:33,743 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 175898624}) to executor  for transfer request: 0.
2022-05-12 22:38:33,743 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:33,743 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) about to wait for the following futures []
2022-05-12 22:38:33,743 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) about to wait for the following futures []
2022-05-12 22:38:33,743 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 175898624}) done waiting for dependent futures
2022-05-12 22:38:33,743 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) done waiting for dependent futures
2022-05-12 22:38:33,744 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 175898624}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 175898624}
2022-05-12 22:38:33,744 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=226492416-234881023'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=226492416-234881023'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 226492416, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:38:33,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:33,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:33,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:33,744 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:33,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:33,744 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:33,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:33,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:38:33,744 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:38:33,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:33,744 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:33,745 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=226492416-234881023', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:38:33,745 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:33,745 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:38:33,745 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:33,745 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:33,745 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:38:33,745 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:38:33,745 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:38:33,745 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:38:33,745 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:38:33,745 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=226492416-234881023
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223833Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:38:33,745 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223833Z
20220512/eu-central-1/s3/aws4_request
fb8675e1223d756395af70f429acc4e3a2db6ab8a6b48dcc854b3a8a53732c6b
2022-05-12 22:38:33,745 botocore.auth DEBUG    Signature:
29e173584fed200b3d5df2b0a0b182136d985d6b94e6b4a81be486fa6f384054
2022-05-12 22:38:33,745 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:33,745 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:33,745 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:38:33,746 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:38:33,943 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 8388608
2022-05-12 22:38:33,943 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'BI3tnfbK/+OtyHG82yDUMn6vk67UgmwbP70xBkGGiiGKcTNkYQ9Q71/aMXMnu7zwJMTpZbOyndE=', 'x-amz-request-id': '8K553SRP53JTQES9', 'Date': 'Thu, 12 May 2022 22:38:34 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 226492416-234881023/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '8388608'}
2022-05-12 22:38:33,943 botocore.parsers DEBUG    Response body:

2022-05-12 22:38:33,945 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:38:33,945 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:38:33,945 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:38:34,715 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191102976}) to executor  for transfer request: 0.
2022-05-12 22:38:34,715 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:34,715 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) about to wait for the following futures []
2022-05-12 22:38:34,715 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191102976}) done waiting for dependent futures
2022-05-12 22:38:34,716 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191102976}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 191102976}
2022-05-12 22:38:34,716 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,190 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166461440}) to executor  for transfer request: 0.
2022-05-12 22:38:35,190 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) about to wait for the following futures []
2022-05-12 22:38:35,191 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166461440}) done waiting for dependent futures
2022-05-12 22:38:35,191 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166461440}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 166461440}
2022-05-12 22:38:35,191 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,719 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218103808}) to executor  for transfer request: 0.
2022-05-12 22:38:35,720 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218103808}) about to wait for the following futures []
2022-05-12 22:38:35,720 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218103808}) done waiting for dependent futures
2022-05-12 22:38:35,720 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218103808}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 218103808}
2022-05-12 22:38:35,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,723 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122421248}) to executor  for transfer request: 0.
2022-05-12 22:38:35,723 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) about to wait for the following futures []
2022-05-12 22:38:35,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122421248}) done waiting for dependent futures
2022-05-12 22:38:35,724 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122421248}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 122421248}
2022-05-12 22:38:35,724 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:35,986 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199491584}) to executor  for transfer request: 0.
2022-05-12 22:38:35,986 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:35,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) about to wait for the following futures []
2022-05-12 22:38:35,986 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199491584}) done waiting for dependent futures
2022-05-12 22:38:35,986 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199491584}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 199491584}
2022-05-12 22:38:35,987 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:36,065 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226492416}) to executor  for transfer request: 0.
2022-05-12 22:38:36,065 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:36,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226492416}) about to wait for the following futures []
2022-05-12 22:38:36,066 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226492416}) done waiting for dependent futures
2022-05-12 22:38:36,066 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226492416}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 226492416}
2022-05-12 22:38:36,066 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:36,661 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181141504}) to executor  for transfer request: 0.
2022-05-12 22:38:36,661 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:36,661 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) about to wait for the following futures []
2022-05-12 22:38:36,662 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181141504}) done waiting for dependent futures
2022-05-12 22:38:36,662 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181141504}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 181141504}
2022-05-12 22:38:36,662 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:37,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205258752}) to executor  for transfer request: 0.
2022-05-12 22:38:37,154 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:37,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) about to wait for the following futures []
2022-05-12 22:38:37,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205258752}) done waiting for dependent futures
2022-05-12 22:38:37,155 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205258752}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 205258752}
2022-05-12 22:38:37,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:37,636 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166723584}) to executor  for transfer request: 0.
2022-05-12 22:38:37,636 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:37,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) about to wait for the following futures []
2022-05-12 22:38:37,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166723584}) done waiting for dependent futures
2022-05-12 22:38:37,637 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166723584}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 166723584}
2022-05-12 22:38:37,637 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:37,684 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 157810688}) to executor  for transfer request: 0.
2022-05-12 22:38:37,684 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:37,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) about to wait for the following futures []
2022-05-12 22:38:37,685 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 157810688}) done waiting for dependent futures
2022-05-12 22:38:37,685 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 157810688}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 157810688}
2022-05-12 22:38:37,685 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:37,989 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 211812352}) to executor  for transfer request: 0.
2022-05-12 22:38:37,989 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:37,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) about to wait for the following futures []
2022-05-12 22:38:37,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 211812352}) done waiting for dependent futures
2022-05-12 22:38:37,990 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 211812352}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 211812352}
2022-05-12 22:38:37,991 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:38,687 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218365952}) to executor  for transfer request: 0.
2022-05-12 22:38:38,687 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:38,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218365952}) about to wait for the following futures []
2022-05-12 22:38:38,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218365952}) done waiting for dependent futures
2022-05-12 22:38:38,688 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218365952}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 218365952}
2022-05-12 22:38:38,688 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:39,024 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 199753728}) to executor  for transfer request: 0.
2022-05-12 22:38:39,025 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:39,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) about to wait for the following futures []
2022-05-12 22:38:39,025 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 199753728}) done waiting for dependent futures
2022-05-12 22:38:39,025 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 199753728}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 199753728}
2022-05-12 22:38:39,026 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:39,394 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191365120}) to executor  for transfer request: 0.
2022-05-12 22:38:39,394 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:39,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) about to wait for the following futures []
2022-05-12 22:38:39,395 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191365120}) done waiting for dependent futures
2022-05-12 22:38:39,395 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191365120}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 191365120}
2022-05-12 22:38:39,395 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:39,503 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205520896}) to executor  for transfer request: 0.
2022-05-12 22:38:39,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:39,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) about to wait for the following futures []
2022-05-12 22:38:39,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205520896}) done waiting for dependent futures
2022-05-12 22:38:39,504 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205520896}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 205520896}
2022-05-12 22:38:39,505 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:39,902 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 166985728}) to executor  for transfer request: 0.
2022-05-12 22:38:39,902 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:39,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) about to wait for the following futures []
2022-05-12 22:38:39,902 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 166985728}) done waiting for dependent futures
2022-05-12 22:38:39,903 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 166985728}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 166985728}
2022-05-12 22:38:39,903 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:39,989 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226754560}) to executor  for transfer request: 0.
2022-05-12 22:38:39,989 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:39,989 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226754560}) about to wait for the following futures []
2022-05-12 22:38:39,990 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226754560}) done waiting for dependent futures
2022-05-12 22:38:39,990 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226754560}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 226754560}
2022-05-12 22:38:39,990 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:40,766 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181403648}) to executor  for transfer request: 0.
2022-05-12 22:38:40,766 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:40,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) about to wait for the following futures []
2022-05-12 22:38:40,766 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181403648}) done waiting for dependent futures
2022-05-12 22:38:40,766 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181403648}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 181403648}
2022-05-12 22:38:40,767 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:41,807 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158072832}) to executor  for transfer request: 0.
2022-05-12 22:38:41,807 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:41,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) about to wait for the following futures []
2022-05-12 22:38:41,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158072832}) done waiting for dependent futures
2022-05-12 22:38:41,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158072832}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 158072832}
2022-05-12 22:38:41,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:42,292 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 205783040}) to executor  for transfer request: 0.
2022-05-12 22:38:42,292 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:42,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) about to wait for the following futures []
2022-05-12 22:38:42,292 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 205783040}) done waiting for dependent futures
2022-05-12 22:38:42,293 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 205783040}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 205783040}
2022-05-12 22:38:42,293 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:42,392 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167247872}) to executor  for transfer request: 0.
2022-05-12 22:38:42,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:42,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) about to wait for the following futures []
2022-05-12 22:38:42,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167247872}) done waiting for dependent futures
2022-05-12 22:38:42,393 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167247872}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 167247872}
2022-05-12 22:38:42,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:43,140 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191627264}) to executor  for transfer request: 0.
2022-05-12 22:38:43,140 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:43,141 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) about to wait for the following futures []
2022-05-12 22:38:43,141 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191627264}) done waiting for dependent futures
2022-05-12 22:38:43,141 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191627264}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 191627264}
2022-05-12 22:38:43,142 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:43,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227016704}) to executor  for transfer request: 0.
2022-05-12 22:38:43,709 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:43,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227016704}) about to wait for the following futures []
2022-05-12 22:38:43,709 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227016704}) done waiting for dependent futures
2022-05-12 22:38:43,709 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227016704}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 227016704}
2022-05-12 22:38:43,710 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:44,001 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218628096}) to executor  for transfer request: 0.
2022-05-12 22:38:44,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:44,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218628096}) about to wait for the following futures []
2022-05-12 22:38:44,002 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218628096}) done waiting for dependent futures
2022-05-12 22:38:44,002 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218628096}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 218628096}
2022-05-12 22:38:44,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:44,314 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200015872}) to executor  for transfer request: 0.
2022-05-12 22:38:44,314 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:44,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) about to wait for the following futures []
2022-05-12 22:38:44,314 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200015872}) done waiting for dependent futures
2022-05-12 22:38:44,315 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200015872}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 200015872}
2022-05-12 22:38:44,315 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:45,348 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158334976}) to executor  for transfer request: 0.
2022-05-12 22:38:45,348 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:45,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) about to wait for the following futures []
2022-05-12 22:38:45,349 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158334976}) done waiting for dependent futures
2022-05-12 22:38:45,349 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158334976}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 158334976}
2022-05-12 22:38:45,350 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:45,876 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 191889408}) to executor  for transfer request: 0.
2022-05-12 22:38:45,877 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:45,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) about to wait for the following futures []
2022-05-12 22:38:45,877 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 191889408}) done waiting for dependent futures
2022-05-12 22:38:45,877 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 191889408}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 191889408}
2022-05-12 22:38:45,878 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:45,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 167510016}) to executor  for transfer request: 0.
2022-05-12 22:38:45,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:45,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:45,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) about to wait for the following futures []
2022-05-12 22:38:45,913 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) about to wait for the following futures []
2022-05-12 22:38:45,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 167510016}) done waiting for dependent futures
2022-05-12 22:38:45,913 s3transfer.tasks DEBUG    GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) done waiting for dependent futures
2022-05-12 22:38:45,914 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 167510016}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 167510016}
2022-05-12 22:38:45,914 s3transfer.tasks DEBUG    Executing task GetObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'extra_args': {'Range': 'bytes=234881024-'}}) with kwargs {'client': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data/BANDS.npy', 'fileobj': <_io.BufferedRandom name=36>, 'extra_args': {'Range': 'bytes=234881024-'}, 'callbacks': [], 'max_attempts': 5, 'start_index': 234881024, 'download_output_manager': , 'io_chunksize': 262144, 'bandwidth_limiter': None}
2022-05-12 22:38:45,914 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:45,914 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:45,914 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:45,914 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:45,915 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler >
2022-05-12 22:38:45,915 botocore.hooks DEBUG    Event before-parameter-build.s3.GetObject: calling handler 
2022-05-12 22:38:45,915 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:45,915 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler >
2022-05-12 22:38:45,915 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:38:45,915 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:45,915 botocore.hooks DEBUG    Event before-call.s3.GetObject: calling handler 
2022-05-12 22:38:45,915 botocore.endpoint DEBUG    Making request for OperationModel(name=GetObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'query_string': {}, 'method': 'GET', 'headers': {'Range': 'bytes=234881024-', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:38:45,916 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:45,916 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler >
2022-05-12 22:38:45,916 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:45,916 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler >
2022-05-12 22:38:45,916 botocore.hooks DEBUG    Event choose-signer.s3.GetObject: calling handler 
2022-05-12 22:38:45,916 botocore.hooks DEBUG    Event before-sign.s3.GetObject: calling handler >
2022-05-12 22:38:45,916 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:38:45,916 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data/BANDS.npy
2022-05-12 22:38:45,917 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:38:45,917 botocore.auth DEBUG    CanonicalRequest:
GET
/eopatches/30PTU_1_1/data/BANDS.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
range:bytes=234881024-
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223845Z

host;range;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:38:45,917 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223845Z
20220512/eu-central-1/s3/aws4_request
fbe3331ce3952af8debd607545c0f5ad3d1a0ab6affb2f21c6454c9130d05c05
2022-05-12 22:38:45,917 botocore.auth DEBUG    Signature:
3f2c8fe15e6d55a5513ca6b7343686dc8a6c31275b0fe15043dfec2a5df1cb2b
2022-05-12 22:38:45,917 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:45,917 botocore.hooks DEBUG    Event request-created.s3.GetObject: calling handler 
2022-05-12 22:38:45,917 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:38:45,918 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:38:45,918 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.eu-central-1.amazonaws.com
2022-05-12 22:38:46,708 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212074496}) to executor  for transfer request: 0.
2022-05-12 22:38:46,708 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:46,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) about to wait for the following futures []
2022-05-12 22:38:46,708 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212074496}) done waiting for dependent futures
2022-05-12 22:38:46,709 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212074496}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 212074496}
2022-05-12 22:38:46,709 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:46,723 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /eopatches/30PTU_1_1/data/BANDS.npy HTTP/1.1" 206 7119104
2022-05-12 22:38:46,723 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'KkwsPrLeUbAfWphfqGllFDSqArgCqF+TFcBF5PJqsuB2KmdcT/+yAtyYmp/IBWDbWTA5EI9R7qY=', 'x-amz-request-id': 'MA9NWCQBTPE8CPHA', 'Date': 'Thu, 12 May 2022 22:38:47 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:44 GMT', 'ETag': '"4665ae86d913ce4091293e967914b979-29"', 'Accept-Ranges': 'bytes', 'Content-Range': 'bytes 234881024-242000127/242000128', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '7119104'}
2022-05-12 22:38:46,723 botocore.parsers DEBUG    Response body:

2022-05-12 22:38:46,724 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler 
2022-05-12 22:38:46,724 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:38:46,724 botocore.hooks DEBUG    Event needs-retry.s3.GetObject: calling handler >
2022-05-12 22:38:46,974 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 218890240}) to executor  for transfer request: 0.
2022-05-12 22:38:46,974 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:46,974 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218890240}) about to wait for the following futures []
2022-05-12 22:38:46,975 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 218890240}) done waiting for dependent futures
2022-05-12 22:38:46,975 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 218890240}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 218890240}
2022-05-12 22:38:46,975 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,518 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227278848}) to executor  for transfer request: 0.
2022-05-12 22:38:47,518 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:47,518 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227278848}) about to wait for the following futures []
2022-05-12 22:38:47,518 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227278848}) done waiting for dependent futures
2022-05-12 22:38:47,518 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227278848}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 227278848}
2022-05-12 22:38:47,519 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:47,604 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234881024}) to executor  for transfer request: 0.
2022-05-12 22:38:47,604 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:47,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234881024}) about to wait for the following futures []
2022-05-12 22:38:47,604 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234881024}) done waiting for dependent futures
2022-05-12 22:38:47,605 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234881024}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 234881024}
2022-05-12 22:38:47,605 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,157 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181665792}) to executor  for transfer request: 0.
2022-05-12 22:38:48,157 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:48,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) about to wait for the following futures []
2022-05-12 22:38:48,157 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181665792}) done waiting for dependent futures
2022-05-12 22:38:48,158 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181665792}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 181665792}
2022-05-12 22:38:48,158 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:48,813 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235143168}) to executor  for transfer request: 0.
2022-05-12 22:38:48,813 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:48,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235143168}) about to wait for the following futures []
2022-05-12 22:38:48,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235143168}) done waiting for dependent futures
2022-05-12 22:38:48,813 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235143168}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 235143168}
2022-05-12 22:38:48,814 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:49,592 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 6815744}) to executor  for transfer request: 0.
2022-05-12 22:38:49,592 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:49,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) about to wait for the following futures []
2022-05-12 22:38:49,593 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 6815744}) done waiting for dependent futures
2022-05-12 22:38:49,593 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 6815744}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 6815744}
2022-05-12 22:38:49,593 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:49,672 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122683392}) to executor  for transfer request: 0.
2022-05-12 22:38:49,672 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:49,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) about to wait for the following futures []
2022-05-12 22:38:49,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122683392}) done waiting for dependent futures
2022-05-12 22:38:49,673 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122683392}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 122683392}
2022-05-12 22:38:49,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:49,741 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206045184}) to executor  for transfer request: 0.
2022-05-12 22:38:49,741 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:49,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) about to wait for the following futures []
2022-05-12 22:38:49,741 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206045184}) done waiting for dependent futures
2022-05-12 22:38:49,741 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206045184}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 206045184}
2022-05-12 22:38:49,742 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:49,967 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219152384}) to executor  for transfer request: 0.
2022-05-12 22:38:49,967 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:49,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219152384}) about to wait for the following futures []
2022-05-12 22:38:49,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219152384}) done waiting for dependent futures
2022-05-12 22:38:49,968 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219152384}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 219152384}
2022-05-12 22:38:49,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:50,131 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227540992}) to executor  for transfer request: 0.
2022-05-12 22:38:50,131 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:50,131 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227540992}) about to wait for the following futures []
2022-05-12 22:38:50,132 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227540992}) done waiting for dependent futures
2022-05-12 22:38:50,132 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227540992}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 227540992}
2022-05-12 22:38:50,132 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:50,533 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192151552}) to executor  for transfer request: 0.
2022-05-12 22:38:50,533 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:50,533 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) about to wait for the following futures []
2022-05-12 22:38:50,534 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192151552}) done waiting for dependent futures
2022-05-12 22:38:50,534 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192151552}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 192151552}
2022-05-12 22:38:50,534 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:51,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158597120}) to executor  for transfer request: 0.
2022-05-12 22:38:51,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:51,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) about to wait for the following futures []
2022-05-12 22:38:51,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158597120}) done waiting for dependent futures
2022-05-12 22:38:51,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158597120}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 158597120}
2022-05-12 22:38:51,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:51,357 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200278016}) to executor  for transfer request: 0.
2022-05-12 22:38:51,357 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:51,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) about to wait for the following futures []
2022-05-12 22:38:51,357 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200278016}) done waiting for dependent futures
2022-05-12 22:38:51,357 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200278016}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 200278016}
2022-05-12 22:38:51,358 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:52,009 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 181927936}) to executor  for transfer request: 0.
2022-05-12 22:38:52,009 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:52,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) about to wait for the following futures []
2022-05-12 22:38:52,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 181927936}) done waiting for dependent futures
2022-05-12 22:38:52,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 181927936}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 181927936}
2022-05-12 22:38:52,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:53,456 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192413696}) to executor  for transfer request: 0.
2022-05-12 22:38:53,456 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:53,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) about to wait for the following futures []
2022-05-12 22:38:53,456 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192413696}) done waiting for dependent futures
2022-05-12 22:38:53,457 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192413696}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 192413696}
2022-05-12 22:38:53,457 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:53,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212336640}) to executor  for transfer request: 0.
2022-05-12 22:38:53,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:53,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) about to wait for the following futures []
2022-05-12 22:38:53,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212336640}) done waiting for dependent futures
2022-05-12 22:38:53,554 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212336640}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 212336640}
2022-05-12 22:38:53,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,158 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 227803136}) to executor  for transfer request: 0.
2022-05-12 22:38:54,158 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227803136}) about to wait for the following futures []
2022-05-12 22:38:54,159 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 227803136}) done waiting for dependent futures
2022-05-12 22:38:54,159 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 227803136}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 227803136}
2022-05-12 22:38:54,159 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,371 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235405312}) to executor  for transfer request: 0.
2022-05-12 22:38:54,371 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235405312}) about to wait for the following futures []
2022-05-12 22:38:54,372 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235405312}) done waiting for dependent futures
2022-05-12 22:38:54,372 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235405312}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 235405312}
2022-05-12 22:38:54,372 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:54,414 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206307328}) to executor  for transfer request: 0.
2022-05-12 22:38:54,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:54,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) about to wait for the following futures []
2022-05-12 22:38:54,415 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206307328}) done waiting for dependent futures
2022-05-12 22:38:54,415 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206307328}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 206307328}
2022-05-12 22:38:54,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:55,173 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219414528}) to executor  for transfer request: 0.
2022-05-12 22:38:55,174 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:55,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219414528}) about to wait for the following futures []
2022-05-12 22:38:55,174 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219414528}) done waiting for dependent futures
2022-05-12 22:38:55,174 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219414528}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 219414528}
2022-05-12 22:38:55,175 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:55,289 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 158859264}) to executor  for transfer request: 0.
2022-05-12 22:38:55,289 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:55,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) about to wait for the following futures []
2022-05-12 22:38:55,290 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 158859264}) done waiting for dependent futures
2022-05-12 22:38:55,290 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 158859264}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 158859264}
2022-05-12 22:38:55,290 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:55,659 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182190080}) to executor  for transfer request: 0.
2022-05-12 22:38:55,659 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:55,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) about to wait for the following futures []
2022-05-12 22:38:55,660 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182190080}) done waiting for dependent futures
2022-05-12 22:38:55,660 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182190080}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 182190080}
2022-05-12 22:38:55,660 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:55,673 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200540160}) to executor  for transfer request: 0.
2022-05-12 22:38:55,673 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:55,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) about to wait for the following futures []
2022-05-12 22:38:55,673 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200540160}) done waiting for dependent futures
2022-05-12 22:38:55,674 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200540160}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 200540160}
2022-05-12 22:38:55,674 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:57,947 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235667456}) to executor  for transfer request: 0.
2022-05-12 22:38:57,947 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:57,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235667456}) about to wait for the following futures []
2022-05-12 22:38:57,948 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235667456}) done waiting for dependent futures
2022-05-12 22:38:57,948 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235667456}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 235667456}
2022-05-12 22:38:57,948 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:57,967 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212598784}) to executor  for transfer request: 0.
2022-05-12 22:38:57,967 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:57,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) about to wait for the following futures []
2022-05-12 22:38:57,968 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212598784}) done waiting for dependent futures
2022-05-12 22:38:57,968 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212598784}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 212598784}
2022-05-12 22:38:57,969 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:58,431 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 192675840}) to executor  for transfer request: 0.
2022-05-12 22:38:58,431 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:58,431 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:58,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) about to wait for the following futures []
2022-05-12 22:38:58,432 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 192675840}) done waiting for dependent futures
2022-05-12 22:38:58,432 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 192675840}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 192675840}
2022-05-12 22:38:58,432 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:58,912 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219676672}) to executor  for transfer request: 0.
2022-05-12 22:38:58,912 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:58,912 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219676672}) about to wait for the following futures []
2022-05-12 22:38:58,913 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219676672}) done waiting for dependent futures
2022-05-12 22:38:58,913 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219676672}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 219676672}
2022-05-12 22:38:58,913 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:58,915 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228065280}) to executor  for transfer request: 0.
2022-05-12 22:38:58,915 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:58,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228065280}) about to wait for the following futures []
2022-05-12 22:38:58,916 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228065280}) done waiting for dependent futures
2022-05-12 22:38:58,916 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228065280}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 228065280}
2022-05-12 22:38:58,917 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:38:59,134 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 200802304}) to executor  for transfer request: 0.
2022-05-12 22:38:59,134 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:38:59,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) about to wait for the following futures []
2022-05-12 22:38:59,134 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 200802304}) done waiting for dependent futures
2022-05-12 22:38:59,135 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 200802304}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 200802304}
2022-05-12 22:38:59,135 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,095 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182452224}) to executor  for transfer request: 0.
2022-05-12 22:39:00,095 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) about to wait for the following futures []
2022-05-12 22:39:00,096 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182452224}) done waiting for dependent futures
2022-05-12 22:39:00,096 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182452224}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 182452224}
2022-05-12 22:39:00,096 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,384 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 122945536}) to executor  for transfer request: 0.
2022-05-12 22:39:00,384 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,385 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) about to wait for the following futures []
2022-05-12 22:39:00,385 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 122945536}) done waiting for dependent futures
2022-05-12 22:39:00,385 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 122945536}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 122945536}
2022-05-12 22:39:00,385 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,442 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206569472}) to executor  for transfer request: 0.
2022-05-12 22:39:00,443 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) about to wait for the following futures []
2022-05-12 22:39:00,443 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206569472}) done waiting for dependent futures
2022-05-12 22:39:00,444 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206569472}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 206569472}
2022-05-12 22:39:00,444 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:00,618 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 235929600}) to executor  for transfer request: 0.
2022-05-12 22:39:00,619 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:00,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235929600}) about to wait for the following futures []
2022-05-12 22:39:00,619 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 235929600}) done waiting for dependent futures
2022-05-12 22:39:00,619 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 235929600}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 235929600}
2022-05-12 22:39:00,620 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:01,100 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 201064448}) to executor  for transfer request: 0.
2022-05-12 22:39:01,100 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:01,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:01,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) about to wait for the following futures []
2022-05-12 22:39:01,101 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 201064448}) done waiting for dependent futures
2022-05-12 22:39:01,101 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 201064448}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 201064448}
2022-05-12 22:39:01,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:01,635 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 159121408}) to executor  for transfer request: 0.
2022-05-12 22:39:01,635 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:01,636 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:01,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) about to wait for the following futures []
2022-05-12 22:39:01,636 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 159121408}) done waiting for dependent futures
2022-05-12 22:39:01,636 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 159121408}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 159121408}
2022-05-12 22:39:01,637 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:02,063 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228327424}) to executor  for transfer request: 0.
2022-05-12 22:39:02,063 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:02,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228327424}) about to wait for the following futures []
2022-05-12 22:39:02,064 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228327424}) done waiting for dependent futures
2022-05-12 22:39:02,064 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228327424}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 228327424}
2022-05-12 22:39:02,064 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:02,724 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7077888}) to executor  for transfer request: 0.
2022-05-12 22:39:02,724 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:02,724 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) about to wait for the following futures []
2022-05-12 22:39:02,725 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7077888}) done waiting for dependent futures
2022-05-12 22:39:02,725 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7077888}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 7077888}
2022-05-12 22:39:02,725 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:02,834 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 206831616}) to executor  for transfer request: 0.
2022-05-12 22:39:02,834 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:02,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) about to wait for the following futures []
2022-05-12 22:39:02,835 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 206831616}) done waiting for dependent futures
2022-05-12 22:39:02,835 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 206831616}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 206831616}
2022-05-12 22:39:02,835 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,215 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 212860928}) to executor  for transfer request: 0.
2022-05-12 22:39:03,215 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) about to wait for the following futures []
2022-05-12 22:39:03,215 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 212860928}) done waiting for dependent futures
2022-05-12 22:39:03,215 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 212860928}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 212860928}
2022-05-12 22:39:03,216 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:03,879 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 219938816}) to executor  for transfer request: 0.
2022-05-12 22:39:03,879 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:03,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219938816}) about to wait for the following futures []
2022-05-12 22:39:03,879 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 219938816}) done waiting for dependent futures
2022-05-12 22:39:03,879 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 219938816}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 219938816}
2022-05-12 22:39:03,880 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:04,518 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7340032}) to executor  for transfer request: 0.
2022-05-12 22:39:04,518 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:04,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) about to wait for the following futures []
2022-05-12 22:39:04,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7340032}) done waiting for dependent futures
2022-05-12 22:39:04,519 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7340032}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 7340032}
2022-05-12 22:39:04,519 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:05,393 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236191744}) to executor  for transfer request: 0.
2022-05-12 22:39:05,393 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:05,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236191744}) about to wait for the following futures []
2022-05-12 22:39:05,393 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236191744}) done waiting for dependent futures
2022-05-12 22:39:05,393 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236191744}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 236191744}
2022-05-12 22:39:05,394 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:05,498 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7602176}) to executor  for transfer request: 0.
2022-05-12 22:39:05,498 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:05,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) about to wait for the following futures []
2022-05-12 22:39:05,499 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7602176}) done waiting for dependent futures
2022-05-12 22:39:05,499 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7602176}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 7602176}
2022-05-12 22:39:05,499 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:06,031 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228589568}) to executor  for transfer request: 0.
2022-05-12 22:39:06,031 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:06,031 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228589568}) about to wait for the following futures []
2022-05-12 22:39:06,032 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228589568}) done waiting for dependent futures
2022-05-12 22:39:06,032 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228589568}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 228589568}
2022-05-12 22:39:06,032 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:06,284 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182714368}) to executor  for transfer request: 0.
2022-05-12 22:39:06,284 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:06,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) about to wait for the following futures []
2022-05-12 22:39:06,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182714368}) done waiting for dependent futures
2022-05-12 22:39:06,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182714368}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 182714368}
2022-05-12 22:39:06,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:06,639 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220200960}) to executor  for transfer request: 0.
2022-05-12 22:39:06,639 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:06,639 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220200960}) about to wait for the following futures []
2022-05-12 22:39:06,640 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220200960}) done waiting for dependent futures
2022-05-12 22:39:06,640 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220200960}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 220200960}
2022-05-12 22:39:06,640 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:07,389 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207093760}) to executor  for transfer request: 0.
2022-05-12 22:39:07,389 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:07,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) about to wait for the following futures []
2022-05-12 22:39:07,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207093760}) done waiting for dependent futures
2022-05-12 22:39:07,390 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207093760}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 207093760}
2022-05-12 22:39:07,390 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:07,642 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 182976512}) to executor  for transfer request: 0.
2022-05-12 22:39:07,642 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:07,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) about to wait for the following futures []
2022-05-12 22:39:07,642 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 182976512}) done waiting for dependent futures
2022-05-12 22:39:07,642 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 182976512}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 182976512}
2022-05-12 22:39:07,643 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:07,811 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213123072}) to executor  for transfer request: 0.
2022-05-12 22:39:07,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:07,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213123072}) about to wait for the following futures []
2022-05-12 22:39:07,812 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213123072}) done waiting for dependent futures
2022-05-12 22:39:07,812 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213123072}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 213123072}
2022-05-12 22:39:07,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:08,546 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183238656}) to executor  for transfer request: 0.
2022-05-12 22:39:08,546 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:08,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) about to wait for the following futures []
2022-05-12 22:39:08,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183238656}) done waiting for dependent futures
2022-05-12 22:39:08,547 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183238656}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 183238656}
2022-05-12 22:39:08,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:08,965 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 7864320}) to executor  for transfer request: 0.
2022-05-12 22:39:08,965 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:08,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) about to wait for the following futures []
2022-05-12 22:39:08,966 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 7864320}) done waiting for dependent futures
2022-05-12 22:39:08,966 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 7864320}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 7864320}
2022-05-12 22:39:08,966 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,091 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220463104}) to executor  for transfer request: 0.
2022-05-12 22:39:09,092 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220463104}) about to wait for the following futures []
2022-05-12 22:39:09,092 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220463104}) done waiting for dependent futures
2022-05-12 22:39:09,092 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220463104}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 220463104}
2022-05-12 22:39:09,093 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,239 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236453888}) to executor  for transfer request: 0.
2022-05-12 22:39:09,239 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,239 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236453888}) about to wait for the following futures []
2022-05-12 22:39:09,240 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236453888}) done waiting for dependent futures
2022-05-12 22:39:09,240 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236453888}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 236453888}
2022-05-12 22:39:09,240 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:09,333 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 228851712}) to executor  for transfer request: 0.
2022-05-12 22:39:09,333 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:09,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228851712}) about to wait for the following futures []
2022-05-12 22:39:09,334 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 228851712}) done waiting for dependent futures
2022-05-12 22:39:09,334 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 228851712}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 228851712}
2022-05-12 22:39:09,334 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:10,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123207680}) to executor  for transfer request: 0.
2022-05-12 22:39:10,209 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:10,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) about to wait for the following futures []
2022-05-12 22:39:10,209 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123207680}) done waiting for dependent futures
2022-05-12 22:39:10,209 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123207680}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 123207680}
2022-05-12 22:39:10,209 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:10,484 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183500800}) to executor  for transfer request: 0.
2022-05-12 22:39:10,485 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:10,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) about to wait for the following futures []
2022-05-12 22:39:10,485 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183500800}) done waiting for dependent futures
2022-05-12 22:39:10,485 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183500800}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 183500800}
2022-05-12 22:39:10,486 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:10,662 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207355904}) to executor  for transfer request: 0.
2022-05-12 22:39:10,662 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:10,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) about to wait for the following futures []
2022-05-12 22:39:10,663 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207355904}) done waiting for dependent futures
2022-05-12 22:39:10,663 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207355904}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 207355904}
2022-05-12 22:39:10,663 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,136 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220725248}) to executor  for transfer request: 0.
2022-05-12 22:39:11,136 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:11,136 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220725248}) about to wait for the following futures []
2022-05-12 22:39:11,137 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220725248}) done waiting for dependent futures
2022-05-12 22:39:11,137 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220725248}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 220725248}
2022-05-12 22:39:11,137 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,958 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 8126464}) to executor  for transfer request: 0.
2022-05-12 22:39:11,958 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:11,958 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:39:11,958 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:11,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) about to wait for the following futures []
2022-05-12 22:39:11,959 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 8126464}) done waiting for dependent futures
2022-05-12 22:39:11,959 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 8126464}) with kwargs {'fileobj': <_io.BufferedRandom name=37>, 'offset': 8126464}
2022-05-12 22:39:11,959 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:11,960 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:39:11,960 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:39:11,960 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:39:11,960 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:12,519 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229113856}) to executor  for transfer request: 0.
2022-05-12 22:39:12,519 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:12,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229113856}) about to wait for the following futures []
2022-05-12 22:39:12,519 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229113856}) done waiting for dependent futures
2022-05-12 22:39:12,520 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229113856}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 229113856}
2022-05-12 22:39:12,520 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:13,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 220987392}) to executor  for transfer request: 0.
2022-05-12 22:39:13,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:13,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220987392}) about to wait for the following futures []
2022-05-12 22:39:13,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 220987392}) done waiting for dependent futures
2022-05-12 22:39:13,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 220987392}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 220987392}
2022-05-12 22:39:13,683 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:13,734 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236716032}) to executor  for transfer request: 0.
2022-05-12 22:39:13,734 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:13,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236716032}) about to wait for the following futures []
2022-05-12 22:39:13,735 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236716032}) done waiting for dependent futures
2022-05-12 22:39:13,735 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236716032}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 236716032}
2022-05-12 22:39:13,735 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:14,048 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 183762944}) to executor  for transfer request: 0.
2022-05-12 22:39:14,048 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:14,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) about to wait for the following futures []
2022-05-12 22:39:14,049 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 183762944}) done waiting for dependent futures
2022-05-12 22:39:14,049 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 183762944}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 183762944}
2022-05-12 22:39:14,050 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:14,727 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213385216}) to executor  for transfer request: 0.
2022-05-12 22:39:14,728 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:14,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213385216}) about to wait for the following futures []
2022-05-12 22:39:14,728 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213385216}) done waiting for dependent futures
2022-05-12 22:39:14,728 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213385216}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 213385216}
2022-05-12 22:39:14,729 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:15,040 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123469824}) to executor  for transfer request: 0.
2022-05-12 22:39:15,040 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:15,040 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) about to wait for the following futures []
2022-05-12 22:39:15,041 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123469824}) done waiting for dependent futures
2022-05-12 22:39:15,041 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123469824}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 123469824}
2022-05-12 22:39:15,041 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:15,262 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184025088}) to executor  for transfer request: 0.
2022-05-12 22:39:15,262 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:15,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) about to wait for the following futures []
2022-05-12 22:39:15,262 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184025088}) done waiting for dependent futures
2022-05-12 22:39:15,263 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184025088}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 184025088}
2022-05-12 22:39:15,263 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:15,436 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207618048}) to executor  for transfer request: 0.
2022-05-12 22:39:15,437 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:15,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) about to wait for the following futures []
2022-05-12 22:39:15,437 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207618048}) done waiting for dependent futures
2022-05-12 22:39:15,437 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207618048}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 207618048}
2022-05-12 22:39:15,438 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:16,284 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229376000}) to executor  for transfer request: 0.
2022-05-12 22:39:16,285 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:16,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229376000}) about to wait for the following futures []
2022-05-12 22:39:16,285 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229376000}) done waiting for dependent futures
2022-05-12 22:39:16,285 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229376000}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 229376000}
2022-05-12 22:39:16,286 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,325 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 184287232}) to executor  for transfer request: 0.
2022-05-12 22:39:17,326 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,326 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) about to wait for the following futures []
2022-05-12 22:39:17,326 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 184287232}) done waiting for dependent futures
2022-05-12 22:39:17,327 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 184287232}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 184287232}
2022-05-12 22:39:17,327 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,858 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229638144}) to executor  for transfer request: 0.
2022-05-12 22:39:17,858 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,858 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229638144}) about to wait for the following futures []
2022-05-12 22:39:17,859 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229638144}) done waiting for dependent futures
2022-05-12 22:39:17,859 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229638144}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 229638144}
2022-05-12 22:39:17,859 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:17,920 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123731968}) to executor  for transfer request: 0.
2022-05-12 22:39:17,920 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:17,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) about to wait for the following futures []
2022-05-12 22:39:17,920 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123731968}) done waiting for dependent futures
2022-05-12 22:39:17,921 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123731968}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 123731968}
2022-05-12 22:39:17,921 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:18,753 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221249536}) to executor  for transfer request: 0.
2022-05-12 22:39:18,753 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:18,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221249536}) about to wait for the following futures []
2022-05-12 22:39:18,754 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221249536}) done waiting for dependent futures
2022-05-12 22:39:18,754 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221249536}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 221249536}
2022-05-12 22:39:18,754 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,229 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 207880192}) to executor  for transfer request: 0.
2022-05-12 22:39:19,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) about to wait for the following futures []
2022-05-12 22:39:19,230 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 207880192}) done waiting for dependent futures
2022-05-12 22:39:19,230 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 207880192}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 207880192}
2022-05-12 22:39:19,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,389 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 236978176}) to executor  for transfer request: 0.
2022-05-12 22:39:19,389 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,389 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236978176}) about to wait for the following futures []
2022-05-12 22:39:19,390 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 236978176}) done waiting for dependent futures
2022-05-12 22:39:19,390 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 236978176}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 236978176}
2022-05-12 22:39:19,390 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:19,745 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 229900288}) to executor  for transfer request: 0.
2022-05-12 22:39:19,745 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:19,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229900288}) about to wait for the following futures []
2022-05-12 22:39:19,745 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 229900288}) done waiting for dependent futures
2022-05-12 22:39:19,745 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 229900288}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 229900288}
2022-05-12 22:39:19,746 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:20,006 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221511680}) to executor  for transfer request: 0.
2022-05-12 22:39:20,006 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:20,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221511680}) about to wait for the following futures []
2022-05-12 22:39:20,007 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221511680}) done waiting for dependent futures
2022-05-12 22:39:20,007 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221511680}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 221511680}
2022-05-12 22:39:20,007 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:20,866 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 221773824}) to executor  for transfer request: 0.
2022-05-12 22:39:20,867 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:20,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221773824}) about to wait for the following futures []
2022-05-12 22:39:20,867 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 221773824}) done waiting for dependent futures
2022-05-12 22:39:20,867 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 221773824}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 221773824}
2022-05-12 22:39:20,868 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:21,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208142336}) to executor  for transfer request: 0.
2022-05-12 22:39:21,003 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:21,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) about to wait for the following futures []
2022-05-12 22:39:21,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208142336}) done waiting for dependent futures
2022-05-12 22:39:21,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208142336}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 208142336}
2022-05-12 22:39:21,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:21,154 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230162432}) to executor  for transfer request: 0.
2022-05-12 22:39:21,155 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:21,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230162432}) about to wait for the following futures []
2022-05-12 22:39:21,155 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230162432}) done waiting for dependent futures
2022-05-12 22:39:21,156 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230162432}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 230162432}
2022-05-12 22:39:21,156 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:21,320 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 123994112}) to executor  for transfer request: 0.
2022-05-12 22:39:21,320 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:21,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) about to wait for the following futures []
2022-05-12 22:39:21,321 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 123994112}) done waiting for dependent futures
2022-05-12 22:39:21,321 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 123994112}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 123994112}
2022-05-12 22:39:21,322 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:21,997 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230424576}) to executor  for transfer request: 0.
2022-05-12 22:39:21,998 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:21,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230424576}) about to wait for the following futures []
2022-05-12 22:39:21,998 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230424576}) done waiting for dependent futures
2022-05-12 22:39:21,998 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230424576}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 230424576}
2022-05-12 22:39:21,999 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,355 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213647360}) to executor  for transfer request: 0.
2022-05-12 22:39:22,355 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213647360}) about to wait for the following futures []
2022-05-12 22:39:22,356 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213647360}) done waiting for dependent futures
2022-05-12 22:39:22,356 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213647360}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 213647360}
2022-05-12 22:39:22,356 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,415 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208404480}) to executor  for transfer request: 0.
2022-05-12 22:39:22,416 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) about to wait for the following futures []
2022-05-12 22:39:22,416 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208404480}) done waiting for dependent futures
2022-05-12 22:39:22,417 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208404480}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 208404480}
2022-05-12 22:39:22,417 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:22,759 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237240320}) to executor  for transfer request: 0.
2022-05-12 22:39:22,759 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:22,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237240320}) about to wait for the following futures []
2022-05-12 22:39:22,760 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237240320}) done waiting for dependent futures
2022-05-12 22:39:22,760 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237240320}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 237240320}
2022-05-12 22:39:22,761 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:23,554 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222035968}) to executor  for transfer request: 0.
2022-05-12 22:39:23,554 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:23,554 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222035968}) about to wait for the following futures []
2022-05-12 22:39:23,555 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222035968}) done waiting for dependent futures
2022-05-12 22:39:23,555 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222035968}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 222035968}
2022-05-12 22:39:23,555 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:24,688 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237502464}) to executor  for transfer request: 0.
2022-05-12 22:39:24,688 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:24,688 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237502464}) about to wait for the following futures []
2022-05-12 22:39:24,689 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237502464}) done waiting for dependent futures
2022-05-12 22:39:24,689 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237502464}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 237502464}
2022-05-12 22:39:24,689 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:24,808 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230686720}) to executor  for transfer request: 0.
2022-05-12 22:39:24,808 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:24,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230686720}) about to wait for the following futures []
2022-05-12 22:39:24,808 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230686720}) done waiting for dependent futures
2022-05-12 22:39:24,808 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230686720}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 230686720}
2022-05-12 22:39:24,809 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:24,812 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124256256}) to executor  for transfer request: 0.
2022-05-12 22:39:24,812 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:24,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) about to wait for the following futures []
2022-05-12 22:39:24,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124256256}) done waiting for dependent futures
2022-05-12 22:39:24,813 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124256256}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 124256256}
2022-05-12 22:39:24,814 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:25,229 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 213909504}) to executor  for transfer request: 0.
2022-05-12 22:39:25,229 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:25,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213909504}) about to wait for the following futures []
2022-05-12 22:39:25,229 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 213909504}) done waiting for dependent futures
2022-05-12 22:39:25,229 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 213909504}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 213909504}
2022-05-12 22:39:25,230 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:25,418 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208666624}) to executor  for transfer request: 0.
2022-05-12 22:39:25,418 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:25,418 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) about to wait for the following futures []
2022-05-12 22:39:25,419 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208666624}) done waiting for dependent futures
2022-05-12 22:39:25,419 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208666624}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 208666624}
2022-05-12 22:39:25,419 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:25,513 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222298112}) to executor  for transfer request: 0.
2022-05-12 22:39:25,513 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:25,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222298112}) about to wait for the following futures []
2022-05-12 22:39:25,514 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222298112}) done waiting for dependent futures
2022-05-12 22:39:25,514 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222298112}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 222298112}
2022-05-12 22:39:25,514 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:26,577 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222560256}) to executor  for transfer request: 0.
2022-05-12 22:39:26,577 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:26,578 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222560256}) about to wait for the following futures []
2022-05-12 22:39:26,578 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222560256}) done waiting for dependent futures
2022-05-12 22:39:26,578 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222560256}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 222560256}
2022-05-12 22:39:26,578 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:27,059 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 237764608}) to executor  for transfer request: 0.
2022-05-12 22:39:27,060 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:27,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237764608}) about to wait for the following futures []
2022-05-12 22:39:27,060 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 237764608}) done waiting for dependent futures
2022-05-12 22:39:27,060 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 237764608}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 237764608}
2022-05-12 22:39:27,061 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:27,170 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 230948864}) to executor  for transfer request: 0.
2022-05-12 22:39:27,171 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:27,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230948864}) about to wait for the following futures []
2022-05-12 22:39:27,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 230948864}) done waiting for dependent futures
2022-05-12 22:39:27,172 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 230948864}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 230948864}
2022-05-12 22:39:27,172 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:27,461 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 208928768}) to executor  for transfer request: 0.
2022-05-12 22:39:27,461 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:27,461 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) about to wait for the following futures []
2022-05-12 22:39:27,461 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 208928768}) done waiting for dependent futures
2022-05-12 22:39:27,461 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 208928768}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 208928768}
2022-05-12 22:39:27,461 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:27,868 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 222822400}) to executor  for transfer request: 0.
2022-05-12 22:39:27,868 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:27,868 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222822400}) about to wait for the following futures []
2022-05-12 22:39:27,869 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 222822400}) done waiting for dependent futures
2022-05-12 22:39:27,869 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 222822400}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 222822400}
2022-05-12 22:39:27,870 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124518400}) to executor  for transfer request: 0.
2022-05-12 22:39:29,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) about to wait for the following futures []
2022-05-12 22:39:29,010 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124518400}) done waiting for dependent futures
2022-05-12 22:39:29,010 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124518400}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 124518400}
2022-05-12 22:39:29,010 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,323 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214171648}) to executor  for transfer request: 0.
2022-05-12 22:39:29,323 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214171648}) about to wait for the following futures []
2022-05-12 22:39:29,324 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214171648}) done waiting for dependent futures
2022-05-12 22:39:29,324 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214171648}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 214171648}
2022-05-12 22:39:29,325 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,328 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238026752}) to executor  for transfer request: 0.
2022-05-12 22:39:29,328 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238026752}) about to wait for the following futures []
2022-05-12 22:39:29,330 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238026752}) done waiting for dependent futures
2022-05-12 22:39:29,330 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238026752}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 238026752}
2022-05-12 22:39:29,331 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:29,832 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223084544}) to executor  for transfer request: 0.
2022-05-12 22:39:29,832 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:29,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223084544}) about to wait for the following futures []
2022-05-12 22:39:29,832 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223084544}) done waiting for dependent futures
2022-05-12 22:39:29,832 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223084544}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 223084544}
2022-05-12 22:39:29,832 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:30,381 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209190912}) to executor  for transfer request: 0.
2022-05-12 22:39:30,381 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:30,381 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) about to wait for the following futures []
2022-05-12 22:39:30,382 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209190912}) done waiting for dependent futures
2022-05-12 22:39:30,382 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209190912}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 209190912}
2022-05-12 22:39:30,382 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:30,560 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231211008}) to executor  for transfer request: 0.
2022-05-12 22:39:30,561 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:30,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231211008}) about to wait for the following futures []
2022-05-12 22:39:30,561 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231211008}) done waiting for dependent futures
2022-05-12 22:39:30,561 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231211008}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 231211008}
2022-05-12 22:39:30,562 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:31,106 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238288896}) to executor  for transfer request: 0.
2022-05-12 22:39:31,106 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:31,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238288896}) about to wait for the following futures []
2022-05-12 22:39:31,107 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238288896}) done waiting for dependent futures
2022-05-12 22:39:31,107 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238288896}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 238288896}
2022-05-12 22:39:31,107 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:31,547 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223346688}) to executor  for transfer request: 0.
2022-05-12 22:39:31,547 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:31,547 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223346688}) about to wait for the following futures []
2022-05-12 22:39:31,548 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223346688}) done waiting for dependent futures
2022-05-12 22:39:31,548 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223346688}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 223346688}
2022-05-12 22:39:31,548 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:31,587 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231473152}) to executor  for transfer request: 0.
2022-05-12 22:39:31,587 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:31,587 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231473152}) about to wait for the following futures []
2022-05-12 22:39:31,588 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231473152}) done waiting for dependent futures
2022-05-12 22:39:31,588 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231473152}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 231473152}
2022-05-12 22:39:31,588 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,351 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 209453056}) to executor  for transfer request: 0.
2022-05-12 22:39:32,352 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,352 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) about to wait for the following futures []
2022-05-12 22:39:32,352 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 209453056}) done waiting for dependent futures
2022-05-12 22:39:32,352 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 209453056}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 209453056}
2022-05-12 22:39:32,353 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,583 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223608832}) to executor  for transfer request: 0.
2022-05-12 22:39:32,583 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223608832}) about to wait for the following futures []
2022-05-12 22:39:32,584 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223608832}) done waiting for dependent futures
2022-05-12 22:39:32,584 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223608832}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 223608832}
2022-05-12 22:39:32,584 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,720 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214433792}) to executor  for transfer request: 0.
2022-05-12 22:39:32,720 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214433792}) about to wait for the following futures []
2022-05-12 22:39:32,721 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214433792}) done waiting for dependent futures
2022-05-12 22:39:32,721 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214433792}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 214433792}
2022-05-12 22:39:32,721 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:32,851 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 124780544}) to executor  for transfer request: 0.
2022-05-12 22:39:32,852 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:32,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) about to wait for the following futures []
2022-05-12 22:39:32,852 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 124780544}) done waiting for dependent futures
2022-05-12 22:39:32,853 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 124780544}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 124780544}
2022-05-12 22:39:32,853 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:33,423 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231735296}) to executor  for transfer request: 0.
2022-05-12 22:39:33,423 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:33,423 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231735296}) about to wait for the following futures []
2022-05-12 22:39:33,424 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231735296}) done waiting for dependent futures
2022-05-12 22:39:33,424 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231735296}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 231735296}
2022-05-12 22:39:33,424 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,003 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 223870976}) to executor  for transfer request: 0.
2022-05-12 22:39:34,004 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223870976}) about to wait for the following futures []
2022-05-12 22:39:34,004 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 223870976}) done waiting for dependent futures
2022-05-12 22:39:34,004 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 223870976}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 223870976}
2022-05-12 22:39:34,005 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,305 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125042688}) to executor  for transfer request: 0.
2022-05-12 22:39:34,305 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) about to wait for the following futures []
2022-05-12 22:39:34,305 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125042688}) done waiting for dependent futures
2022-05-12 22:39:34,305 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125042688}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 125042688}
2022-05-12 22:39:34,306 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,308 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238551040}) to executor  for transfer request: 0.
2022-05-12 22:39:34,308 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,309 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238551040}) about to wait for the following futures []
2022-05-12 22:39:34,309 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238551040}) done waiting for dependent futures
2022-05-12 22:39:34,309 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238551040}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 238551040}
2022-05-12 22:39:34,309 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,685 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 231997440}) to executor  for transfer request: 0.
2022-05-12 22:39:34,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231997440}) about to wait for the following futures []
2022-05-12 22:39:34,686 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 231997440}) done waiting for dependent futures
2022-05-12 22:39:34,686 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 231997440}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 231997440}
2022-05-12 22:39:34,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:34,782 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214695936}) to executor  for transfer request: 0.
2022-05-12 22:39:34,782 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:34,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214695936}) about to wait for the following futures []
2022-05-12 22:39:34,782 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214695936}) done waiting for dependent futures
2022-05-12 22:39:34,783 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214695936}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 214695936}
2022-05-12 22:39:34,783 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:35,398 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224133120}) to executor  for transfer request: 0.
2022-05-12 22:39:35,398 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:35,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224133120}) about to wait for the following futures []
2022-05-12 22:39:35,399 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224133120}) done waiting for dependent futures
2022-05-12 22:39:35,399 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224133120}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 224133120}
2022-05-12 22:39:35,400 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:35,410 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125304832}) to executor  for transfer request: 0.
2022-05-12 22:39:35,411 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:35,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) about to wait for the following futures []
2022-05-12 22:39:35,411 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125304832}) done waiting for dependent futures
2022-05-12 22:39:35,411 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125304832}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 125304832}
2022-05-12 22:39:35,412 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,170 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 238813184}) to executor  for transfer request: 0.
2022-05-12 22:39:36,170 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238813184}) about to wait for the following futures []
2022-05-12 22:39:36,171 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 238813184}) done waiting for dependent futures
2022-05-12 22:39:36,171 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 238813184}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 238813184}
2022-05-12 22:39:36,171 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,209 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224395264}) to executor  for transfer request: 0.
2022-05-12 22:39:36,210 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224395264}) about to wait for the following futures []
2022-05-12 22:39:36,210 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224395264}) done waiting for dependent futures
2022-05-12 22:39:36,210 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224395264}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 224395264}
2022-05-12 22:39:36,211 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,216 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232259584}) to executor  for transfer request: 0.
2022-05-12 22:39:36,216 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232259584}) about to wait for the following futures []
2022-05-12 22:39:36,216 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232259584}) done waiting for dependent futures
2022-05-12 22:39:36,216 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232259584}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 232259584}
2022-05-12 22:39:36,217 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,413 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 125566976}) to executor  for transfer request: 0.
2022-05-12 22:39:36,413 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,414 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) about to wait for the following futures []
2022-05-12 22:39:36,414 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 125566976}) done waiting for dependent futures
2022-05-12 22:39:36,414 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 125566976}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 125566976}
2022-05-12 22:39:36,415 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,503 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 214958080}) to executor  for transfer request: 0.
2022-05-12 22:39:36,503 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,503 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214958080}) about to wait for the following futures []
2022-05-12 22:39:36,504 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 214958080}) done waiting for dependent futures
2022-05-12 22:39:36,504 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 214958080}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 214958080}
2022-05-12 22:39:36,504 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,801 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224657408}) to executor  for transfer request: 0.
2022-05-12 22:39:36,801 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,802 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224657408}) about to wait for the following futures []
2022-05-12 22:39:36,803 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224657408}) done waiting for dependent futures
2022-05-12 22:39:36,803 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224657408}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 224657408}
2022-05-12 22:39:36,803 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:36,979 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232521728}) to executor  for transfer request: 0.
2022-05-12 22:39:36,979 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:36,980 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232521728}) about to wait for the following futures []
2022-05-12 22:39:36,980 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232521728}) done waiting for dependent futures
2022-05-12 22:39:36,980 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232521728}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 232521728}
2022-05-12 22:39:36,981 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:37,277 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239075328}) to executor  for transfer request: 0.
2022-05-12 22:39:37,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:37,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239075328}) about to wait for the following futures []
2022-05-12 22:39:37,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239075328}) done waiting for dependent futures
2022-05-12 22:39:37,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239075328}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 239075328}
2022-05-12 22:39:37,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:37,567 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 224919552}) to executor  for transfer request: 0.
2022-05-12 22:39:37,567 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:37,567 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224919552}) about to wait for the following futures []
2022-05-12 22:39:37,568 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 224919552}) done waiting for dependent futures
2022-05-12 22:39:37,568 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 224919552}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 224919552}
2022-05-12 22:39:37,568 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:37,893 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 232783872}) to executor  for transfer request: 0.
2022-05-12 22:39:37,893 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:37,893 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232783872}) about to wait for the following futures []
2022-05-12 22:39:37,894 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 232783872}) done waiting for dependent futures
2022-05-12 22:39:37,894 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 232783872}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 232783872}
2022-05-12 22:39:37,894 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:38,084 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215220224}) to executor  for transfer request: 0.
2022-05-12 22:39:38,084 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:38,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215220224}) about to wait for the following futures []
2022-05-12 22:39:38,084 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215220224}) done waiting for dependent futures
2022-05-12 22:39:38,085 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215220224}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 215220224}
2022-05-12 22:39:38,085 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:38,236 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239337472}) to executor  for transfer request: 0.
2022-05-12 22:39:38,236 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:38,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239337472}) about to wait for the following futures []
2022-05-12 22:39:38,236 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239337472}) done waiting for dependent futures
2022-05-12 22:39:38,236 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239337472}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 239337472}
2022-05-12 22:39:38,236 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:38,403 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225181696}) to executor  for transfer request: 0.
2022-05-12 22:39:38,403 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:38,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225181696}) about to wait for the following futures []
2022-05-12 22:39:38,403 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225181696}) done waiting for dependent futures
2022-05-12 22:39:38,404 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225181696}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 225181696}
2022-05-12 22:39:38,404 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:38,502 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233046016}) to executor  for transfer request: 0.
2022-05-12 22:39:38,502 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:38,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233046016}) about to wait for the following futures []
2022-05-12 22:39:38,502 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233046016}) done waiting for dependent futures
2022-05-12 22:39:38,502 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233046016}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 233046016}
2022-05-12 22:39:38,503 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:39,123 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233308160}) to executor  for transfer request: 0.
2022-05-12 22:39:39,123 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:39,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233308160}) about to wait for the following futures []
2022-05-12 22:39:39,124 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233308160}) done waiting for dependent futures
2022-05-12 22:39:39,124 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233308160}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 233308160}
2022-05-12 22:39:39,125 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:39,257 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239599616}) to executor  for transfer request: 0.
2022-05-12 22:39:39,257 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:39,257 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239599616}) about to wait for the following futures []
2022-05-12 22:39:39,257 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239599616}) done waiting for dependent futures
2022-05-12 22:39:39,257 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239599616}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 239599616}
2022-05-12 22:39:39,257 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:39,278 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225443840}) to executor  for transfer request: 0.
2022-05-12 22:39:39,278 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:39,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225443840}) about to wait for the following futures []
2022-05-12 22:39:39,279 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225443840}) done waiting for dependent futures
2022-05-12 22:39:39,279 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225443840}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 225443840}
2022-05-12 22:39:39,279 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:39,682 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233570304}) to executor  for transfer request: 0.
2022-05-12 22:39:39,682 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:39,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233570304}) about to wait for the following futures []
2022-05-12 22:39:39,683 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233570304}) done waiting for dependent futures
2022-05-12 22:39:39,683 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233570304}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 233570304}
2022-05-12 22:39:39,684 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,194 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 239861760}) to executor  for transfer request: 0.
2022-05-12 22:39:40,194 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239861760}) about to wait for the following futures []
2022-05-12 22:39:40,195 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 239861760}) done waiting for dependent futures
2022-05-12 22:39:40,195 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 239861760}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 239861760}
2022-05-12 22:39:40,196 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,358 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225705984}) to executor  for transfer request: 0.
2022-05-12 22:39:40,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225705984}) about to wait for the following futures []
2022-05-12 22:39:40,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225705984}) done waiting for dependent futures
2022-05-12 22:39:40,359 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225705984}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 225705984}
2022-05-12 22:39:40,360 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,461 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215482368}) to executor  for transfer request: 0.
2022-05-12 22:39:40,461 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,461 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215482368}) about to wait for the following futures []
2022-05-12 22:39:40,462 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215482368}) done waiting for dependent futures
2022-05-12 22:39:40,462 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215482368}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 215482368}
2022-05-12 22:39:40,462 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,657 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 233832448}) to executor  for transfer request: 0.
2022-05-12 22:39:40,657 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233832448}) about to wait for the following futures []
2022-05-12 22:39:40,658 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 233832448}) done waiting for dependent futures
2022-05-12 22:39:40,658 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 233832448}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 233832448}
2022-05-12 22:39:40,659 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:40,990 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240123904}) to executor  for transfer request: 0.
2022-05-12 22:39:40,990 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:40,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240123904}) about to wait for the following futures []
2022-05-12 22:39:40,991 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240123904}) done waiting for dependent futures
2022-05-12 22:39:40,991 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240123904}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 240123904}
2022-05-12 22:39:40,992 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:41,295 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 225968128}) to executor  for transfer request: 0.
2022-05-12 22:39:41,295 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:41,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225968128}) about to wait for the following futures []
2022-05-12 22:39:41,295 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 225968128}) done waiting for dependent futures
2022-05-12 22:39:41,296 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 225968128}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 225968128}
2022-05-12 22:39:41,296 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:41,367 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234094592}) to executor  for transfer request: 0.
2022-05-12 22:39:41,367 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:41,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234094592}) about to wait for the following futures []
2022-05-12 22:39:41,368 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234094592}) done waiting for dependent futures
2022-05-12 22:39:41,368 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234094592}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 234094592}
2022-05-12 22:39:41,368 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:41,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240386048}) to executor  for transfer request: 0.
2022-05-12 22:39:41,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:41,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240386048}) about to wait for the following futures []
2022-05-12 22:39:41,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240386048}) done waiting for dependent futures
2022-05-12 22:39:41,641 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240386048}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 240386048}
2022-05-12 22:39:41,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,002 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 226230272}) to executor  for transfer request: 0.
2022-05-12 22:39:42,002 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,003 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226230272}) about to wait for the following futures []
2022-05-12 22:39:42,003 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 226230272}) done waiting for dependent futures
2022-05-12 22:39:42,003 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 226230272}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 226230272}
2022-05-12 22:39:42,004 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,122 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234356736}) to executor  for transfer request: 0.
2022-05-12 22:39:42,122 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234356736}) about to wait for the following futures []
2022-05-12 22:39:42,123 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234356736}) done waiting for dependent futures
2022-05-12 22:39:42,123 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234356736}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 234356736}
2022-05-12 22:39:42,123 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,277 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240648192}) to executor  for transfer request: 0.
2022-05-12 22:39:42,277 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240648192}) about to wait for the following futures []
2022-05-12 22:39:42,278 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240648192}) done waiting for dependent futures
2022-05-12 22:39:42,278 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240648192}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 240648192}
2022-05-12 22:39:42,278 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,812 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 234618880}) to executor  for transfer request: 0.
2022-05-12 22:39:42,813 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,813 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234618880}) about to wait for the following futures []
2022-05-12 22:39:42,813 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 234618880}) done waiting for dependent futures
2022-05-12 22:39:42,813 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 234618880}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 234618880}
2022-05-12 22:39:42,814 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:42,953 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 240910336}) to executor  for transfer request: 0.
2022-05-12 22:39:42,953 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:42,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240910336}) about to wait for the following futures []
2022-05-12 22:39:42,953 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 240910336}) done waiting for dependent futures
2022-05-12 22:39:42,954 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 240910336}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 240910336}
2022-05-12 22:39:42,954 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:43,359 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 215744512}) to executor  for transfer request: 0.
2022-05-12 22:39:43,359 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:43,359 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215744512}) about to wait for the following futures []
2022-05-12 22:39:43,360 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 215744512}) done waiting for dependent futures
2022-05-12 22:39:43,360 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 215744512}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 215744512}
2022-05-12 22:39:43,360 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:43,494 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241172480}) to executor  for transfer request: 0.
2022-05-12 22:39:43,494 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:43,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241172480}) about to wait for the following futures []
2022-05-12 22:39:43,494 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241172480}) done waiting for dependent futures
2022-05-12 22:39:43,495 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241172480}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 241172480}
2022-05-12 22:39:43,495 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,028 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241434624}) to executor  for transfer request: 0.
2022-05-12 22:39:44,028 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241434624}) about to wait for the following futures []
2022-05-12 22:39:44,029 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241434624}) done waiting for dependent futures
2022-05-12 22:39:44,029 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241434624}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 241434624}
2022-05-12 22:39:44,029 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,378 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216006656}) to executor  for transfer request: 0.
2022-05-12 22:39:44,378 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216006656}) about to wait for the following futures []
2022-05-12 22:39:44,378 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216006656}) done waiting for dependent futures
2022-05-12 22:39:44,378 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216006656}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 216006656}
2022-05-12 22:39:44,379 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,553 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241696768}) to executor  for transfer request: 0.
2022-05-12 22:39:44,553 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241696768}) about to wait for the following futures []
2022-05-12 22:39:44,553 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241696768}) done waiting for dependent futures
2022-05-12 22:39:44,553 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241696768}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 241696768}
2022-05-12 22:39:44,553 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,641 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 241958912}) to executor  for transfer request: 0.
2022-05-12 22:39:44,641 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:44,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:44,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241958912}) about to wait for the following futures []
2022-05-12 22:39:44,641 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 241958912}) done waiting for dependent futures
2022-05-12 22:39:44,641 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 241958912}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 241958912}
2022-05-12 22:39:44,641 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:45,184 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216268800}) to executor  for transfer request: 0.
2022-05-12 22:39:45,184 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:45,184 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216268800}) about to wait for the following futures []
2022-05-12 22:39:45,185 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216268800}) done waiting for dependent futures
2022-05-12 22:39:45,185 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216268800}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 216268800}
2022-05-12 22:39:45,185 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:45,738 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216530944}) to executor  for transfer request: 0.
2022-05-12 22:39:45,739 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:45,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216530944}) about to wait for the following futures []
2022-05-12 22:39:45,739 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216530944}) done waiting for dependent futures
2022-05-12 22:39:45,739 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216530944}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 216530944}
2022-05-12 22:39:45,740 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:46,469 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 216793088}) to executor  for transfer request: 0.
2022-05-12 22:39:46,469 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:46,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216793088}) about to wait for the following futures []
2022-05-12 22:39:46,470 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 216793088}) done waiting for dependent futures
2022-05-12 22:39:46,470 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 216793088}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 216793088}
2022-05-12 22:39:46,471 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:46,970 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217055232}) to executor  for transfer request: 0.
2022-05-12 22:39:46,970 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:46,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217055232}) about to wait for the following futures []
2022-05-12 22:39:46,971 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217055232}) done waiting for dependent futures
2022-05-12 22:39:46,972 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217055232}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 217055232}
2022-05-12 22:39:46,972 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:47,686 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217317376}) to executor  for transfer request: 0.
2022-05-12 22:39:47,686 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:47,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217317376}) about to wait for the following futures []
2022-05-12 22:39:47,687 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217317376}) done waiting for dependent futures
2022-05-12 22:39:47,687 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217317376}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 217317376}
2022-05-12 22:39:47,687 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:48,457 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217579520}) to executor  for transfer request: 0.
2022-05-12 22:39:48,457 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:48,457 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217579520}) about to wait for the following futures []
2022-05-12 22:39:48,458 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217579520}) done waiting for dependent futures
2022-05-12 22:39:48,458 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217579520}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 217579520}
2022-05-12 22:39:48,458 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:49,010 s3transfer.futures DEBUG    Submitting task IOWriteTask(transfer_id=0, {'offset': 217841664}) to executor  for transfer request: 0.
2022-05-12 22:39:49,010 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:49,010 s3transfer.futures DEBUG    Submitting task CompleteDownloadNOOPTask(transfer_id=0, {}) to executor  for transfer request: 0.
2022-05-12 22:39:49,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217841664}) about to wait for the following futures []
2022-05-12 22:39:49,011 s3transfer.tasks DEBUG    IOWriteTask(transfer_id=0, {'offset': 217841664}) done waiting for dependent futures
2022-05-12 22:39:49,011 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:39:49,011 s3transfer.tasks DEBUG    Executing task IOWriteTask(transfer_id=0, {'offset': 217841664}) with kwargs {'fileobj': <_io.BufferedRandom name=36>, 'offset': 217841664}
2022-05-12 22:39:49,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:49,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:49,011 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) about to wait for the following futures []
2022-05-12 22:39:49,011 s3transfer.tasks DEBUG    CompleteDownloadNOOPTask(transfer_id=0, {}) done waiting for dependent futures
2022-05-12 22:39:49,011 s3transfer.tasks DEBUG    Executing task CompleteDownloadNOOPTask(transfer_id=0, {}) with kwargs {}
2022-05-12 22:39:49,011 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:39:49,356 eolearn.core.eoworkflow DEBUG    Computing DB2Vector(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {}
  meta_info: {}
  bbox: BBox(((209500.0, 1379500.0), (220500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:49,456 eolearn.core.eoworkflow DEBUG    Removing intermediate result for DB2Vector
2022-05-12 22:39:49,458 eolearn.core.eoworkflow DEBUG    Computing VectorToRaster(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {}
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((209500.0, 1379500.0), (220500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:49,463 eolearn.core.eoworkflow DEBUG    Removing intermediate result for VectorToRaster
2022-05-12 22:39:49,463 eolearn.core.eoworkflow DEBUG    Computing Extent2Boundary(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((209500.0, 1379500.0), (220500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:49,479 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Boundary
2022-05-12 22:39:49,480 eolearn.core.eoworkflow DEBUG    Computing Extent2Distance(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {}
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((209500.0, 1379500.0), (220500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{})
2022-05-12 22:39:49,636 eolearn.core.eoworkflow DEBUG    Removing intermediate result for Extent2Distance
2022-05-12 22:39:49,637 eolearn.core.eoworkflow DEBUG    Computing SaveTask(*[EOPatch(
  data: {
    BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
    CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  mask: {
    CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
    IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
  }
  scalar: {}
  label: {}
  vector: {}
  data_timeless: {
    DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
  }
  mask_timeless: {
    BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
    EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
  }
  scalar_timeless: {}
  label_timeless: {}
  vector_timeless: {
    GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
  }
  meta_info: {}
  bbox: BBox(((209500.0, 1379500.0), (220500.0, 1390500.0)), crs=CRS('32630'))
  timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
)], **{'eopatch_folder': '30PTU_1_1'})
2022-05-12 22:39:49,640 botocore.loaders DEBUG    Loading JSON file: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/boto3/data/s3/2006-03-01/resources-1.json
2022-05-12 22:39:49,641 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:39:49,642 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:49,642 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:39:49,642 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:39:49,643 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:39:49,643 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:39:49,644 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:39:49,644 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:39:49,645 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:39:49,645 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1'}
2022-05-12 22:39:49,645 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:49,645 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:49,645 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:49,645 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:39:49,645 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:39:49,645 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:49,645 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:39:49,645 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:49,645 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:39:49,645 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:39:49,646 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:39:49,646 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:49,646 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:39:49,646 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:39:49,646 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:39:49,646 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:39:49,646 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:39:49,646 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1
2022-05-12 22:39:49,646 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:39:49,646 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T223949Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:39:49,646 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T223949Z
20220512/us-east-1/s3/aws4_request
b22eca2b9bf973e20f24d8f45e2c8190b1f013b9b2cbd2123be8adcfc5c01740
2022-05-12 22:39:49,646 botocore.auth DEBUG    Signature:
ee7a8be2a9efc22718b8a9e1ace7c7d49be53bd1d9e34f82e304a692f43e19d4
2022-05-12 22:39:49,646 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:39:49,646 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:39:49,647 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:39:49,647 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:04,970 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1 HTTP/1.1" 400 0
2022-05-12 22:40:04,971 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'BWJWVE0AB8T2D7QW', 'x-amz-id-2': 'owTAEH+tJmCWRlmKM5RxdQIj62jw9eICZnWRkWW4fS7FcRAMrUYxXNXnsIWpibmwTuozBtHLUsI=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:04 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:04,971 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:04,977 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:04,978 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:04,978 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:04,978 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,978 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,978 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,978 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,979 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,979 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,979 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,979 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,979 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:04,980 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,980 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,980 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,980 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,980 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:04,980 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:04,980 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:04,981 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:04,981 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224004Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:04,981 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224004Z
20220512/us-east-1/s3/aws4_request
01df9403cfeb2d8a32a03c94a9c8bf2da46d75b8fc5f0ecf83f283365294830a
2022-05-12 22:40:04,981 botocore.auth DEBUG    Signature:
4a50d6bf36e9f18c37e761c05e131e35eeddf2a3b6490fae82ab00c0863996c4
2022-05-12 22:40:04,981 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:04,981 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:04,982 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:04,982 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:05,634 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:05,635 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': '533D3KGZYFKAZG5F', 'x-amz-id-2': '0Xzzahl2ck+aDUZ2yQTtsiPd1VR/Hgq3FJ59G+tVGVsMmLhfuSRb6ZYWo+F9YGyjcFxE0WI46fc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:05 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:05,635 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:05,636 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,636 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:05,636 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,636 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:05,636 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:05,636 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:05,637 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,637 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,637 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:05,638 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:05,638 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:05,638 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:05,638 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224005Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:05,638 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224005Z
20220512/eu-central-1/s3/aws4_request
66b649f622a46547260a1ed3046915a6a2d8027c99318f33adff82147f909aef
2022-05-12 22:40:05,639 botocore.auth DEBUG    Signature:
0ac8e63213eb9aa617c4da890d84f80381ff40c770e46141df8d17ffcf112050
2022-05-12 22:40:05,639 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:05,639 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:05,639 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:05,640 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:06,678 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:06,679 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'KoY5MPFkIfce5VU19tc71Izm1apeVKzo6hMF1apmrZMlt4HTMtPZmOHJVS181zplJc0zTg6GepY=', 'x-amz-request-id': 'PH0VB6FE8D2HCVTY', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:06,679 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,679 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:06,679 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,680 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:06,680 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:06,680 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:06,680 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:06,681 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:06,681 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:06,681 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:06,682 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1
2022-05-12 22:40:06,682 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,682 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,682 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/eu-central-1/s3/aws4_request
dfe2d4160d4c7396a3f5fbccc6230ad55bf852df8e80c581ed70fa838a14e928
2022-05-12 22:40:06,682 botocore.auth DEBUG    Signature:
d851eaba82ec64369cd9483549cc187221c20eaa7315611c8148467db64afa0b
2022-05-12 22:40:06,683 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:06,683 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,683 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,767 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1 HTTP/1.1" 404 0
2022-05-12 22:40:06,768 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'PH0ZQEF6WMQ8F96S', 'x-amz-id-2': 'Gzv6rK23+h/771Dj10CGGef475nUEs2JXyoXEUOMn8gsvol+7R1bA+z7U164D0E6hD/NCKoKQEM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:06 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:06,768 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,768 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:06,768 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,768 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:06,768 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:06,769 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:06,771 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:06,771 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:06,771 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,771 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,771 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:06,771 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:06,772 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:06,772 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,772 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:06,772 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:06,772 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,772 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:06,772 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:06,772 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:06,773 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,773 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:06,773 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:06,773 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:06,773 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:06,773 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:06,774 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,774 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,774 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/eu-central-1/s3/aws4_request
b0f9543d7ec12691024740f7671b8e002fb614daba581930866704d8e30676f8
2022-05-12 22:40:06,774 botocore.auth DEBUG    Signature:
b62435b128ffa19df8d68d6ca139a71533047038831141f6f0763cae7ff939e3
2022-05-12 22:40:06,774 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:06,774 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,775 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,865 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:06,865 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'XWHI/k7ihIeAxxNS7lPLI4Lq18+ZKg2xkrxP6ckcHbZC8M4kcrkfhu0mfeoCDZk5f7yhnO6eQ4U=', 'x-amz-request-id': 'PH0JH6PZW32905NZ', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:06,865 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:06,865 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:06,866 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:06,866 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:06,866 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'PH0JH6PZW32905NZ', 'HostId': 'XWHI/k7ihIeAxxNS7lPLI4Lq18+ZKg2xkrxP6ckcHbZC8M4kcrkfhu0mfeoCDZk5f7yhnO6eQ4U=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'XWHI/k7ihIeAxxNS7lPLI4Lq18+ZKg2xkrxP6ckcHbZC8M4kcrkfhu0mfeoCDZk5f7yhnO6eQ4U=', 'x-amz-request-id': 'PH0JH6PZW32905NZ', 'date': 'Thu, 12 May 2022 22:40:07 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:06,867 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:06,868 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:06,869 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:06,870 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:06,872 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,872 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,872 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:06,872 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:06,872 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:06,872 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,872 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:06,872 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,872 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:06,873 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_1_1/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:06,873 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:06,873 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,873 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:06,873 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:06,873 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:06,874 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:06,874 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,874 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:06,874 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:06,874 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_1_1%2F
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224006Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:06,874 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224006Z
20220512/us-east-1/s3/aws4_request
a9dabf2dc2357b0bcdc0dc329138ed5bcd43dda89c4c2b86bf622c4b59407a7e
2022-05-12 22:40:06,874 botocore.auth DEBUG    Signature:
4f1f72248a6da298df0aa4d4b44f00c964181c9f3517a8ea10ec21b443a30f81
2022-05-12 22:40:06,875 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:06,875 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:06,875 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:06,875 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:07,609 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 400 None
2022-05-12 22:40:07,610 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'V3SPF7JERF9FAWKN', 'x-amz-id-2': 'uIDcCUWZtcnD4O3j85hSEfAe7LdeLTQjStHSP4fLdadlifMDNqijVC5em6ar3HdGLzSyLLaeHQs=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:07 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:07,611 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-1V3SPF7JERF9FAWKNuIDcCUWZtcnD4O3j85hSEfAe7LdeLTQjStHSP4fLdadlifMDNqijVC5em6ar3HdGLzSyLLaeHQs='
2022-05-12 22:40:07,614 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:07,615 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:07,615 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:07,615 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:07,615 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,615 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:07,616 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:07,616 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,616 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:07,616 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:07,616 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:07,616 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,617 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:07,617 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:07,617 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_1_1%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224007Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:07,617 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224007Z
20220512/eu-central-1/s3/aws4_request
f627a7c0bb94d57f406bed95c6e57bf62c4fd6483b730b3b1237bd175d3997c0
2022-05-12 22:40:07,617 botocore.auth DEBUG    Signature:
d292d0dcc56a0db3038938e3989e8ddd703cd4372bd53af754a09745f9b14e2a
2022-05-12 22:40:07,617 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:07,618 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:07,618 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:07,619 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:08,594 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_1_1%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,595 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'mZGxSwOmcNaGl5sslSbGfvwoXSsO+eZkVF+bnuVBt+Q2pckMMFDmqrvJ+DRNDT8FJK00CpRT2B0=', 'x-amz-request-id': '34DRCXR5VKS6M2EM', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,595 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_1_1/1000/urlfalseeopatches/30PTU_1_1/2022-05-12T11:07:25.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/bbox.pkl2022-05-12T11:07:44.000Z"f4f4c4487660f2147fbc3c06ce99ea68"184e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/timestamp.pkl2022-05-12T11:07:43.000Z"d20f57f9b0299badcdaec2f120421aa8"2089e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/data/eopatches/30PTU_1_1/mask/'
2022-05-12 22:40:08,596 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,596 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,596 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,596 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:08,596 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,596 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,596 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,596 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,596 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,596 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,596 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,596 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:08,596 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,596 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,597 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,597 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_1_1/data/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,597 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:08,597 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,597 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,597 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:08,597 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:08,597 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,597 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,597 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,597 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_1_1%2Fdata%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,597 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
5ebdc2008a48d92f005caa679c11d4260ceea7242dd507cd1a2e0af847b79864
2022-05-12 22:40:08,597 botocore.auth DEBUG    Signature:
db974e6e7c3b072a04798480d5437c56f73dcb336341dc2e9c06de783de6ac20
2022-05-12 22:40:08,597 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:08,597 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,597 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,684 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_1_1%2Fdata%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,685 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'QfQThwo8Kjq2cYsyJ4026n6ZzFDBwHVFBeK+RkQr8XQ9LBXe+7RKtyFRXzFjk5z/JAMWLEyWQcA=', 'x-amz-request-id': '34DY7SAHCYE24A3S', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,685 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_1_1/data/1000/urlfalseeopatches/30PTU_1_1/data/2022-05-12T11:07:36.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/data/BANDS.npy2022-05-12T11:07:44.000Z"4665ae86d913ce4091293e967914b979-29"242000128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/data/CLP.npy2022-05-12T11:07:44.000Z"4a01d3a8abcabaca30f76b8a5ed19fff-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,687 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,687 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,688 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,688 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,688 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,688 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler >
2022-05-12 22:40:08,688 botocore.hooks DEBUG    Event before-parameter-build.s3.ListObjects: calling handler 
2022-05-12 22:40:08,689 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,689 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler >
2022-05-12 22:40:08,689 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url to https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,689 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event before-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,690 botocore.endpoint DEBUG    Making request for OperationModel(name=ListObjects) with params: {'url_path': '/plot-delineation', 'query_string': {'prefix': 'eopatches/30PTU_1_1/mask/', 'delimiter': '/', 'encoding-type': 'url'}, 'method': 'GET', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'encoding_type_auto_set': True, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler >
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler >
2022-05-12 22:40:08,690 botocore.hooks DEBUG    Event choose-signer.s3.ListObjects: calling handler 
2022-05-12 22:40:08,691 botocore.hooks DEBUG    Event before-sign.s3.ListObjects: calling handler >
2022-05-12 22:40:08,691 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,691 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url
2022-05-12 22:40:08,692 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,692 botocore.auth DEBUG    CanonicalRequest:
GET
/
delimiter=%2F&encoding-type=url&prefix=eopatches%2F30PTU_1_1%2Fmask%2F
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,692 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
dcb5e0277174657b18e4a4cd58a550d2885706b1ed698f1dd10afe08625400cc
2022-05-12 22:40:08,692 botocore.auth DEBUG    Signature:
434eba315698a239d39c5cf17ad0e2c6f655bf07db1b6add497825d3aa3c9939
2022-05-12 22:40:08,692 botocore.hooks DEBUG    Event request-created.s3.ListObjects: calling handler 
2022-05-12 22:40:08,692 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,693 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,780 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "GET /?prefix=eopatches%2F30PTU_1_1%2Fmask%2F&delimiter=%2F&encoding-type=url HTTP/1.1" 200 None
2022-05-12 22:40:08,780 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'bPJbDlaMTKLH/coicrgTOLIc2zQFxsj6lQzg16VN1RwJMKuR3MR0ILUaLTJTvvvFggCZ+IQgH/g=', 'x-amz-request-id': '34DHXQN00TQ10YQ3', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'x-amz-bucket-region': 'eu-central-1', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,780 botocore.parsers DEBUG    Response body:
b'\nplot-delineationeopatches/30PTU_1_1/mask/1000/urlfalseeopatches/30PTU_1_1/mask/2022-05-12T11:07:32.000Z"d41d8cd98f00b204e9800998ecf8427e"0e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/mask/CLM.npy2022-05-12T11:07:44.000Z"78cf4f75cffa7122c15f66470abde744-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARDeopatches/30PTU_1_1/mask/IS_DATA.npy2022-05-12T11:07:44.000Z"16d79d874d644706e316e5866084ae78-4"30250128e4004a2c6a2a20b740d41225b973bd817b6afd37a9b84d486e240e691aa62b3cSTANDARD'
2022-05-12 22:40:08,782 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler 
2022-05-12 22:40:08,783 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,783 botocore.hooks DEBUG    Event needs-retry.s3.ListObjects: calling handler >
2022-05-12 22:40:08,783 botocore.hooks DEBUG    Event after-call.s3.ListObjects: calling handler 
2022-05-12 22:40:08,783 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,786 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,786 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless'}
2022-05-12 22:40:08,786 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,786 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,787 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:08,787 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,788 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,788 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,788 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:08,788 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:08,789 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,789 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,789 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
6b87c7f99e410951082af32d69b272ada168ddd378df2bbb97cab6e5ff0fa23d
2022-05-12 22:40:08,789 botocore.auth DEBUG    Signature:
42f8d6f3de3b4e3a5b93b14c4bc6e250ef0c3f3826962d0ae9c729a1eb6ebf1b
2022-05-12 22:40:08,789 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,790 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,790 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,873 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:08,873 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DT41G879GRAQQS', 'x-amz-id-2': 'na7l50nZI2O3sgA2Pa/SKSKncue8Ct6Ed/aJANfrU5bVAtKKQJDeZw/0ReN37g6qv1HvCAJ7jH4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,873 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,874 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,874 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,874 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,874 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,876 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,876 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless/'}
2022-05-12 22:40:08,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,877 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,877 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,878 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,878 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:08,878 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:08,879 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,879 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,879 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
45279706d4a28c3bfd40447d0eadd6701695f6ff4472c4a677600fc5aa697e08
2022-05-12 22:40:08,879 botocore.auth DEBUG    Signature:
ab116003c2da5756e5ecff1de0c46e570a58f4a55a6f1eb934c14ea1536ec9a4
2022-05-12 22:40:08,879 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,879 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,880 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:08,960 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:08,961 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '34DJ6ZGSRHJG0FPP', 'x-amz-id-2': '5b4zOLoxmIgjmjSEUzqziDWMZHNJzGIoVsqKmsE2UfSmzgv2fVw1H/WkIDg7eAOiXSya6yDWgXY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:08,961 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:08,961 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:08,961 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:08,961 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:08,962 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:08,963 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:08,963 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:08,964 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,964 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,964 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,964 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:08,964 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:08,964 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,964 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:08,964 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:08,964 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,964 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:08,965 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:08,965 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:08,965 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,965 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:08,965 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:08,965 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:08,965 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:08,965 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:08,966 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:08,966 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224008Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:08,966 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224008Z
20220512/eu-central-1/s3/aws4_request
41150f4d39cf6c02083d69e588e21251ddce5c9cb1f54c2d3afb902fbfb2ad45
2022-05-12 22:40:08,966 botocore.auth DEBUG    Signature:
43828ffb37fb1df76953cab8f9703ea8f3e599852d03724dd9d9b0d102013d7f
2022-05-12 22:40:08,967 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:08,967 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:08,967 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,050 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,051 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'QdoPWeNUFatkZ32h0p8fJ2i+PWxP4ol67+R1MP+AXJvekS2MhjhtxWLkfxLWaK8UMtv724lFCIs=', 'x-amz-request-id': '58AD5BKMJGNBMGN0', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,052 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,053 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,053 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,053 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,053 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58AD5BKMJGNBMGN0', 'HostId': 'QdoPWeNUFatkZ32h0p8fJ2i+PWxP4ol67+R1MP+AXJvekS2MhjhtxWLkfxLWaK8UMtv724lFCIs=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'QdoPWeNUFatkZ32h0p8fJ2i+PWxP4ol67+R1MP+AXJvekS2MhjhtxWLkfxLWaK8UMtv724lFCIs=', 'x-amz-request-id': '58AD5BKMJGNBMGN0', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,054 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,056 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,056 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless'}
2022-05-12 22:40:09,057 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,057 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,057 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,057 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,057 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,057 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,057 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,058 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:09,058 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,058 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,058 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,058 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,058 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,058 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,059 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,059 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:09,059 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:09,059 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,059 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,059 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
b76d5e5f8f80465ea0a3ee78b21d163fd34aebf1a498354dfa7b415c53e420d2
2022-05-12 22:40:09,060 botocore.auth DEBUG    Signature:
8a4dbc06d222547b961c8b1df2c55da867c90c0995f95020d42a641f3f2cd963
2022-05-12 22:40:09,060 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,060 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,060 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,140 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,141 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A4RS09VMBXD20Z', 'x-amz-id-2': '4Jh598H50obmGbydj6gwYBEGsdvLg+pcldvI2l+eUpTes3UEHHigWlx2AAbj1SOG5UVMitJh080=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,141 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,141 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,141 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,142 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,142 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,143 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,144 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless/'}
2022-05-12 22:40:09,144 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,144 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,144 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,144 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,144 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,145 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,145 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,145 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:09,145 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,145 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,145 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,146 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,146 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,146 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,146 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,146 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,146 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:09,146 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:09,147 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,147 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,147 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
b1e4048985dd5a237ce7803ee985037ebee53783f3a2b8afcaf34c8eb415449d
2022-05-12 22:40:09,147 botocore.auth DEBUG    Signature:
a541a6efbf1a367e13b93c231a4039e54a027a2167d8e452ab2e017fcfbe80ee
2022-05-12 22:40:09,148 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,148 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,148 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,226 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,227 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A0M3RWH2Z4Y78P', 'x-amz-id-2': 'PsGBBR5MPkIYYVI519ou72zUpX+IO4O6F9M0PRGRum1lBbR+ckDdSz7AzMP6fOjLAM/IplBrO6Q=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,227 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,227 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,227 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,227 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,227 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,229 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,229 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1'}
2022-05-12 22:40:09,229 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,229 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,230 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,230 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,230 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,230 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,230 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,230 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:09,231 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,231 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,231 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,231 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,231 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,231 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,231 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,232 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,232 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:09,232 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1
2022-05-12 22:40:09,232 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,233 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,233 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
d5032fb9a2d830f3f0d864a0e0f0835b9a4f7493696c3dcda12a61c121703636
2022-05-12 22:40:09,233 botocore.auth DEBUG    Signature:
f32b7cd28d0ea313ea399a6d9d182de30ff77c2ae6debea2a0aeff669ac86b78
2022-05-12 22:40:09,233 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,234 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,234 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,315 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1 HTTP/1.1" 404 0
2022-05-12 22:40:09,316 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AFGYGWQWZWQS5T', 'x-amz-id-2': 'HcuGzYUPi6QS1LQXROeJHD2nbixIpE+/Zdh+vEyJdqo+FhWTEpiNFmHNo9Tlc1a+WdeaE8mmcaQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,316 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,316 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,316 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,317 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,317 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,319 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,320 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:09,320 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,320 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,320 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,320 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,321 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,321 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,321 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,322 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,322 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:09,322 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:09,323 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,323 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,323 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
d2411f4e0fc039017cf3981196ab4554556a2387f5c97cbc88633525427814f0
2022-05-12 22:40:09,323 botocore.auth DEBUG    Signature:
675ff1c5fefa3140505c8adbe4fe01d6c495e520f3c043401f4e239ec9cc51c8
2022-05-12 22:40:09,324 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,324 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,324 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,406 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,407 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'TeHh/SrE+B8vG00mCtmYqgK0T0JkO7HGOMRPuq+lziW3pCSML+tQehY4TruUgPTFVRbFgEVAVm8=', 'x-amz-request-id': '58A7EW33HEZ0DG4J', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,407 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,409 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,409 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,409 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,409 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A7EW33HEZ0DG4J', 'HostId': 'TeHh/SrE+B8vG00mCtmYqgK0T0JkO7HGOMRPuq+lziW3pCSML+tQehY4TruUgPTFVRbFgEVAVm8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'TeHh/SrE+B8vG00mCtmYqgK0T0JkO7HGOMRPuq+lziW3pCSML+tQehY4TruUgPTFVRbFgEVAVm8=', 'x-amz-request-id': '58A7EW33HEZ0DG4J', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,410 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,412 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,413 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1'}
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,413 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,414 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,414 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,415 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,415 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:09,416 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1
2022-05-12 22:40:09,416 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,416 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,416 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
d5032fb9a2d830f3f0d864a0e0f0835b9a4f7493696c3dcda12a61c121703636
2022-05-12 22:40:09,416 botocore.auth DEBUG    Signature:
f32b7cd28d0ea313ea399a6d9d182de30ff77c2ae6debea2a0aeff669ac86b78
2022-05-12 22:40:09,417 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,417 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,418 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,497 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1 HTTP/1.1" 404 0
2022-05-12 22:40:09,497 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AC35HDW0STQZER', 'x-amz-id-2': 'E5olo0fjwpm74kwsQoDjw/fJa3eruk6bM3oaWYiWyozXPF/KpgL/gpEPUXjcZ4KM9sDBOrcRF7M=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,497 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,498 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,498 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,498 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,498 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,501 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,501 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:09,502 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,502 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,502 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,502 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,502 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,502 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,503 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,503 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:09,503 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,503 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,503 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,503 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,503 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,504 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,504 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,504 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,504 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:09,504 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:09,505 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,505 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,505 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
d2411f4e0fc039017cf3981196ab4554556a2387f5c97cbc88633525427814f0
2022-05-12 22:40:09,505 botocore.auth DEBUG    Signature:
675ff1c5fefa3140505c8adbe4fe01d6c495e520f3c043401f4e239ec9cc51c8
2022-05-12 22:40:09,505 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,506 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,506 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,588 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,589 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'td1FWDKWBFo7iS6rwkrbtahZtIGYhiNcJkr6TEO8TwQiCS4uFlk5YcAc47rGbvmLOAjHUuHSr2g=', 'x-amz-request-id': '58A9D6HR9G5YSXGZ', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,590 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,591 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,591 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,591 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,591 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58A9D6HR9G5YSXGZ', 'HostId': 'td1FWDKWBFo7iS6rwkrbtahZtIGYhiNcJkr6TEO8TwQiCS4uFlk5YcAc47rGbvmLOAjHUuHSr2g=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'td1FWDKWBFo7iS6rwkrbtahZtIGYhiNcJkr6TEO8TwQiCS4uFlk5YcAc47rGbvmLOAjHUuHSr2g=', 'x-amz-request-id': '58A9D6HR9G5YSXGZ', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,592 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,596 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,597 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless'}
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,597 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,598 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,598 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,598 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:09,598 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,598 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,598 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,598 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,599 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,599 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:09,599 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:09,600 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,600 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,600 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
b76d5e5f8f80465ea0a3ee78b21d163fd34aebf1a498354dfa7b415c53e420d2
2022-05-12 22:40:09,600 botocore.auth DEBUG    Signature:
8a4dbc06d222547b961c8b1df2c55da867c90c0995f95020d42a641f3f2cd963
2022-05-12 22:40:09,601 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,601 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,601 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,681 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:09,682 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A5KQ1NT1K354RD', 'x-amz-id-2': 'CADFvR4jOGakxWdVSFeNTuJAxM0wmAthOcSHslOchTly5O3SsOQfAN5Hzp0lE8VqDe5vlKvFtMM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,682 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,683 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,683 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,683 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,683 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,686 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,687 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless/'}
2022-05-12 22:40:09,687 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,687 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,687 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,687 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,687 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,688 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,688 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,688 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,689 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,689 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:09,690 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:09,690 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,690 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,690 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
b1e4048985dd5a237ce7803ee985037ebee53783f3a2b8afcaf34c8eb415449d
2022-05-12 22:40:09,691 botocore.auth DEBUG    Signature:
a541a6efbf1a367e13b93c231a4039e54a027a2167d8e452ab2e017fcfbe80ee
2022-05-12 22:40:09,691 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,691 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,692 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,773 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:09,773 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58A8VWCB5MB0WZ3S', 'x-amz-id-2': 'Bj/65T6pwld+oXnzso9S7uEmq/PBdUf5ONRBz2Iuj9SRgJK4pcd22QgI3vtNd8SHI6gF0DHWVZ0=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:08 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:09,773 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,774 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,774 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,774 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,774 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,775 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,776 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:09,776 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,776 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,776 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,776 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,776 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:09,776 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:09,776 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:09,777 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:09,777 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:09,777 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:09,777 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,777 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_1_1/data_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224009Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:09,777 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
0748b447b55fc925de58f1b52b94f9b259a87590ee116bfb2490b57e99aff304
2022-05-12 22:40:09,777 botocore.auth DEBUG    Signature:
88ff6f1ce8cfbd2cf46c7afc10d04b03d7aac67cd91c91f8b1f949d8a269318c
2022-05-12 22:40:09,777 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:09,777 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,778 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,867 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_1_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:09,867 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'TgwHhbN+qrutLfBeTkhuhRhyZ04p27IxoJGJKJRiYIm0HRscecbRG85Gigz43I9wGAngFfypUk8=', 'x-amz-request-id': '58ADA320CJB0G1EM', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,867 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,867 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:09,867 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,867 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:09,867 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58ADA320CJB0G1EM', 'HostId': 'TgwHhbN+qrutLfBeTkhuhRhyZ04p27IxoJGJKJRiYIm0HRscecbRG85Gigz43I9wGAngFfypUk8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'TgwHhbN+qrutLfBeTkhuhRhyZ04p27IxoJGJKJRiYIm0HRscecbRG85Gigz43I9wGAngFfypUk8=', 'x-amz-request-id': '58ADA320CJB0G1EM', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:09,868 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,868 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,868 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:09,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,868 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,868 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,868 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,869 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,869 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,869 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:09,869 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:09,869 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,869 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,869 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
d2411f4e0fc039017cf3981196ab4554556a2387f5c97cbc88633525427814f0
2022-05-12 22:40:09,869 botocore.auth DEBUG    Signature:
675ff1c5fefa3140505c8adbe4fe01d6c495e520f3c043401f4e239ec9cc51c8
2022-05-12 22:40:09,869 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,869 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,870 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:09,950 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:09,951 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'TUTUkQdWiJDgPkhVRg/mni4wqPs/f+6YF5oEOP9X0rG4gXiXRHRNaDS+9NdWJVOr/PybrC9HcIA=', 'x-amz-request-id': '58AFRRC5WSQG7C77', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:09,951 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:09,952 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:09,952 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:09,952 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:09,952 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': '58AFRRC5WSQG7C77', 'HostId': 'TUTUkQdWiJDgPkhVRg/mni4wqPs/f+6YF5oEOP9X0rG4gXiXRHRNaDS+9NdWJVOr/PybrC9HcIA=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'TUTUkQdWiJDgPkhVRg/mni4wqPs/f+6YF5oEOP9X0rG4gXiXRHRNaDS+9NdWJVOr/PybrC9HcIA=', 'x-amz-request-id': '58AFRRC5WSQG7C77', 'date': 'Thu, 12 May 2022 22:40:10 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:09,952 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:09,954 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:09,954 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless'}
2022-05-12 22:40:09,954 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,954 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,954 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,954 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:09,954 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:09,954 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,954 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:09,954 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:09,955 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:09,955 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:09,955 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:09,955 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:09,956 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:09,956 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224009Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:09,956 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224009Z
20220512/eu-central-1/s3/aws4_request
b76d5e5f8f80465ea0a3ee78b21d163fd34aebf1a498354dfa7b415c53e420d2
2022-05-12 22:40:09,956 botocore.auth DEBUG    Signature:
8a4dbc06d222547b961c8b1df2c55da867c90c0995f95020d42a641f3f2cd963
2022-05-12 22:40:09,956 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:09,956 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:09,956 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,036 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,036 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '58AAG3Y8MAF58JFC', 'x-amz-id-2': '3hrg9TtGUKQ+5YzavFTyemkeMR/rztbDYT4prtbkKPAXjE8RnXQA+CqDSUAgQG14795aLHKmhm4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,036 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,037 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,037 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,037 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,037 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,039 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,039 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless/'}
2022-05-12 22:40:10,039 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,040 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,040 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,040 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,040 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,040 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,040 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,040 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:10,040 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,041 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,041 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,041 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,041 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,041 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,041 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,041 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,041 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:10,041 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:10,042 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,042 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,042 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
7e2f93dbc9000e2f6b6cb0c4ce4ae374658244cebd3dce0d3c48f6957bcd22e6
2022-05-12 22:40:10,042 botocore.auth DEBUG    Signature:
d4c34b7e5cfee79870eff798a361f6deeae6055a52484d9036d67c9b19813227
2022-05-12 22:40:10,042 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,043 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,043 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,130 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:10,131 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'jYhz/ILi7cGcZaUaHW4UZIMymrhFWubXlnRGGevjcdUsQWZI+NQy5t/Yc4fvQj6LIiLaXtOEsi4=', 'x-amz-request-id': 'ZX14HXGJ9BQ9ZJZA', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,131 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,132 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,132 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,132 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,133 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX14HXGJ9BQ9ZJZA', 'HostId': 'jYhz/ILi7cGcZaUaHW4UZIMymrhFWubXlnRGGevjcdUsQWZI+NQy5t/Yc4fvQj6LIiLaXtOEsi4=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'jYhz/ILi7cGcZaUaHW4UZIMymrhFWubXlnRGGevjcdUsQWZI+NQy5t/Yc4fvQj6LIiLaXtOEsi4=', 'x-amz-request-id': 'ZX14HXGJ9BQ9ZJZA', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,133 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,135 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,135 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless'}
2022-05-12 22:40:10,135 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,135 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,135 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,135 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,135 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,136 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,136 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,136 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,137 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,137 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:10,137 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:10,137 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,137 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,137 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
d0b796ad9c55b25eff3234d5b508a036fd896093d1087153ab50138afd590ec6
2022-05-12 22:40:10,137 botocore.auth DEBUG    Signature:
736f6975db8a25c46b8d8756a126457955f919e6abced34ba3d07c129c1f6def
2022-05-12 22:40:10,137 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,138 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,138 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,224 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,225 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX19BZWCQP7ZT67A', 'x-amz-id-2': 'TEs9yLseCGCyZfMGacOsSewnKqskBW+gd0Tx+NVQJcXxWk0Th/hNalH7e4pKZppKCmxnXaOxtLA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,225 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,225 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,225 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,225 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,225 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,227 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless/'}
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,227 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,228 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,228 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,228 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,229 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,229 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:10,229 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:10,230 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,230 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,230 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
de8427c20bc24708d4306d02f4355e712b493fac46196864c2ef0e4eb76774a6
2022-05-12 22:40:10,230 botocore.auth DEBUG    Signature:
bd83187187067d70d23217ccff63169263495020b864e6b5cb5afac0e38926da
2022-05-12 22:40:10,231 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,231 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,231 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,315 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,315 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1820T3QPZ6DXV2', 'x-amz-id-2': 'scnyOZ+tnfzZvhit2rc5BTsJrTuuxL7LvWI6u7HIl33/P9MuRbM+d/3ayUTmyF3WX0Qqi9GSkDk=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,316 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,316 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,316 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,316 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,316 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,318 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,319 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,319 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,320 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:10,320 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,320 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,320 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,320 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,320 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,320 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,320 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,320 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,320 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:10,320 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:10,321 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,321 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,321 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
5df0f9e2f3e83d77e040bcd74b4ec59a27deae57c314ee6d9af1344cbc871fb9
2022-05-12 22:40:10,321 botocore.auth DEBUG    Signature:
45ee3ff31756a075d14a24b05f39e3de8ba46c813ed0dda22696e23f7d01d0ff
2022-05-12 22:40:10,321 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,321 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,321 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,414 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:10,415 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '4OacIL9s++z8YNj14xlpYVk2K6EmNdTdes5rPtfrnEOwXLyeexEEhf8BBuCZpLizWlUJ4HAIKNw=', 'x-amz-request-id': 'ZX1036DEAYFDAS28', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,415 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,415 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,415 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,415 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,415 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX1036DEAYFDAS28', 'HostId': '4OacIL9s++z8YNj14xlpYVk2K6EmNdTdes5rPtfrnEOwXLyeexEEhf8BBuCZpLizWlUJ4HAIKNw=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '4OacIL9s++z8YNj14xlpYVk2K6EmNdTdes5rPtfrnEOwXLyeexEEhf8BBuCZpLizWlUJ4HAIKNw=', 'x-amz-request-id': 'ZX1036DEAYFDAS28', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,415 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,415 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,416 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless'}
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,416 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,416 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,416 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:10,416 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:10,416 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,416 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,416 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
d0b796ad9c55b25eff3234d5b508a036fd896093d1087153ab50138afd590ec6
2022-05-12 22:40:10,416 botocore.auth DEBUG    Signature:
736f6975db8a25c46b8d8756a126457955f919e6abced34ba3d07c129c1f6def
2022-05-12 22:40:10,416 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,416 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,417 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,496 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:10,497 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX147KHDQT6YR4PT', 'x-amz-id-2': 'tyqJCuMUJZq1UlEM2ifnCWYKdLOrs7U4l7RaLK49DWAPO3rUT8avLAJs1QCJNGzGd4PWuMm0bDw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,497 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,497 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,497 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,497 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,497 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,498 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless/'}
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,498 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,498 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,498 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,499 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,499 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:10,499 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:10,499 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,499 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,499 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
de8427c20bc24708d4306d02f4355e712b493fac46196864c2ef0e4eb76774a6
2022-05-12 22:40:10,499 botocore.auth DEBUG    Signature:
bd83187187067d70d23217ccff63169263495020b864e6b5cb5afac0e38926da
2022-05-12 22:40:10,499 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,499 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,499 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,580 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:10,581 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1DGMTWSC3RRDZ6', 'x-amz-id-2': 'Ova2e9a1OEkO7QRnBuSTmK5UtB+iS29v6ExuhDQvat4n0HjPJRCQylOv4QXKJUW0q5EtmUzxw6Y=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,581 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,581 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,581 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,581 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,582 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,583 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,584 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1'}
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,584 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,585 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:10,585 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,585 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,585 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,585 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,585 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,585 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,585 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,585 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,585 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:10,585 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1
2022-05-12 22:40:10,586 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,586 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,586 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
41cf047f99c1caaad0ac6b100957f876ee74f9b553cb75a69e6b2458b4357298
2022-05-12 22:40:10,586 botocore.auth DEBUG    Signature:
aab9ba2b5d3e9cfb6a99890be112a5d522520b7c6eaf6253cf1fef9a5e80f906
2022-05-12 22:40:10,586 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,586 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,587 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,669 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1 HTTP/1.1" 404 0
2022-05-12 22:40:10,670 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX10PJ75C8A7RX3J', 'x-amz-id-2': 'V5kI5yd7iQDvGFHcEJw6H0/wtgW6Zkkq1nYIvrnCEKLzzGgbQqNpJMP1TQyCsrQSU15KhrrV1MQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:09 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,670 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,670 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,670 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,671 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,671 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,673 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,674 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,674 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,674 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,675 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,675 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:10,675 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:10,675 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,675 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,676 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
5df0f9e2f3e83d77e040bcd74b4ec59a27deae57c314ee6d9af1344cbc871fb9
2022-05-12 22:40:10,676 botocore.auth DEBUG    Signature:
45ee3ff31756a075d14a24b05f39e3de8ba46c813ed0dda22696e23f7d01d0ff
2022-05-12 22:40:10,676 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,676 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,676 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,760 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:10,761 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'euTcHoVDhrmYaBCKL0tJheqZWXWtTMZCPhGoswymvIPUKoOc6zJ4Bufiw8qkh90RQl7jAk8T96s=', 'x-amz-request-id': 'ZX1ASG280V4KDKN3', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,761 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,762 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,762 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,762 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX1ASG280V4KDKN3', 'HostId': 'euTcHoVDhrmYaBCKL0tJheqZWXWtTMZCPhGoswymvIPUKoOc6zJ4Bufiw8qkh90RQl7jAk8T96s=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'euTcHoVDhrmYaBCKL0tJheqZWXWtTMZCPhGoswymvIPUKoOc6zJ4Bufiw8qkh90RQl7jAk8T96s=', 'x-amz-request-id': 'ZX1ASG280V4KDKN3', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,762 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,763 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1'}
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,763 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,763 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:10,763 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1
2022-05-12 22:40:10,764 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,764 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,764 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
41cf047f99c1caaad0ac6b100957f876ee74f9b553cb75a69e6b2458b4357298
2022-05-12 22:40:10,764 botocore.auth DEBUG    Signature:
aab9ba2b5d3e9cfb6a99890be112a5d522520b7c6eaf6253cf1fef9a5e80f906
2022-05-12 22:40:10,764 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,764 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,764 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,849 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1 HTTP/1.1" 404 0
2022-05-12 22:40:10,850 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1E5ERZF1XGZS60', 'x-amz-id-2': '4lfWCfhp5HwB/fGKjt9Ksskt3Cm0UZpiKdW9PzG9cnUg21K5Ghdq1eBUQvJO01KQjamVhIQTnkQ=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:10,850 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,850 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,850 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,851 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,851 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,855 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,855 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,856 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,857 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,857 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,857 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:10,857 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,857 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,857 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,857 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,858 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,858 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,858 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,858 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,858 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:10,858 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:10,859 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,859 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,859 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
5df0f9e2f3e83d77e040bcd74b4ec59a27deae57c314ee6d9af1344cbc871fb9
2022-05-12 22:40:10,859 botocore.auth DEBUG    Signature:
45ee3ff31756a075d14a24b05f39e3de8ba46c813ed0dda22696e23f7d01d0ff
2022-05-12 22:40:10,860 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,860 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,860 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:10,941 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:10,942 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+nboUFIpqBZ/pAep4sJ/TV7+/GDRjrycqlzx6Ln2IOZPIphW0ZY4YiOybArDUB+S7OA5hy3Fs9I=', 'x-amz-request-id': 'ZX123DCGGP6RTES1', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:10,942 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:10,943 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:10,943 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:10,943 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:10,943 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZX123DCGGP6RTES1', 'HostId': '+nboUFIpqBZ/pAep4sJ/TV7+/GDRjrycqlzx6Ln2IOZPIphW0ZY4YiOybArDUB+S7OA5hy3Fs9I=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '+nboUFIpqBZ/pAep4sJ/TV7+/GDRjrycqlzx6Ln2IOZPIphW0ZY4YiOybArDUB+S7OA5hy3Fs9I=', 'x-amz-request-id': 'ZX123DCGGP6RTES1', 'date': 'Thu, 12 May 2022 22:40:11 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:10,944 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:10,946 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless'}
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,946 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:10,947 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:10,947 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:10,947 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:10,947 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224010Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:10,947 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224010Z
20220512/eu-central-1/s3/aws4_request
d0b796ad9c55b25eff3234d5b508a036fd896093d1087153ab50138afd590ec6
2022-05-12 22:40:10,947 botocore.auth DEBUG    Signature:
736f6975db8a25c46b8d8756a126457955f919e6abced34ba3d07c129c1f6def
2022-05-12 22:40:10,947 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:10,947 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:10,948 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,032 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,033 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZX1EQ3ZH2VSKZXSH', 'x-amz-id-2': '1rI1lnNMbt/UyFA8mK8CnifGKY7zHCS26p66XCSAO6ctrnvmmt2H+7EtqiqTXD/vrI+kc1Gl/GY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,033 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,033 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,033 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,033 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,034 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,036 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,036 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless/'}
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,037 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,038 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,038 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,038 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,039 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,039 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:11,039 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:11,039 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,039 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,039 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
12b200be8e367546ff2852ba6349aea0258492adf1c8549df7b8f2973e05b3e1
2022-05-12 22:40:11,039 botocore.auth DEBUG    Signature:
c9a2c0a3a5b28578e0f77006c6947368f454960665c8945f995df3f7c2d8f15b
2022-05-12 22:40:11,040 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,040 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,040 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,123 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,123 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXF5M8HR3G3QAA0', 'x-amz-id-2': 'xPdcvN1+SYPTiPRyWbVVQg6GmnihAoVvSs3XCQYt3vHy36kz//Tji2wi1ZPzC3/uX6k1QLfU9AA=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,123 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,123 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,123 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,123 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,123 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,124 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:11,124 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:11,125 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:11,125 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:11,125 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:11,125 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:11,125 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,125 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_1_1/vector_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224011Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:11,125 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
df18d0bfec4d39d2a7dbfc9e060082048c4c240f9bba2e01e6e39d3f88fd0324
2022-05-12 22:40:11,125 botocore.auth DEBUG    Signature:
cb2457e44091c39700cec28eb28bc1cca2fe1827cd37e553d3131589fef90837
2022-05-12 22:40:11,125 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:11,125 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,125 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,215 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_1_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,216 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'UnzCHuEKPEhvFNF7D05SbrxiA30Wnr70lavroH2XtGrMpn/dLjom3n28Zf6LsDIb0B7Xdy2zLVo=', 'x-amz-request-id': 'HZXAES2T27H9JJRF', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,216 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,216 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:11,216 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,216 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:11,216 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZXAES2T27H9JJRF', 'HostId': 'UnzCHuEKPEhvFNF7D05SbrxiA30Wnr70lavroH2XtGrMpn/dLjom3n28Zf6LsDIb0B7Xdy2zLVo=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'UnzCHuEKPEhvFNF7D05SbrxiA30Wnr70lavroH2XtGrMpn/dLjom3n28Zf6LsDIb0B7Xdy2zLVo=', 'x-amz-request-id': 'HZXAES2T27H9JJRF', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:11,217 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,217 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,217 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,218 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:11,218 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:11,218 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,218 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,218 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
75a158ebf2934091824e0d0adab10c5b71495f72c81ea9500e8dc64b2f22dd87
2022-05-12 22:40:11,218 botocore.auth DEBUG    Signature:
3a4d6984587ddab8c714727bf727e107c0bfc135726422add61de0e6fe400b1c
2022-05-12 22:40:11,218 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,218 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,218 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,301 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:11,302 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'YzVnKSZwFSEIvfF6UclVvu+iuDatm2eX7yG/WdDP3h0yEjoqFlcNu+PYVHGLO94I8/TYtzkPxWQ=', 'x-amz-request-id': 'HZX4SV69TVG652TC', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,302 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,303 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,303 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,303 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,303 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX4SV69TVG652TC', 'HostId': 'YzVnKSZwFSEIvfF6UclVvu+iuDatm2eX7yG/WdDP3h0yEjoqFlcNu+PYVHGLO94I8/TYtzkPxWQ=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'YzVnKSZwFSEIvfF6UclVvu+iuDatm2eX7yG/WdDP3h0yEjoqFlcNu+PYVHGLO94I8/TYtzkPxWQ=', 'x-amz-request-id': 'HZX4SV69TVG652TC', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,303 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,305 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,306 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless'}
2022-05-12 22:40:11,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,306 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,306 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,307 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,307 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:11,307 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,307 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,307 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,307 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,307 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,307 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,307 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,307 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,307 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:11,308 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:11,308 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,308 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,308 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
562a74e671c6cba9373a8da3efe98016dd90724ac02bbc483b4daa1252da2ca1
2022-05-12 22:40:11,308 botocore.auth DEBUG    Signature:
5d476b263c7b7c71f83f2aa50c50381edc5541ef6ace1e7f0615d30d0e990b19
2022-05-12 22:40:11,308 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,308 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,309 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,391 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,391 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZXEVM5JNSRDPX2E', 'x-amz-id-2': 'Jt8S3o7OkCj5vu1IGms2bdkFtJzs7szUXpjyODiAiXBRu+mDcQ7mENigqbIEO6pSvIB93lJIb5g=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,391 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,392 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,392 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,392 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,392 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,393 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,394 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless/'}
2022-05-12 22:40:11,394 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,394 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,394 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,394 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,394 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,394 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,394 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,395 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,395 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,395 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,395 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:11,395 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:11,396 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,396 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,396 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
12b200be8e367546ff2852ba6349aea0258492adf1c8549df7b8f2973e05b3e1
2022-05-12 22:40:11,396 botocore.auth DEBUG    Signature:
c9a2c0a3a5b28578e0f77006c6947368f454960665c8945f995df3f7c2d8f15b
2022-05-12 22:40:11,396 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,396 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,397 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,532 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:11,533 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ewDSDDGZwvBluvQ/5jhjvR60u4MBM8ubJLPqdoKrL4YrC0bp4a1MYtc/1+rEaTXERm0YHakJiYk=', 'x-amz-request-id': 'HZX896HKVVXX28Y1', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,533 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,534 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,534 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,534 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,535 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX896HKVVXX28Y1', 'HostId': 'ewDSDDGZwvBluvQ/5jhjvR60u4MBM8ubJLPqdoKrL4YrC0bp4a1MYtc/1+rEaTXERm0YHakJiYk=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'ewDSDDGZwvBluvQ/5jhjvR60u4MBM8ubJLPqdoKrL4YrC0bp4a1MYtc/1+rEaTXERm0YHakJiYk=', 'x-amz-request-id': 'HZX896HKVVXX28Y1', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,535 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,537 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,537 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless'}
2022-05-12 22:40:11,537 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,537 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,537 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,537 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,537 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,538 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,538 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,538 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:11,538 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,538 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,538 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,538 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,538 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,538 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,539 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,539 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,539 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:11,539 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:11,539 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,539 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,539 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
a9059924f6ccbd22df071077a40d697dfaec2b6bc400dd19cbaa4e2a339ae0c2
2022-05-12 22:40:11,539 botocore.auth DEBUG    Signature:
12af918c11c9d025c7cbc969d3d64544e5a5f7c84b0b4bdfc22121343c96fe10
2022-05-12 22:40:11,540 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,540 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,540 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,620 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,621 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX948Y1ZD0SDKNM', 'x-amz-id-2': 'HDbivi5rRU7AGTJOgs8UjYaUp3nuFegwTukwL/meoK9sT0ivbhltwaCJhuS5n0l82/9oT89TKvE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,621 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,622 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,622 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,622 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,622 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,624 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,624 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless/'}
2022-05-12 22:40:11,624 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,624 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,624 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,624 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,624 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,625 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,625 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,625 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:11,625 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,625 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,625 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,625 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,625 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,626 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,626 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:11,626 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:11,626 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,626 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,626 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
34b7c662e87c876f0021aa0e3210cdd41dccae3d2f353ddf250ec0c24fde403e
2022-05-12 22:40:11,626 botocore.auth DEBUG    Signature:
96adcee9731d5d0f54b87fe96dc7cd7164c70a0261b8e7ceada56d0f2c25d2da
2022-05-12 22:40:11,627 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,627 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,627 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,710 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,711 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX07DY9PK1Y5DVF', 'x-amz-id-2': 'wQ9zUH3OKYP+UvvuLzYdZfyXY0tyjcqpFQwwQ82i9J2862g8L8KEAWgpp8DUM/vTx4WCizOu/AY=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:10 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,711 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,711 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,711 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,711 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,712 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,713 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,714 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:11,714 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,714 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,714 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,714 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,714 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,714 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,714 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,715 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:11,715 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,715 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,715 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,715 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,715 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,715 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,715 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,715 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,715 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:11,715 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:11,716 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,716 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,716 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
75a158ebf2934091824e0d0adab10c5b71495f72c81ea9500e8dc64b2f22dd87
2022-05-12 22:40:11,716 botocore.auth DEBUG    Signature:
3a4d6984587ddab8c714727bf727e107c0bfc135726422add61de0e6fe400b1c
2022-05-12 22:40:11,716 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,716 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,717 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,803 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:11,803 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'nOXwo7u1S8P8VIa0cr7b7dQhfLDDtUCdYvtyreP/KLA6RggnopxxwQ8aaBGlGwzVhMhm42Otzl8=', 'x-amz-request-id': 'HZX85N4PHBE9KVKY', 'Date': 'Thu, 12 May 2022 22:40:12 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:11,803 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,804 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,804 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,804 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,804 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'HZX85N4PHBE9KVKY', 'HostId': 'nOXwo7u1S8P8VIa0cr7b7dQhfLDDtUCdYvtyreP/KLA6RggnopxxwQ8aaBGlGwzVhMhm42Otzl8=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'nOXwo7u1S8P8VIa0cr7b7dQhfLDDtUCdYvtyreP/KLA6RggnopxxwQ8aaBGlGwzVhMhm42Otzl8=', 'x-amz-request-id': 'HZX85N4PHBE9KVKY', 'date': 'Thu, 12 May 2022 22:40:12 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:11,805 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,806 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,807 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless'}
2022-05-12 22:40:11,807 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,807 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,807 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,807 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,807 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,807 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:11,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,807 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,808 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,808 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,808 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,808 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,808 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,808 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,808 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:11,808 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:11,809 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,809 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,809 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
a9059924f6ccbd22df071077a40d697dfaec2b6bc400dd19cbaa4e2a339ae0c2
2022-05-12 22:40:11,809 botocore.auth DEBUG    Signature:
12af918c11c9d025c7cbc969d3d64544e5a5f7c84b0b4bdfc22121343c96fe10
2022-05-12 22:40:11,809 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,809 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,809 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,891 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:11,891 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX6XJGCHNQ856SC', 'x-amz-id-2': 'F6py4VKxf8P/dpOS+0i6EZhTtN/y76VE/txAC/uPUDcwcfZf41+ZqFSv5/4Xb/NxwTFmmtECv/4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,891 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,891 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,891 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,892 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,892 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,893 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,893 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless/'}
2022-05-12 22:40:11,894 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,894 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,894 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,894 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,894 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,894 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,894 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,894 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:11,894 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,894 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,895 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,895 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,895 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,895 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,895 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,895 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,895 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:11,895 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:11,896 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,896 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,896 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
34b7c662e87c876f0021aa0e3210cdd41dccae3d2f353ddf250ec0c24fde403e
2022-05-12 22:40:11,896 botocore.auth DEBUG    Signature:
96adcee9731d5d0f54b87fe96dc7cd7164c70a0261b8e7ceada56d0f2c25d2da
2022-05-12 22:40:11,896 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,896 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,896 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:11,975 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:11,975 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'HZX778PE4ZKCA6AT', 'x-amz-id-2': 'hqxc4c/mOA0Bhub4srJrGhon49vin9Hrn/Dkf0v7AVIUGJu51qUD1RPVPS+u7LQpmruvTU3AgJw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:11,975 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:11,975 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:11,976 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:11,976 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:11,976 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:11,977 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:11,978 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1'}
2022-05-12 22:40:11,978 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,978 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,978 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,978 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:11,978 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:11,978 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,979 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:11,979 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:11,979 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,979 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:11,979 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:11,979 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:11,979 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,979 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:11,979 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:11,979 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:11,979 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:11,980 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1
2022-05-12 22:40:11,980 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:11,980 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224011Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:11,980 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224011Z
20220512/eu-central-1/s3/aws4_request
1577a190aa683c3c6dc6b1bf2307f4d1103a1608d978670311c5ab256b5625f0
2022-05-12 22:40:11,980 botocore.auth DEBUG    Signature:
c749021b3a778e53e61414b0dba748ebc8866d79632a4e4a41adecfa3cef3e19
2022-05-12 22:40:11,980 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:11,981 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:11,981 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,061 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1 HTTP/1.1" 404 0
2022-05-12 22:40:12,061 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJFBAMC9T2RKCCTD', 'x-amz-id-2': 'rPBdX3C8IAgFQUslbiNdRxn9PBvYj+ZritlHUq2+1F9c6/a4w/DNVEHeQt5k+SGvKCs+bKN9AGs=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,061 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,062 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,062 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,062 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,062 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,063 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,064 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:12,064 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,064 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,064 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,064 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,064 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,064 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,065 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,065 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:12,065 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,065 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,065 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,065 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,065 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,065 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,066 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,066 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,066 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:12,066 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:12,066 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,066 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,066 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
ef153f5d7a86beae0973ddd8cb5df4a47b3fcae48fcd209edda0f45d9fdcec69
2022-05-12 22:40:12,066 botocore.auth DEBUG    Signature:
f7b201c688764714ed07bf0a22248d137c9333290ea26376370f173ffd108b5b
2022-05-12 22:40:12,067 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,067 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,067 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,146 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:12,147 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'd3uI9yepzo2fd8WNQUvlVyn/fFLPSOZBuPPltTeNBUizlwCJfwWrxdOevmY+Lnia7x/nByKD9sA=', 'x-amz-request-id': 'ZJFESN96ABYEC13M', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,147 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,148 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,148 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,148 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,148 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJFESN96ABYEC13M', 'HostId': 'd3uI9yepzo2fd8WNQUvlVyn/fFLPSOZBuPPltTeNBUizlwCJfwWrxdOevmY+Lnia7x/nByKD9sA=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'd3uI9yepzo2fd8WNQUvlVyn/fFLPSOZBuPPltTeNBUizlwCJfwWrxdOevmY+Lnia7x/nByKD9sA=', 'x-amz-request-id': 'ZJFESN96ABYEC13M', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,149 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,150 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,151 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1'}
2022-05-12 22:40:12,151 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,151 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,151 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,151 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,151 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,152 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,152 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,152 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1 to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:12,152 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,152 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,152 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,152 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,152 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,152 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,153 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,153 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,153 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1
2022-05-12 22:40:12,153 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1
2022-05-12 22:40:12,153 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,153 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,153 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
4e5ee00f761b61bdd9d2bce8e915e99e9eb0caad934feb40c12e939aa0c9d42b
2022-05-12 22:40:12,154 botocore.auth DEBUG    Signature:
91b1d68e1b23ea0ec3dd040b7fd13f7e0d16634ec7466e0e4f8df7d26adb2baf
2022-05-12 22:40:12,154 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,154 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,154 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,234 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1 HTTP/1.1" 404 0
2022-05-12 22:40:12,235 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF6FC2GZ4SN13EN', 'x-amz-id-2': 'OtMwGWPDu1mlh4wZfb90RO+uz0Dp3SMN3nR+OLXgcaLtCXUVlK0oLl+KHb3EoZUVwitqDGMtn80=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,235 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,235 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,235 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,235 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,235 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,237 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,237 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:12,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,237 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,238 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,238 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,238 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,238 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,238 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,238 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:12,238 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,238 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,238 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,239 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,239 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,239 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,239 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,239 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,239 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:12,239 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:12,240 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,240 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,240 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
ef153f5d7a86beae0973ddd8cb5df4a47b3fcae48fcd209edda0f45d9fdcec69
2022-05-12 22:40:12,240 botocore.auth DEBUG    Signature:
f7b201c688764714ed07bf0a22248d137c9333290ea26376370f173ffd108b5b
2022-05-12 22:40:12,240 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,240 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,241 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,323 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:12,323 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'hmMMybtMz1O7yAvidlPSw+Az9LWfryPXGuN7VsHWrEniMYc5sfo0NwRqKTDK8JhVXpmfM3b/fQU=', 'x-amz-request-id': 'ZJFA9Y7WNXCTH6F0', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,324 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,324 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,324 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,325 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,325 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJFA9Y7WNXCTH6F0', 'HostId': 'hmMMybtMz1O7yAvidlPSw+Az9LWfryPXGuN7VsHWrEniMYc5sfo0NwRqKTDK8JhVXpmfM3b/fQU=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'hmMMybtMz1O7yAvidlPSw+Az9LWfryPXGuN7VsHWrEniMYc5sfo0NwRqKTDK8JhVXpmfM3b/fQU=', 'x-amz-request-id': 'ZJFA9Y7WNXCTH6F0', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,325 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,327 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,327 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless'}
2022-05-12 22:40:12,327 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,327 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,327 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,327 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,327 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,328 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,328 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,328 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:12,328 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,328 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,328 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,328 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,328 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,328 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,328 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,328 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,329 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:12,329 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:12,329 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,329 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,329 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
01a69888c14025bceb606810c7fdf40c95f9b23bb5964bdd29660cc63ffd87f0
2022-05-12 22:40:12,329 botocore.auth DEBUG    Signature:
f29ecf98596b6502fa0599abafa8c0c806d75de2bef5ba311c0e12746dfab35f
2022-05-12 22:40:12,330 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,330 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,330 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,410 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:12,411 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF5JM5298C38B7M', 'x-amz-id-2': '6dgAcd5w/mUmQy98MAYv8XxiCCtbJAm+EhI9+8K8Fzd95jmJV8fpOLi6LYpxBy5h/gj5RXDlEYs=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,411 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,411 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,411 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,411 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,412 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,414 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,414 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless/'}
2022-05-12 22:40:12,415 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,415 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,415 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,415 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,415 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,415 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,415 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,415 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:12,415 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,415 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,416 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,416 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,416 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,416 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,416 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,416 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,416 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:12,416 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:12,416 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,417 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,417 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
0fde42b821a8d28ec8c937f6c7cfb2cb238d027fdf33e3ce2ccddb02e684bf06
2022-05-12 22:40:12,417 botocore.auth DEBUG    Signature:
b4376cbd930e6685e7d8795217fab9d26a0925c39ada202014c6fc646e87e165
2022-05-12 22:40:12,417 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,417 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,417 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,499 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless/ HTTP/1.1" 404 0
2022-05-12 22:40:12,500 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF3HVP5K4NNRFQG', 'x-amz-id-2': 'Em7Mj+AqvLTpXO3kbMMZIhtBjRs43G6XSI+ywkMrL7NAWdf5HBCnoJDRx4egiak0sn9Npbh/G90=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,500 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,500 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,500 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,500 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,500 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,501 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,501 boto3.resources.action DEBUG    Calling s3:put_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless/', 'ContentType': 'binary/octet-stream'}
2022-05-12 22:40:12,501 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,501 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,501 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,501 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,501 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:12,501 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:12,501 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:12,502 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,502 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,502 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:12,502 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:12,502 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,502 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:12,502 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource', 'Content-MD5': '1B2M2Y8AsgTpgAmY7PhCfg=='}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,502 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:12,502 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:12,502 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:12,502 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:12,502 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:12,502 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:12,502 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:12,502 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,502 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_1_1/mask_timeless/

content-md5:1B2M2Y8AsgTpgAmY7PhCfg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224012Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:12,502 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
5ecefdb3ca6b66922b4e51a4100618a90ae51de33e5ad92a5fe35215cf83ba18
2022-05-12 22:40:12,502 botocore.auth DEBUG    Signature:
68ddcc21e147f1be3b7b7bc5d88aba5d30d2773d022018af8a97f6d575df5eea
2022-05-12 22:40:12,502 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:12,502 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,502 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,595 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_1_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:12,595 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+h8sXozuoiT09lBeAtaLPVAJ7vITUR9WPvkhReU7TwXEIlnB1aS+mGyB8mnjuDC2LeV3brA8tPE=', 'x-amz-request-id': 'ZJF2CZDYKG8G1S87', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,595 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,595 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:12,595 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,595 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:12,595 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF2CZDYKG8G1S87', 'HostId': '+h8sXozuoiT09lBeAtaLPVAJ7vITUR9WPvkhReU7TwXEIlnB1aS+mGyB8mnjuDC2LeV3brA8tPE=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '+h8sXozuoiT09lBeAtaLPVAJ7vITUR9WPvkhReU7TwXEIlnB1aS+mGyB8mnjuDC2LeV3brA8tPE=', 'x-amz-request-id': 'ZJF2CZDYKG8G1S87', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"'}
2022-05-12 22:40:12,596 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,596 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,596 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/'}
2022-05-12 22:40:12,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,596 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,596 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,596 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,596 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:12,596 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,596 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,596 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,597 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,597 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,597 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,597 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/
2022-05-12 22:40:12,597 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/
2022-05-12 22:40:12,597 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,597 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,597 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
ef153f5d7a86beae0973ddd8cb5df4a47b3fcae48fcd209edda0f45d9fdcec69
2022-05-12 22:40:12,597 botocore.auth DEBUG    Signature:
f7b201c688764714ed07bf0a22248d137c9333290ea26376370f173ffd108b5b
2022-05-12 22:40:12,597 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,597 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,597 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,678 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/ HTTP/1.1" 200 0
2022-05-12 22:40:12,678 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '4qnQL3DZEYk2fbkzQfi/j2VS/1qNyefmOksvUgcuoSR+f+yz1VHs+wVzTO/5Goke10sKnUXcb90=', 'x-amz-request-id': 'ZJF06MS9YCHDKBPD', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 11:07:25 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,678 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,679 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,679 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,679 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,679 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF06MS9YCHDKBPD', 'HostId': '4qnQL3DZEYk2fbkzQfi/j2VS/1qNyefmOksvUgcuoSR+f+yz1VHs+wVzTO/5Goke10sKnUXcb90=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': '4qnQL3DZEYk2fbkzQfi/j2VS/1qNyefmOksvUgcuoSR+f+yz1VHs+wVzTO/5Goke10sKnUXcb90=', 'x-amz-request-id': 'ZJF06MS9YCHDKBPD', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 11:07:25 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 11, 7, 25, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,679 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,681 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,681 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless'}
2022-05-12 22:40:12,681 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,681 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,681 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,682 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,682 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,682 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,682 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,682 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:12,682 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,682 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,682 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,682 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,682 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,682 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,683 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,683 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,683 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:12,683 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:12,683 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,683 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,683 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
01a69888c14025bceb606810c7fdf40c95f9b23bb5964bdd29660cc63ffd87f0
2022-05-12 22:40:12,683 botocore.auth DEBUG    Signature:
f29ecf98596b6502fa0599abafa8c0c806d75de2bef5ba311c0e12746dfab35f
2022-05-12 22:40:12,683 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,684 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,684 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,764 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:12,764 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'ZJF9M4F2324AC7SB', 'x-amz-id-2': 'nSuBPdbTchInX1qhlFoD7ADDDMOwjunXGt6f3LxnitpHvG8diU1zEH2R34Nzta89KXcRjbLZYNM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:11 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:12,764 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,764 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,764 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,764 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,764 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,765 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless/'}
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,765 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,765 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,765 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,765 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:12,766 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:12,766 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,766 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,766 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/eu-central-1/s3/aws4_request
0fde42b821a8d28ec8c937f6c7cfb2cb238d027fdf33e3ce2ccddb02e684bf06
2022-05-12 22:40:12,766 botocore.auth DEBUG    Signature:
b4376cbd930e6685e7d8795217fab9d26a0925c39ada202014c6fc646e87e165
2022-05-12 22:40:12,766 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,766 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,766 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,846 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:12,847 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'OcSQFbjX1HiJi6mP5SlX2SsoY8Z7FXbVGDBvoRUXyYxWDjWeZC+sat+krL/5YCK3DlR4m+I2+XY=', 'x-amz-request-id': 'ZJF6WTW6NF44RJ5C', 'Date': 'Thu, 12 May 2022 22:40:13 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:12,847 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:12,849 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:12,849 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:12,849 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:12,849 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'ZJF6WTW6NF44RJ5C', 'HostId': 'OcSQFbjX1HiJi6mP5SlX2SsoY8Z7FXbVGDBvoRUXyYxWDjWeZC+sat+krL/5YCK3DlR4m+I2+XY=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'OcSQFbjX1HiJi6mP5SlX2SsoY8Z7FXbVGDBvoRUXyYxWDjWeZC+sat+krL/5YCK3DlR4m+I2+XY=', 'x-amz-request-id': 'ZJF6WTW6NF44RJ5C', 'date': 'Thu, 12 May 2022 22:40:13 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:12,850 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,850 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,852 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,852 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,854 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,854 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:12,854 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,857 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,856 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,858 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,855 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,858 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,860 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,859 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,859 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:12,860 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,861 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,861 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,861 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:12,862 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,863 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,866 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,865 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:12,866 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,864 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,867 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,868 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,868 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:12,870 boto3.resources.factory DEBUG    Loading s3:s3
2022-05-12 22:40:12,869 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,869 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless'}
2022-05-12 22:40:12,871 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,869 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,872 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,873 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:12,874 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless'}
2022-05-12 22:40:12,874 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,874 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless'}
2022-05-12 22:40:12,874 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless'}
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,875 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,876 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,877 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,878 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:12,878 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,878 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,879 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:12,880 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,880 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:12,880 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,880 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:12,880 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,880 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:12,880 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,880 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:12,880 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
3316367f2b1cd603246263e7b582f1ba9c38b98fb32982d75c04f3334122161f
2022-05-12 22:40:12,881 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:12,881 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:12,881 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:12,881 botocore.auth DEBUG    Signature:
6e4cb3ebf14b2d04d951b709b13922678556fbfabab31a50332f87553a5c67cf
2022-05-12 22:40:12,881 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,881 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:12,881 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:12,881 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,881 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,881 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,881 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:12,881 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,881 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
c4cdebf0893f77f300a356ddfb1a0119ba599539328c2023423e3a6d0e128fa2
2022-05-12 22:40:12,881 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,881 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:12,882 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,882 botocore.auth DEBUG    Signature:
1319acccc878e04999f32a3a2a41c58b5dc22a731a4598b4c1441c8895fe90e8
2022-05-12 22:40:12,882 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
1a17e5927840ebddcd7074ec916ea00bef5b50f52caa5ea85f6d44905aa65729
2022-05-12 22:40:12,882 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224012Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:12,882 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,882 botocore.auth DEBUG    Signature:
94a9916b685c32811139bc6f3def3312fa4c0fff78095c69d012cf36ed96a5d2
2022-05-12 22:40:12,882 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224012Z
20220512/us-east-1/s3/aws4_request
c4cdebf0893f77f300a356ddfb1a0119ba599539328c2023423e3a6d0e128fa2
2022-05-12 22:40:12,882 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,882 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,882 botocore.auth DEBUG    Signature:
1319acccc878e04999f32a3a2a41c58b5dc22a731a4598b4c1441c8895fe90e8
2022-05-12 22:40:12,883 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,883 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,883 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:12,883 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,883 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,883 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:12,884 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:12,884 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:12,884 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:23,667 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,668 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCSNX27889VMNX5', 'x-amz-id-2': '1eiWI40TwZw4fWVhWH1m6OZygb12iRoZhYbNqOgl9gazw2bYlgl0rTyWwGXVPMgUD/IgFbMoKFM=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,668 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,672 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,672 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,672 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,673 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,674 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,674 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,674 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,674 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,674 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,675 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,675 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,676 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,676 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,676 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,677 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,677 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,677 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,677 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,677 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,678 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,678 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,679 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,698 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,698 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCJW1WN3SA1Z2WY', 'x-amz-id-2': 'o0P84jlWZ3ixMAtySB3g+mzaqat/+3e6FBaXVSPsGf72DNBMvppUts728YYnBwZ/9oEBhT2xfls=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,698 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,700 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,700 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,700 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,701 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,701 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCSHRH1Q4F196D8', 'x-amz-id-2': 'yENh3EiRuW2vSSll+0rBR5qsETqeKaKq7rxJqQsrltAEORNuTmv/UCz2Onr6R1Lx+8Hx90MuABU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,701 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,701 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,701 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,703 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,703 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,703 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,703 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,703 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,704 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,704 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,704 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,704 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,704 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,704 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,704 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,704 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,704 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,704 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,705 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,705 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,705 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,705 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,705 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,705 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,706 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,706 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,706 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,706 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,706 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,706 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,706 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,706 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,706 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,706 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,706 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,706 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,706 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,706 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,707 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,707 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:23,711 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless HTTP/1.1" 400 0
2022-05-12 22:40:23,712 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'MRCPQ1QE30479XEQ', 'x-amz-id-2': 'hVvHV70sjI188vKWDp4Rsk8BNiBpsDRSBCkKMBYn/KUZpB7POqLP12mS5zV6VglZN9ihxIFuu54=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:23,712 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:23,714 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event before-call.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,714 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadBucket) with params: {'url_path': '/plot-delineation', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.amazonaws.com/plot-delineation', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,714 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:23,715 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation
2022-05-12 22:40:23,715 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/
2022-05-12 22:40:23,715 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:23,715 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224023Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:23,715 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224023Z
20220512/us-east-1/s3/aws4_request
8f9fc35393a473edc990a3de24b4695c48567c107628b817aae920248dd65b8f
2022-05-12 22:40:23,715 botocore.auth DEBUG    Signature:
8902c44e611168f284a21896960445f230561b540680712ca068afa3c2d88203
2022-05-12 22:40:23,715 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:23,715 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:23,715 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:23,715 urllib3.connectionpool DEBUG    Resetting dropped connection: plot-delineation.s3.amazonaws.com
2022-05-12 22:40:24,707 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,708 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAG4DH6KC10BH97A', 'x-amz-id-2': 'mpSQUmjRGbEh6jEWOn2Wo+24s9LgNK6EDlgATLptEoEX0/5D1XzbT335xFHcvQOMzXLJKr4jw8w=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,708 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,708 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,708 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,708 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,708 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,708 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,709 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,709 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,709 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,709 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,709 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,709 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,709 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,709 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,709 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,709 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,709 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,709 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,712 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,712 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAG8H94NXFTHNDT4', 'x-amz-id-2': 'JAg745vMMLxofJwdf9KGHD/5YFSCwzsFPMIwKweoMZjdi1vUVTSf90i3qo7M+9WGK46oyHJ3058=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:23 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,712 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,712 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,713 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,713 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,713 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,713 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,713 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAGBGHMBYCPNQCW6', 'x-amz-id-2': 'x6VQzEHe4RX7WAnWs56nhSJzpfPVsBfBhqzESAdTVE0sMrsfC45dkf8ti/FEr5wmBq15zHpbssc=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,713 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,713 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,713 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,713 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,714 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,714 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,714 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,714 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,715 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,715 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,715 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,715 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,715 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,715 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,715 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,715 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,715 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,715 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,715 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,716 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,716 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,716 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,716 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,716 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,716 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,716 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:24,717 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "HEAD / HTTP/1.1" 400 0
2022-05-12 22:40:24,718 botocore.parsers DEBUG    Response headers: {'x-amz-bucket-region': 'eu-central-1', 'x-amz-request-id': 'SAG7YF62QRB9XKP2', 'x-amz-id-2': 'XhjjVIWknhf9epNXj77WAoS03lf/wN52t7aq2sB0+nj1P+WjtHzY/yhvbg2qVLySJUVKwRqgjQE=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:24 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:24,718 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:24,718 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,718 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:24,718 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,718 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:24,719 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation to https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,719 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:24,719 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,719 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,719 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,719 botocore.hooks DEBUG    Event choose-signer.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,719 botocore.hooks DEBUG    Event before-sign.s3.HeadBucket: calling handler >
2022-05-12 22:40:24,719 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation
2022-05-12 22:40:24,719 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/
2022-05-12 22:40:24,719 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:24,719 botocore.auth DEBUG    CanonicalRequest:
HEAD
/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224024Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:24,719 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224024Z
20220512/eu-central-1/s3/aws4_request
117a7112e6471fa199eb1e0e0183c33c9a4797139e101e1cb31820737897221f
2022-05-12 22:40:24,719 botocore.auth DEBUG    Signature:
a4d7a43e90d362ad91c3c660f21ff8c7cf58a2e0eaabda083b35e4fa1b88075c
2022-05-12 22:40:24,719 botocore.hooks DEBUG    Event request-created.s3.HeadBucket: calling handler 
2022-05-12 22:40:24,719 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:24,720 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:24,720 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:30,020 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,020 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'LQHwhbRgSM07RzpqvqzhR+/cMjw0RFX1ObI3liSI/abZDsIRL6StSmHZv4LCNGwAKtqZCuKchJI=', 'x-amz-request-id': 'BAY741J5X8C4KVS8', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,021 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,021 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,021 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,021 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,021 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,021 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,022 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:30,022 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,022 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,022 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,022 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,022 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,022 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,022 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:30,023 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:30,023 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,023 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,023 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
37e4eae68725b270324a3c31c98b0445138eb23e6f9bc97c51c6b38b3b49f671
2022-05-12 22:40:30,023 botocore.auth DEBUG    Signature:
9ee007ec365d34d51fc7556be9b3c0d9c975b01d4f3644c8e8e7e4af4c5a2845
2022-05-12 22:40:30,024 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,024 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,024 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,031 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,031 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'wFrCmAuFLkvURrLd1KOaf0OLkuOpedQwI/k6umNXPbyzZa/EJ221j725kDLysmq01Q48LcBydzQ=', 'x-amz-request-id': 'BAYFFBT14RP7A1N2', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,031 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,031 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,031 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,031 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,031 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,031 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,031 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:30,031 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,031 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,031 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,032 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,032 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,032 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,032 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:30,032 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless
2022-05-12 22:40:30,032 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,032 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,032 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
1deaf5bde0e451e54c74c55112155e578fbee0d359572fa1cd129992ad5cbefe
2022-05-12 22:40:30,032 botocore.auth DEBUG    Signature:
ee7eca81af769432539998e5607fa76d02707f016de320189d1084193c4a46bc
2022-05-12 22:40:30,032 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,032 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,032 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,035 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,036 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'xfdOTHl7rcz7/LMF5qEdXnCKelRZwXfguIeDOsxLYjkZy8KyOklUn8O/mbetzZBfxHSiQavPI+E=', 'x-amz-request-id': 'BAYF88JT3GDKYM02', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,036 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,036 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,036 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,036 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,036 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:30,036 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,036 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,036 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:30,036 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless
2022-05-12 22:40:30,036 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,036 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,037 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
7cdfedf216f913950c23b61fe1114596b48ef11114549f26f8a69964e1d9bc8c
2022-05-12 22:40:30,037 botocore.auth DEBUG    Signature:
e7ef7be29049ae4c69a374fccd9f164e77b72e164903fe0c8c9dbfbc11da0f14
2022-05-12 22:40:30,037 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,037 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,037 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,057 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD / HTTP/1.1" 200 0
2022-05-12 22:40:30,057 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'pcUvMBYc/fsKwjgDohORmwO4ClyH76LLC6v3wXtOiyzRKeI7HLcupE8H0KMrWZQ5XfD/aP88wT0=', 'x-amz-request-id': 'EXTWN9TN15G6ZY0X', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'x-amz-bucket-region': 'eu-central-1', 'x-amz-access-point-alias': 'false', 'Content-Type': 'application/xml', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,057 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,057 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler 
2022-05-12 22:40:30,057 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,057 botocore.hooks DEBUG    Event needs-retry.s3.HeadBucket: calling handler >
2022-05-12 22:40:30,057 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,057 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:30,058 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:30,058 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:30,058 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,058 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,058 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,058 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,058 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,058 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:30,058 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless
2022-05-12 22:40:30,058 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,059 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,059 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
37e4eae68725b270324a3c31c98b0445138eb23e6f9bc97c51c6b38b3b49f671
2022-05-12 22:40:30,059 botocore.auth DEBUG    Signature:
9ee007ec365d34d51fc7556be9b3c0d9c975b01d4f3644c8e8e7e4af4c5a2845
2022-05-12 22:40:30,059 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,059 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,059 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,104 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,105 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTHZVAPTVHXKVCJ', 'x-amz-id-2': 'HlxfUV5h2THtG8jHXOJjmuWWjXHQMh8fnsDOnJ77dHQtifYOArFPNkALg5NYOUpQVzfZABP26ps=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,105 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,105 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,105 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,105 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,105 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,106 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless/'}
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,106 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,106 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,106 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,107 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:30,107 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:30,107 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,107 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,107 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
eb5fc8e8e08a3ea5b8fac72874d0cb25596dc4b3b1f2c08f3819067566c16908
2022-05-12 22:40:30,107 botocore.auth DEBUG    Signature:
863b0713b9f142d1e3539138aa9e528d4362204b80342b948dc6dd109e3d0d38
2022-05-12 22:40:30,107 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,107 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,107 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,113 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,114 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTRX82G4P5K511Y', 'x-amz-id-2': 'gP6JR2lne9IDQ7EXcXR9+ceYBByHGVHzxxpPRvJXK+29GIVPY5hL7bk9QHsIB0QIRIdeLQLJKO4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,114 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,114 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,114 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,114 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,114 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,114 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,115 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,115 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless/'}
2022-05-12 22:40:30,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,115 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,116 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:30,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,116 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,116 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,116 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,116 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,116 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,116 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,116 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,116 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:30,116 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless/
2022-05-12 22:40:30,117 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,117 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,117 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
441595408a9b532f324ed10187d2fbbdf10c8a068cf563b0c0850e141d75f510
2022-05-12 22:40:30,117 botocore.auth DEBUG    Signature:
0b782a83c7a0bfa5657e27ad6e6e860e6940af2f8872d84c68e0dfc5394d71b7
2022-05-12 22:40:30,117 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,117 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,117 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,118 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,118 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTTQ090Z0B4727H', 'x-amz-id-2': 'zPln/FzcIBFfJh4V+81DH0KL/fNcKAWqMTfo4qdixRtHw5gOsuA2sVyNMrpPlyFRY4986aTNnSw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,118 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,118 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,118 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,118 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,118 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,118 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,119 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless/'}
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,119 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,119 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,119 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:30,119 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless/
2022-05-12 22:40:30,120 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,120 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,120 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
bbedb2d3d766cc9e2a224090d25e28a02dde33d098a5e0f1a47d000889972b3c
2022-05-12 22:40:30,120 botocore.auth DEBUG    Signature:
0c0572d489cab0bbcc4150cd5a15ee86c509203abba66d7896109163857363e5
2022-05-12 22:40:30,120 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,120 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,120 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,146 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless HTTP/1.1" 404 0
2022-05-12 22:40:30,146 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTVA0Y0KNZ844QY', 'x-amz-id-2': 'vdp7puL/+bnX4Vs+PVZHUFV425PZ55O5/QNEvfS2LioItHRb8UC0J4gRouk/prgU1DWsac0RGz8=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,146 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,146 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,146 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,146 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,146 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:30,146 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,147 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless/'}
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,147 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,147 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,147 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,147 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:30,148 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/
2022-05-12 22:40:30,148 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,148 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,148 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
eb5fc8e8e08a3ea5b8fac72874d0cb25596dc4b3b1f2c08f3819067566c16908
2022-05-12 22:40:30,148 botocore.auth DEBUG    Signature:
863b0713b9f142d1e3539138aa9e528d4362204b80342b948dc6dd109e3d0d38
2022-05-12 22:40:30,148 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,148 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,148 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,188 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,188 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Tg7GWxGYOuSipEjSgwmKtLKUjzgqbfGhDehrJMevu6DjN7B3EZuVnoNF1q9fA8wKV44vOPjfu/Q=', 'x-amz-request-id': 'EXTRF27M41QY963X', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,189 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,190 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,190 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,190 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,190 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTRF27M41QY963X', 'HostId': 'Tg7GWxGYOuSipEjSgwmKtLKUjzgqbfGhDehrJMevu6DjN7B3EZuVnoNF1q9fA8wKV44vOPjfu/Q=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Tg7GWxGYOuSipEjSgwmKtLKUjzgqbfGhDehrJMevu6DjN7B3EZuVnoNF1q9fA8wKV44vOPjfu/Q=', 'x-amz-request-id': 'EXTRF27M41QY963X', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,191 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,193 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,193 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy'}
2022-05-12 22:40:30,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,193 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,194 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,194 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,194 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,194 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,194 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,194 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,194 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,195 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,195 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,195 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,195 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,195 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,195 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,195 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,196 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,196 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,196 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
3dc3654fa19ad2101a4e8adc4b528b13147623f46d2c8bf2f4d02c4572782a81
2022-05-12 22:40:30,196 botocore.auth DEBUG    Signature:
526abf5438a530f841f4187fdd463c6fe144cbc3598138d8d6e7d5a7c115d4cd
2022-05-12 22:40:30,197 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,197 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,197 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,198 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,198 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'ctys3SC6FVKUFQH1pF199jFg1v9eh3eSiV9X+nHmmgQHg8Y8buVGlRmlbL6MzGvZayue+u4aYNM=', 'x-amz-request-id': 'EXTVHEEPVYVQ6XJ2', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:10 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,198 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,199 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,199 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTVHEEPVYVQ6XJ2', 'HostId': 'ctys3SC6FVKUFQH1pF199jFg1v9eh3eSiV9X+nHmmgQHg8Y8buVGlRmlbL6MzGvZayue+u4aYNM=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'ctys3SC6FVKUFQH1pF199jFg1v9eh3eSiV9X+nHmmgQHg8Y8buVGlRmlbL6MzGvZayue+u4aYNM=', 'x-amz-request-id': 'EXTVHEEPVYVQ6XJ2', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:10 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 10, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,199 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,199 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,199 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless/DISTANCE.npy'}
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,200 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,200 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,200 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,200 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,200 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
237c2fdf30fdc8d8cf9c4066fd5b5450a78c58d17d2e3bea66e97a56ab4dd44c
2022-05-12 22:40:30,200 botocore.auth DEBUG    Signature:
d624a11dde74daea9bb904a95181950450e3e22ab43184fb6727222c62469fd9
2022-05-12 22:40:30,200 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,200 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,201 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,201 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,202 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Kb8+oGZfHCYqDJgZNauPYddbCYfuPyuV9GYDZUY5bANjtQeH8mT9yZC0SL3zJiOxKCyegAGJ1Jc=', 'x-amz-request-id': 'EXTTBW50ZVJSTMHT', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:12 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,202 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,202 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,202 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,202 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,202 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTTBW50ZVJSTMHT', 'HostId': 'Kb8+oGZfHCYqDJgZNauPYddbCYfuPyuV9GYDZUY5bANjtQeH8mT9yZC0SL3zJiOxKCyegAGJ1Jc=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Kb8+oGZfHCYqDJgZNauPYddbCYfuPyuV9GYDZUY5bANjtQeH8mT9yZC0SL3zJiOxKCyegAGJ1Jc=', 'x-amz-request-id': 'EXTTBW50ZVJSTMHT', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:12 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 12, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,202 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,203 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl'}
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,203 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,203 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,203 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,203 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,203 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,203 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,203 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
f48739eb065e8ce70adbe82131edd3a63c00c1c393a6ed9c2f9e9c3ba2fce95d
2022-05-12 22:40:30,203 botocore.auth DEBUG    Signature:
c7e4124fd77400fcd932295c1cc3c637d4408f848c490c25d189f92ecf22dc9f
2022-05-12 22:40:30,203 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,204 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,204 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,229 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless/ HTTP/1.1" 200 0
2022-05-12 22:40:30,229 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'Quhg3t26BZUHmgd0dtzXSMb1Y26hFn5PDpxob7603SIBwuqAsu/IcMyzHgST+fPVn3EOkY2ihlk=', 'x-amz-request-id': 'EXTGS22XJZQS3NH6', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Last-Modified': 'Thu, 12 May 2022 22:40:13 GMT', 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'Accept-Ranges': 'bytes', 'Content-Type': 'binary/octet-stream', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:30,229 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,230 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,230 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,230 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,230 boto3.resources.action DEBUG    Response: {'ResponseMetadata': {'RequestId': 'EXTGS22XJZQS3NH6', 'HostId': 'Quhg3t26BZUHmgd0dtzXSMb1Y26hFn5PDpxob7603SIBwuqAsu/IcMyzHgST+fPVn3EOkY2ihlk=', 'HTTPStatusCode': 200, 'HTTPHeaders': {'x-amz-id-2': 'Quhg3t26BZUHmgd0dtzXSMb1Y26hFn5PDpxob7603SIBwuqAsu/IcMyzHgST+fPVn3EOkY2ihlk=', 'x-amz-request-id': 'EXTGS22XJZQS3NH6', 'date': 'Thu, 12 May 2022 22:40:31 GMT', 'last-modified': 'Thu, 12 May 2022 22:40:13 GMT', 'etag': '"d41d8cd98f00b204e9800998ecf8427e"', 'accept-ranges': 'bytes', 'content-type': 'binary/octet-stream', 'server': 'AmazonS3', 'content-length': '0'}, 'RetryAttempts': 0}, 'AcceptRanges': 'bytes', 'LastModified': datetime.datetime(2022, 5, 12, 22, 40, 13, tzinfo=tzutc()), 'ContentLength': 0, 'ETag': '"d41d8cd98f00b204e9800998ecf8427e"', 'ContentType': 'binary/octet-stream', 'Metadata': {}}
2022-05-12 22:40:30,230 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,230 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,231 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless/EXTENT.npy'}
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,231 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,231 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,231 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,231 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,231 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,231 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,231 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
f7cfa57c9406876b49b1144398a86f3d67748d7c283496c8a6cb5c9d1a678b9d
2022-05-12 22:40:30,231 botocore.auth DEBUG    Signature:
bd1b1e6ffec0c5db14ed9739c7546ebddcd771050178f2e681619da11d9be0b0
2022-05-12 22:40:30,231 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,232 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,232 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,284 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,284 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTN0CC4CDMWX3E1', 'x-amz-id-2': '6W0mEFQqf+fx1dvmoWDHAuguiRuG2jeiNcllMhnOJ3EexD89ANdueWfQpeLHqOD/NokydPTxE/E=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,285 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,285 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,285 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,285 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,285 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,287 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,288 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless/DISTANCE.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,288 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy/'}
2022-05-12 22:40:30,288 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTXSS4SG1EXFEHG', 'x-amz-id-2': 'cJ3xX0hlx9C3cThQ4C06hxFzkESXzyeT2AdxsYZj/P6Xthpp5IPZPCuc4oZmGTFokY3eMGbiN/E=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,289 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,289 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,289 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,289 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,290 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,290 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,290 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,290 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,290 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,290 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,291 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,293 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,293 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,293 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 404 0
2022-05-12 22:40:30,294 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/data_timeless/DISTANCE.npy/'}
2022-05-12 22:40:30,294 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,295 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTPW3QYAVVETKK5', 'x-amz-id-2': 'PejkjoT0cuM3ZjV2tUv53U0wSDQVweYpZbEbaFsrSd3qnsPz4uBsoLLtfMMDeTd9wc3c6Z1XMz4=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,295 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,295 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,295 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,295 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,296 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,296 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,296 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,296 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,296 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,296 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,297 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,297 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,297 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,297 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,297 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,298 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,298 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,300 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,300 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,301 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,301 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl/'}
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,301 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,302 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,303 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy/
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,303 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,303 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,303 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,302 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,304 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,303 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,304 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,304 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,304 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
0088e62fdd3a8c31d1fa5b00d7b6f80ed70378ac367a0831d3cd564bbc7e1ef8
2022-05-12 22:40:30,304 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,304 botocore.auth DEBUG    Signature:
32034786687d076b2a1d80a1cf850aad52fbe3b994bc84aeb8e2288fd85f4313
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,304 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,305 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,306 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,306 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,306 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,306 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,307 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy/
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,307 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,307 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,307 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,307 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
6f76a1769b7d20747d85f83301be2c5e7ba2109c6ee45da1bb2877d79cafd1bb
2022-05-12 22:40:30,308 botocore.auth DEBUG    Signature:
91f1150f76490225e2dfd9c2c0657071c885f03628e31661fab02c17230bd40d
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,308 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,308 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,308 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,308 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,309 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl/
2022-05-12 22:40:30,309 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,309 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,309 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
d7b406c775e68083a0964c4e0d5eeaf4b6c2ee7f90cce1512ab13337a7fcad5c
2022-05-12 22:40:30,309 botocore.auth DEBUG    Signature:
843b9b590a72c6e48411104a6462dbcf5c9b270b4e3eb17d0e2dc2ea9446e3ab
2022-05-12 22:40:30,309 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,310 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,310 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,313 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless/EXTENT.npy HTTP/1.1" 404 0
2022-05-12 22:40:30,314 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTRTZCAAV74F93V', 'x-amz-id-2': 'zKq9VMid6Hr5NkfKR5eqLKOO98YDexjb+yFQSG31xbp+FWMGsBNCG3qSSioibJLDy923qCKndLw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,314 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,314 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,314 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,314 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,314 boto3.resources.factory DEBUG    Loading s3:Object
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event creating-resource-class.s3.Object: calling handler ._handler at 0x7fe7f80c5310>
2022-05-12 22:40:30,315 boto3.resources.action DEBUG    Calling s3:head_object with {'Bucket': 'plot-delineation', 'Key': 'eopatches/30PTU_1_1/mask_timeless/EXTENT.npy/'}
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler >
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-parameter-build.s3.HeadObject: calling handler 
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler >
2022-05-12 22:40:30,315 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy/ to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event before-call.s3.HeadObject: calling handler 
2022-05-12 22:40:30,315 botocore.endpoint DEBUG    Making request for OperationModel(name=HeadObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy/', 'query_string': {}, 'method': 'HEAD', 'headers': {'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12 Resource'}, 'body': b'', 'url': 'https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy/', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': False, 'auth_type': None, 'signing': {'region': 'eu-central-1', 'bucket': 'plot-delineation', 'endpoint': 'https://s3.eu-central-1.amazonaws.com'}}}
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler >
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler >
2022-05-12 22:40:30,315 botocore.hooks DEBUG    Event choose-signer.s3.HeadObject: calling handler 
2022-05-12 22:40:30,316 botocore.hooks DEBUG    Event before-sign.s3.HeadObject: calling handler >
2022-05-12 22:40:30,316 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,316 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy/
2022-05-12 22:40:30,316 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,316 botocore.auth DEBUG    CanonicalRequest:
HEAD
/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy/

host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
x-amz-date:20220512T224030Z

host;x-amz-content-sha256;x-amz-date
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
2022-05-12 22:40:30,316 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/eu-central-1/s3/aws4_request
b16920360ea6e58a5fc522faa88bd5853485937dc6986d5b234e56f043f2f2a4
2022-05-12 22:40:30,316 botocore.auth DEBUG    Signature:
c5cfa1d8cbc34ad14f1567f627d2d7cfd927d5c7388f1ebfdea0a953ccc1e0b9
2022-05-12 22:40:30,316 botocore.hooks DEBUG    Event request-created.s3.HeadObject: calling handler 
2022-05-12 22:40:30,316 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,316 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,388 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,388 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTN6TWG3KKQF4EP', 'x-amz-id-2': '9/ZQet81bYrOMzb9XqksMv1eSHMAVHpgRiWi2s6TouAVnlhCKJOoQHMsMjkyBC8rhE9KOFOKZtU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,388 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,389 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,389 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,389 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,391 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/data_timeless/DISTANCE.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,391 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,392 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTJ37TV25Q889BB', 'x-amz-id-2': '9y3ZEeyMd1mgmZmU3UIAswg5E5UyTkG+h036ZR5Htyc6j7x/71JM6WUZGLyxjZHO8Ny9C9QbPBU=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,393 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,393 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,393 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl/ HTTP/1.1" 404 0
2022-05-12 22:40:30,393 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,393 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,394 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTR795TF3PM99XE', 'x-amz-id-2': 'daSE5iUIV2cwLBxHWXfMlpaNZyXYmJ8k0jac73F5PUsGyc+Y7SUjCPTRzk8krKuS/H8e19v2Prg=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,394 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,394 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,394 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,395 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,395 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,395 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,399 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,399 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,401 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,399 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,402 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,403 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,404 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,404 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,405 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,405 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,407 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,407 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,406 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,408 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,409 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,409 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,410 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,411 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,411 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,411 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,412 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,412 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,412 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,413 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,413 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,413 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,413 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,413 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,413 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,413 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,413 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,413 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,413 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,413 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,414 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,414 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,414 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,414 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,414 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,414 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,414 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,414 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,414 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,415 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,414 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,415 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,415 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,415 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,415 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,415 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,415 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/data_timeless/DISTANCE.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,416 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,416 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,416 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,416 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,416 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,416 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,417 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,417 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,417 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,417 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,417 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,417 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,417 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,417 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,417 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,418 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,418 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,418 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,418 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,418 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,418 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,418 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'B0sS5nt7r9iMdSqG874dtg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,419 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,419 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,419 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,419 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,419 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,419 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,419 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,419 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,419 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:30,419 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,419 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,419 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,419 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,420 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
27f66129027983f0efa3fcefb2b1f18d35b1e0ecf6fb85aacb51db2b8e380a8c
2022-05-12 22:40:30,420 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,420 botocore.auth DEBUG    Signature:
81ec7c302c2e4e2f34f672cfbb1c8ab9449443973c4717f32cfbe767634ab745
2022-05-12 22:40:30,420 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,420 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,420 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,420 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,420 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,420 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,421 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,421 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,421 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,421 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,421 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,421 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,421 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,422 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,422 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,422 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:30,422 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,422 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,422 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
425155f28327d63569bf4813fb90fa6368a2e8ec0ca7555ec264f485a47c6a64
2022-05-12 22:40:30,422 botocore.auth DEBUG    Signature:
d140c8dc16df201ad70aff96c49055e67727ff5af8402b5ba7920057ac1ffff8
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,422 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,422 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,423 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,423 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,425 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'S/Wz7xyo6r7KThbY4TUDPg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,426 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,427 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,427 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,427 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:30,427 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,427 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,427 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
48f7cacea3bbb5bce35ef915d9d7c5a6c96b2068a07f6281d87b5254799f9179
2022-05-12 22:40:30,427 botocore.auth DEBUG    Signature:
9e9855a1e2e30f9a0d5572b2092edb8e809d6ec1be37c4cbd0cfb8b184b8122f
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,427 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,427 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,428 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,428 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:30,506 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "HEAD /eopatches/30PTU_1_1/mask_timeless/EXTENT.npy/ HTTP/1.1" 404 0
2022-05-12 22:40:30,506 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': 'EXTR16336SVZ8H8N', 'x-amz-id-2': 'zOD4dQxo7AjOh/n93PZG7Z/XSJKeldGV+yX78nnmttLz5inLyn3Yd+T7Dw7VJ7PErN57OY6CIPw=', 'Content-Type': 'application/xml', 'Date': 'Thu, 12 May 2022 22:40:29 GMT', 'Server': 'AmazonS3'}
2022-05-12 22:40:30,507 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:30,507 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler 
2022-05-12 22:40:30,507 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:30,507 botocore.hooks DEBUG    Event needs-retry.s3.HeadObject: calling handler >
2022-05-12 22:40:30,510 botocore.hooks DEBUG    Event choose-service-name: calling handler 
2022-05-12 22:40:30,512 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,512 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler ._handler at 0x7fe7f80c5040>
2022-05-12 22:40:30,512 botocore.hooks DEBUG    Event creating-client-class.s3: calling handler 
2022-05-12 22:40:30,514 botocore.endpoint DEBUG    Setting s3 timeout as (60, 60)
2022-05-12 22:40:30,515 botocore.client DEBUG    Registering retry handlers for service: s3
2022-05-12 22:40:30,517 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,518 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) about to wait for the following futures []
2022-05-12 22:40:30,518 s3transfer.tasks DEBUG    UploadSubmissionTask(transfer_id=0, {'transfer_future': }) done waiting for dependent futures
2022-05-12 22:40:30,518 s3transfer.tasks DEBUG    Executing task UploadSubmissionTask(transfer_id=0, {'transfer_future': }) with kwargs {'client': , 'config': , 'osutil': , 'request_executor': , 'transfer_future': }
2022-05-12 22:40:30,518 s3transfer.futures DEBUG    Submitting task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) to executor  for transfer request: 0.
2022-05-12 22:40:30,519 s3transfer.utils DEBUG    Acquiring 0
2022-05-12 22:40:30,519 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) about to wait for the following futures []
2022-05-12 22:40:30,519 s3transfer.tasks DEBUG    PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) done waiting for dependent futures
2022-05-12 22:40:30,519 s3transfer.tasks DEBUG    Executing task PutObjectTask(transfer_id=0, {'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}) with kwargs {'client': , 'fileobj': , 'bucket': 'plot-delineation', 'key': 'eopatches/30PTU_1_1/mask_timeless/EXTENT.npy', 'extra_args': {'ContentType': 'binary/octet-stream'}}
2022-05-12 22:40:30,520 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,520 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,520 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,520 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,520 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:40:30,521 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,521 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler >
2022-05-12 22:40:30,521 botocore.hooks DEBUG    Event before-parameter-build.s3.PutObject: calling handler 
2022-05-12 22:40:30,522 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,527 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,527 botocore.handlers DEBUG    Adding expect 100 continue header to request.
2022-05-12 22:40:30,527 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler >
2022-05-12 22:40:30,527 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,527 botocore.hooks DEBUG    Event before-call.s3.PutObject: calling handler 
2022-05-12 22:40:30,527 botocore.endpoint DEBUG    Making request for OperationModel(name=PutObject) with params: {'url_path': '/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy', 'query_string': {}, 'method': 'PUT', 'headers': {'Content-Type': 'binary/octet-stream', 'User-Agent': 'Boto3/1.22.12 Python/3.8.10 Linux/5.13.0-40-generic Botocore/1.25.12', 'Content-MD5': 'Gn3X/ujRCFe7/HtYqtPmNg==', 'Expect': '100-continue'}, 'body': , 'url': 'https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy', 'context': {'client_region': 'us-east-1', 'client_config': , 'has_streaming_input': True, 'auth_type': None, 'signing': {'bucket': 'plot-delineation'}}}
2022-05-12 22:40:30,527 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,528 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:30,528 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,528 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:30,528 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:30,528 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:30,528 botocore.utils DEBUG    Defaulting to S3 virtual host style addressing with path style addressing fallback.
2022-05-12 22:40:30,528 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,528 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:30,529 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:30,529 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224030Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:30,529 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224030Z
20220512/us-east-1/s3/aws4_request
38ecd038da609f24493c6cb839549bcbd311f18d540aa9cdf28c4d651624cc84
2022-05-12 22:40:30,529 botocore.auth DEBUG    Signature:
557a02abb873e45a74044140909b4329259542d72efbb653961a28e5e931547f
2022-05-12 22:40:30,529 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,529 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:30,530 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:30,530 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:30,530 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.amazonaws.com:443
2022-05-12 22:40:31,577 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,579 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,582 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,582 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:31,654 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,655 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_1_1/mask_timeless/EXTENT.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,656 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK0VVQGSW3EEX0C', 'x-amz-id-2': 'tiIa/x6dCeIz+S0ukEKFVvzMmouarDW8lXqDn0EddL0x4FSDJWtrlH4MXmHX3tIQezELttqz5+s=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,656 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK0VVQGSW3EEX0CtiIa/x6dCeIz+S0ukEKFVvzMmouarDW8lXqDn0EddL0x4FSDJWtrlH4MXmHX3tIQezELttqz5+s='
2022-05-12 22:40:31,657 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,657 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,658 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,658 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,658 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,658 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,658 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,658 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK2P1RBW05XW6SM', 'x-amz-id-2': 'pBP7G3mwkElcBMBxLZEZaNH9silTqI6iMYmzr25j/bTwenGqXDcoWdLlQ35qqb3WFA/vkH1AA+g=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,658 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,659 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK2P1RBW05XW6SMpBP7G3mwkElcBMBxLZEZaNH9silTqI6iMYmzr25j/bTwenGqXDcoWdLlQ35qqb3WFA/vkH1AA+g='
2022-05-12 22:40:31,659 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,660 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,660 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,660 botocore.awsrequest DEBUG    Received a non 100 Continue response from the server, NOT sending request body.
2022-05-12 22:40:31,660 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,661 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 400 None
2022-05-12 22:40:31,661 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,661 urllib3.connectionpool DEBUG    https://plot-delineation.s3.amazonaws.com:443 "PUT /eopatches/30PTU_1_1/data_timeless/DISTANCE.npy HTTP/1.1" 400 None
2022-05-12 22:40:31,661 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,661 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,661 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AK0ZCKKK30VAQKN', 'x-amz-id-2': 'kgbS+Jp3AHWWQCu7nzEO+RsGSNntuwVvxyejCJCvz5yDQRPA0fa4tcMDphdimNcnEZJQKtPzvqk=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:31 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,661 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,661 botocore.parsers DEBUG    Response headers: {'x-amz-request-id': '3AKAT8B4JEDT0P92', 'x-amz-id-2': 'hoouFzp/w1cxJxKHhlhlvTAmFaz+E0DFkRNxRWREEWsCWXrfEAkLpu/mZSM5/EY7KdSpwNiIDxM=', 'Content-Type': 'application/xml', 'Transfer-Encoding': 'chunked', 'Date': 'Thu, 12 May 2022 22:40:30 GMT', 'Server': 'AmazonS3', 'Connection': 'close'}
2022-05-12 22:40:31,662 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,662 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AK0ZCKKK30VAQKNkgbS+Jp3AHWWQCu7nzEO+RsGSNntuwVvxyejCJCvz5yDQRPA0fa4tcMDphdimNcnEZJQKtPzvqk='
2022-05-12 22:40:31,662 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,662 botocore.parsers DEBUG    Response body:
b'\nAuthorizationHeaderMalformedThe authorization header is malformed; the region \'us-east-1\' is wrong; expecting \'eu-central-1\'eu-central-13AKAT8B4JEDT0P92hoouFzp/w1cxJxKHhlhlvTAmFaz+E0DFkRNxRWREEWsCWXrfEAkLpu/mZSM5/EY7KdSpwNiIDxM='
2022-05-12 22:40:31,662 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,664 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,665 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:31,665 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,665 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,665 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,665 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:31,665 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,666 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,666 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,666 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,666 botocore.utils DEBUG    S3 client configured for region us-east-1 but the bucket plot-delineation is in region eu-central-1; Please configure the proper region to avoid multiple unnecessary redirects and signing attempts.
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,666 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,666 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_1_1/mask_timeless/EXTENT.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,666 botocore.utils DEBUG    Updating URI from https://s3.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy to https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,666 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,667 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,667 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
4f2268ee620a1ebce4b3689330a9570cb0b18ed794ef732aefa7ab407571d20c
2022-05-12 22:40:31,667 botocore.endpoint DEBUG    Response received to retry, sleeping for 0 seconds
2022-05-12 22:40:31,667 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,667 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,667 botocore.auth DEBUG    Signature:
22035a6bddab8f9e8da7e6cf00889b045fff2103d2de3da4950f70ab50b23215
2022-05-12 22:40:31,667 botocore.awsrequest DEBUG    Rewinding stream: 
2022-05-12 22:40:31,667 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,667 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,667 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,667 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,667 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,667 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,667 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,668 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler >
2022-05-12 22:40:31,668 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy
2022-05-12 22:40:31,668 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,668 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,668 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,668 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,668 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,668 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,668 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler >
2022-05-12 22:40:31,668 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy

content-md5:Gn3X/ujRCFe7/HtYqtPmNg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,668 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,668 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,668 botocore.hooks DEBUG    Event choose-signer.s3.PutObject: calling handler 
2022-05-12 22:40:31,668 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
9ffbbae59d7c932b285c15658a5ff0b1ab86f6eae2239f721be33ea2ceccdeaf
2022-05-12 22:40:31,668 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,669 botocore.hooks DEBUG    Event before-sign.s3.PutObject: calling handler >
2022-05-12 22:40:31,669 botocore.auth DEBUG    Signature:
e6574b4d5a543aee9cda806fe822ed1393a079acfc027b835eba24bcb9a36cda
2022-05-12 22:40:31,669 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,669 botocore.utils DEBUG    Checking for DNS compatible bucket for: https://s3.eu-central-1.amazonaws.com/plot-delineation/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,669 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,669 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl
2022-05-12 22:40:31,669 botocore.utils DEBUG    URI updated to: https://plot-delineation.s3.eu-central-1.amazonaws.com/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy
2022-05-12 22:40:31,669 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,669 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,669 botocore.auth DEBUG    Calculating signature using v4 auth.
2022-05-12 22:40:31,669 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,669 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl

content-md5:B0sS5nt7r9iMdSqG874dtg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,669 botocore.auth DEBUG    CanonicalRequest:
PUT
/eopatches/30PTU_1_1/data_timeless/DISTANCE.npy

content-md5:S/Wz7xyo6r7KThbY4TUDPg==
content-type:binary/octet-stream
host:plot-delineation.s3.eu-central-1.amazonaws.com
x-amz-content-sha256:UNSIGNED-PAYLOAD
x-amz-date:20220512T224031Z

content-md5;content-type;host;x-amz-content-sha256;x-amz-date
UNSIGNED-PAYLOAD
2022-05-12 22:40:31,669 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,669 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
d4c8492b0ae173aa5010ac459d1d2ca1a3cab7e7bac8e9bb0043fb03baf3bcd1
2022-05-12 22:40:31,670 botocore.auth DEBUG    StringToSign:
AWS4-HMAC-SHA256
20220512T224031Z
20220512/eu-central-1/s3/aws4_request
6a0de2e5dce0395d90e8a707eab0a0c0fdeb143dc2c53a4fe70f527354f66871
2022-05-12 22:40:31,670 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,670 botocore.auth DEBUG    Signature:
fede1918e611b5119ca79c9931f7ed15b10b55717c78f706df8ff54e1a94f215
2022-05-12 22:40:31,670 botocore.auth DEBUG    Signature:
a621843695a55bbde8b8877a65f03a13a997cdee1f62576ccde1ca0628d6d3b0
2022-05-12 22:40:31,670 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,670 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,670 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,670 botocore.hooks DEBUG    Event request-created.s3.PutObject: calling handler 
2022-05-12 22:40:31,670 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,670 botocore.endpoint DEBUG    Sending http request: 
2022-05-12 22:40:31,670 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,670 botocore.httpsession DEBUG    Certificate path: /home/hubert/Desktop/Heuristics/RS/field-delineation-hub/venv/lib/python3.8/site-packages/certifi/cacert.pem
2022-05-12 22:40:31,671 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:31,671 urllib3.connectionpool DEBUG    Starting new HTTPS connection (1): plot-delineation.s3.eu-central-1.amazonaws.com:443
2022-05-12 22:40:34,541 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,569 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,569 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,569 botocore.awsrequest DEBUG    Waiting for 100 Continue response.
2022-05-12 22:40:34,633 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,655 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,662 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:34,668 botocore.awsrequest DEBUG    100 Continue response seen, now sending request body.
2022-05-12 22:40:35,912 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_1_1/vector_timeless/GSAA_ORIGINAL.pkl HTTP/1.1" 200 0
2022-05-12 22:40:35,912 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'MPt7a5ZhUIiBK+Fl2FDdpxgwAxU+PO5BaRW+zN/+iFIhhtpfE3wZVbea8SNHXfsUuYAbyXe6SO8=', 'x-amz-request-id': '7893C3N8W5KXAHQ2', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"074b12e67b7bafd88c752a86f3be1db6"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:40:35,912 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:40:35,913 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:40:35,913 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:40:35,913 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:40:35,913 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:40:35,914 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:11,080 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_1_1/mask_timeless/EXTENT.npy HTTP/1.1" 200 0
2022-05-12 22:41:11,080 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'a/6r3B4Ha0ocZ7+WWf3XiQO+nnQTV41Ho3WONoM0M1fGk3/10oMzNJvO4Q2FhglXnTLHKPydONY=', 'x-amz-request-id': '789787DRQS5AHKC2', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:11,081 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:11,081 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:11,081 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:11,081 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:11,081 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:11,082 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:12,099 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_1_1/mask_timeless/BOUNDARY.npy HTTP/1.1" 200 0
2022-05-12 22:41:12,099 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': 'z66i/NNpt+iNrN0CsVZ6LMzCWGdBQ40TUGk+7whNc8ODlXY6fs9k+qdsGqOu+WGG13To0+1KwgA=', 'x-amz-request-id': '789EG582YJPPT03N', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"1a7dd7fee8d10857bbfc7b58aad3e636"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:12,099 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:12,100 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:12,100 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:12,100 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:12,100 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:12,101 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:42,373 urllib3.connectionpool DEBUG    https://plot-delineation.s3.eu-central-1.amazonaws.com:443 "PUT /eopatches/30PTU_1_1/data_timeless/DISTANCE.npy HTTP/1.1" 200 0
2022-05-12 22:41:42,373 botocore.parsers DEBUG    Response headers: {'x-amz-id-2': '+VFPLmwVngijI5ZPF8DT5p19h38IxSfeggL+T+k5b7PPcoyVM/LZG9bmKMd8WcUBp2bfVzEWcW0=', 'x-amz-request-id': '7893R7V5NM7K32B8', 'Date': 'Thu, 12 May 2022 22:40:35 GMT', 'ETag': '"4bf5b3ef1ca8eabeca4e16d8e135033e"', 'Server': 'AmazonS3', 'Content-Length': '0'}
2022-05-12 22:41:42,373 botocore.parsers DEBUG    Response body:
b''
2022-05-12 22:41:42,374 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler 
2022-05-12 22:41:42,374 botocore.retryhandler DEBUG    No retry needed.
2022-05-12 22:41:42,374 botocore.hooks DEBUG    Event needs-retry.s3.PutObject: calling handler >
2022-05-12 22:41:42,374 botocore.utils DEBUG    S3 request was previously redirected, not redirecting.
2022-05-12 22:41:42,376 s3transfer.utils DEBUG    Releasing acquire 0/None
2022-05-12 22:41:42,390 eolearn.core.eoworkflow DEBUG    Removing intermediate result for SaveTask
2022-05-12 22:41:42,391 eolearn.core.eoworkflow DEBUG    Workflow finished with WorkflowResults(
  Dependency(SaveTask):
    EOPatch(
      data: {
        BANDS: numpy.ndarray(shape=(25, 1100, 1100, 4), dtype=uint16)
        CLP: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
      }
      mask: {
        CLM: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=int8)
        IS_DATA: numpy.ndarray(shape=(25, 1100, 1100, 1), dtype=uint8)
      }
      scalar: {}
      label: {}
      vector: {}
      data_timeless: {
        DISTANCE: numpy.ndarray(shape=(1100, 1100, 1), dtype=float32)
      }
      mask_timeless: {
        BOUNDARY: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
        EXTENT: numpy.ndarray(shape=(1100, 1100, 1), dtype=uint8)
      }
      scalar_timeless: {}
      label_timeless: {}
      vector_timeless: {
        GSAA_ORIGINAL: geopandas.GeoDataFrame(columns=['gid', 'id', 'gerk_pid', 'sifra_kmrs', 'area', 'rastlina', 'crop_lat_e', 'color', 'geometry'], length=0, crs=EPSG:32630)
      }
      meta_info: {}
      bbox: BBox(((209500.0, 1379500.0), (220500.0, 1390500.0)), crs=CRS('32630'))
      timestamp: [datetime.datetime(2021, 1, 2, 0, 0, tzinfo=tzlocal()), ...], length=25
    )
)
2022-05-12 22:41:42,392 root         DEBUG    EOWorkflow execution finished